Larry Shaffer 2016-04-15 Remove conversions.sip conditionals meant for 4.12 but actually 4.18 - The hex version of 4.12 was not 0x041200 (current 4.18) but 0x040c00. Code was always skipped and has worked with recent sip versions. (cherry-picked from commit fc6559aa053317cda8ced657c3013a0d4c6549e9) Juergen E. Fischer 2016-04-25 osgeo4w: add qt plugin directories to browser (cherry picked from commit b758a8c1b4fb5386ba5830092eb893d8f42ae033) Even Rouault 2016-04-08 Fix thread-unsafe initialization of QgsExpression::Functions() The method initializes the gmFunctions static member, without any mutex protection. This turned out to cause random crashes in the tests of the WFS provider since the downloader thread may evaluate an expression, in parallel of the main thread, which does the same. This was mainly seen on Mac Travis (2 crashes + 1 failures, over 50 iterations), when parallelizing tests so as to get particular scheduling : https://travis-ci.org/rouault/Quantum-GIS/builds/121720556. But I could finally reproduce it systematically on my Linux box when inserting the following sleep. diff --git a/src/providers/wfs/qgswfsshareddata.cpp b/src/providers/wfs/qgswfsshareddata.cpp index adc7042..e9e4577 100644 --- a/src/providers/wfs/qgswfsshareddata.cpp +++ b/src/providers/wfs/qgswfsshareddata.cpp @@ -426,6 +426,7 @@ int QgsWFSSharedData::registerToCache( QgsWFSFeatureIterator* iterator, QgsRecta connect( mDownloader, SIGNAL( ready() ), &loop, SLOT( quit() ) ); mDownloader->start(); loop.exec( QEventLoop::ExcludeUserInputEvents ); + usleep( 100 * 1000 ); } if ( mDownloadFinished ) return -1; After applying this commit, the Mac builder is fine: https://travis-ci.org/rouault/Quantum-GIS/builds/121756158 rldhont 2016-04-08 [BUGFIX] QGIS Server segfault when features does not have the same fields as the layer. In some WFS GetFeature request, with Filter or FeatureId, all the fields are not well loaded in the feature. To fix it, we just verifying that the attribute index is lesser than the feature fields count. Fixes #14619 Juergen E. Fischer 2016-04-06 don't crash when reply is destroyed while it's waiting for credentials to be entered (backports 10a26e6) Juergen E. Fischer 2016-03-31 globe plugin: fix crash on exit (cherry picked from commit bde512646caffc48f3158ec42b56016aeaae77fd) Juergen E. Fischer 2016-03-25 Release of 2.8.8 Even Rouault 2016-03-24 [Spatialite] Fix crash on iterator closing if connection failed. If an iterator fails to open the spatialite database (mHandle == nullptr in QgsSpatiaLiteFeatureIterator::QgsSpatiaLiteFeatureIterator() ), a crash will occur at the destruction of the QgsSpatiaLiteFeatureSource, due to the iterator not being removed from the list of active iterators. Currently QgsSpatiaLiteFeatureIterator::close() does not call iteratorClosed() if mHandle is invalid, which later causes QgsAbstractFeatureSource::~QgsAbstractFeatureSource() to try calling the close() method of a now defunct iterator. If not applying the patch, the added test case crashes with: 177: src/providers/spatialite/qgsspatialiteconnection.cpp: 736: (openDb) [1ms] New sqlite connection for /tmp/test.sqlite.corrupt 177: src/providers/spatialite/qgsspatialiteconnection.cpp: 750: (openDb) [1ms] Failure while connecting to: /tmp/test.sqlite.corrupt 177: 177: invalid metadata tables 177: src/core/qgsfeaturerequest.cpp: 259: (~QgsAbstractFeatureSource) [0ms] closing active iterator 177: CMake Error at PyQgsSpatialiteProvider.cmake:22 (MESSAGE): 177: Test failed: Segmentation fault (cherry picked from commit 2b15eaa14d9e5067ed32f41572d5e9658fa8b278) Even Rouault 2016-03-24 Use consistant default value of 60000ms for /qgis/networkAndProxy/networkTimeout Currently there's an inconsistancy between the Options dialog that displays a default value of 60000ms for network request timeouts, whereas places in the code use 20000ms. I propose to align on 60000s, since there are occurrences of network requests, for example big WFS GetFeature requests, that can take more than 20s to start. (testqgswcspublicservers.cpp update added) (cherry picked from commit 2f7d4a78) Even Rouault 2016-03-23 [Spatialite] Use correct free function for sqlite3_bind_blob of geometries Currently sqlite3_bind_blob() uses free() as the free function of WKB blobs returned by convertFromGeosWKB(). But those are allocated with new[] and should consequently be freed with delete[]. Spotted by Valgrind: ==4014== Mismatched free() / delete / delete [] ==4014== at 0x4C287BE: free (vg_replace_malloc.c:446) ==4014== by 0xE42E481: sqlite3VdbeMemReleaseExternal (sqlite3.c:57237) ==4014== by 0xE42E4E3: sqlite3VdbeMemRelease (sqlite3.c:57252) ==4014== by 0xE42EC3E: releaseMemArray (sqlite3.c:59208) ==4014== by 0xE42ED1E: sqlite3VdbeDeleteObject (sqlite3.c:60561) ==4014== by 0xE46A6DB: sqlite3VdbeFinalize (sqlite3.c:60528) ==4014== by 0xE46A916: sqlite3_finalize (sqlite3.c:61431) ==4014== by 0x7FB23958: QgsSpatiaLiteProvider::addFeatures(QList&) (qgsspatialiteprovider.cpp:3752) ==4014== Address 0x8e2a8b30 is 0 bytes inside a block of size 94 alloc'd ==4014== at 0x4C29520: operator new[](unsigned long) (vg_replace_malloc.c:363) ==4014== by 0x7FB1B964: QgsSpatiaLiteProvider::convertFromGeosWKB(unsigned char const*, int, unsigned char**, int*, int) (qgsspatialiteprovider.cpp:1341) ==4014== by 0x7FB234B5: QgsSpatiaLiteProvider::addFeatures(QList&) (qgsspatialiteprovider.cpp:3676) (cherry picked from commit 2e04162e377969e41675d1c2f7f36da7f171c945) Juergen E. Fischer 2016-03-19 crssync: skip more crses that cannot be copied (cherry picked from commit 71429be7a289e1b8050005dabcb3e0e33ac1cdbd) Juergen E. Fischer 2016-03-15 Add internal qwtpolar 1.1.1 for Qwt 6.1 (cherry picked from commit c3881d48b18e6dd8119abdd76cf76963b5f35481) Juergen E. Fischer 2016-03-08 globe: adapt to osgearth 2.7 (cherry picked from commit 342a754c399b785053dc766402486acd72e39be9) rldhont 2016-03-09 [BUGFIX][QGIS Server] To avoid infinite loop in layer creation Insert layer in registry and cache before addValueRelationLayersForLayer Juergen E. Fischer 2016-02-26 Release of 2.8.7 Juergen E. Fischer 2016-02-26 german translation update rldhont 2016-02-25 [BUGFIX][Processing] Reset SAGA InverseDistanceWeighted algorithm Reset 2 parameters : * SEARCH_POINTS_ALL * SEARCH_POINTS_MAX These parameters was defined in 2.1.2 but are available in the next version : http://www.saga-gis.org/saga_module_doc/2.1.3/grid_gridding_1.html rldhont 2016-02-24 [BUGFIX][QGIS Server] Add charset for application/vnd.ogc.gml GetFeatureInfo rldhont 2016-02-24 [BUGFIX] Extend WFS field type description (time) Continue commit 2ad32f1635d39fd90bdf0c10fc98f467f6b4f5d3 rldhont 2016-02-23 [BUGFIX] Extend field type description Nyall Dawson 2016-02-23 Use QgsFields::fieldNameIndex when preparing column refs in expressions Fixes handling of duplicate field names with different case in expressions (cherry-picked from 0a84fbd6b5bf2a67c5e8407bf86a14ec40a526bf) Nyall Dawson 2016-02-23 Remove unused help button from style manager (fix #14055) (cherry-picked from 17ed9d15fa00aeb305ef0dbee48896665d38b01c) Nyall Dawson 2016-02-23 Fix raster layers not rendering on Windows 8 The copy constructor for QgsContrastEnhancement was using an uninitialized value for the mContrastEnhancementAlgorithm member, resulting in no contrast function being set in certain occasions. Refs #13155 (cherry-picked from cc505424cec9d5cf2a01663371d44d0fbd4a636a) Nyall Dawson 2016-02-23 Fix categorised renderer does not store changes to the source symbol Avoids the frustrating situation where changes to a symbol in the categorised renderer are lost when the layer properties window is reopened Also fix a leak in the Python bindings (cherry-picked from 3744ac2fc4c65dd42fa78cfbc6f4df46a6d72722) Nyall Dawson 2016-02-23 Fix adding fields to mssql layers always resulted in error (fix #13340) (cherry-picked from d827076637ac14fea68472a0d943745345d20d0c) Nyall Dawson 2016-02-23 Fix dropping geometryless tables to postgres browser items (cherry-picked from 4a3d3db2d21862152c31a51a71ee4264ee77bb91) Nyall Dawson 2016-02-23 Fix dropping geometryless tables to spatialite browser items (cherry-picked from 89815646fb8f7e97a230d6eb35b9207d1659f5ab) Nyall Dawson 2016-02-23 Increase maximum size of diagram spinbox (fix #14282) (cherry-picked from 087e1489e3bdf2de96be4b0ba7286fb0168460ac) Nyall Dawson 2016-02-23 Correctly set parent for select by expression dialog in main window (cherry-picked from ac2cd476b15a7f02df7eece887c842a6b7c58d09) rldhont 2016-02-09 [BUGFIX][QGIS Server] WFS Service Capability OnlineResource WFS Service Capability OnlineResource is not the same as in WMS. Juergen E. Fischer 2015-03-09 fix arm build (cherry picked from commit 1aff7335d004bc410eb61e1436ee7648716f9319) Juergen E. Fischer 2016-01-21 merge debian downstream patches Michael Douchin 2016-01-19 [bugfix][DbManager] 14110 - Error fetching layer indexes with recent sqlite version Fixes #14110 The method `getTableIndexes`, situated in line 371 of the file `db_manager/db_plugins/spatialite/connector.py`, expected to get 3 fields from the sqlite method `PRAGMA index_list` . In recent versions of SQLite, since 3.8.9, though, this method now returns 5 fields. This commit fixes this issue by checking the length of columns returned by the method. Juergen E. Fischer 2016-01-15 Release of 2.8.6 Sebastian Dietrich 2015-12-30 read source from provider before saving memory layer (fixes #8997) (cherry picked from commit dbc0f072c638981db982011776d7b110215e80b7) Juergen E. Fischer 2015-03-18 edit widgets: keep default values of new feature's attributes until they are added (fixes #12391 & #12386 & #13857) (cherry picked from commit bfb8ab6893d5bf77b4ae92c6c90e0b5b9c7e9ae7) Bas Couwenberg 2015-12-23 Add dependency on openscenegraph-plugin-osgearth to qgis-plugin-globe. QGIS crashes when using the Globe plugin if this package is not installed, as reported in QGIS issue #9818 [0] and Debian Bug #808817 [1]. [0] https://hub.qgis.org/issues/9818 [1] https://bugs.debian.org/808817 (cherry picked from commit 076c2a09b707c2b1c59985d27ad79b0a2a580000) Bas Couwenberg 2015-05-27 Add qgis-dbg package to provide debug symbols. The debug package was requested in [Debian Bug #786985](https://bugs.debian.org/786985). (cherry picked from commit 44d6cc3786dccd1de125f5f0be821706ee1f0bb4) Juergen E. Fischer 2015-12-18 Release of 2.8.5 rldhont 2015-12-18 [BUGFIX] WFS GetCapabilities respons misses key Fixes #13037 WFS GetCapabilities respons misses key Replace KeywordList by Keywords in WFS Getcapabilities and keywords in WCS GetCapabilities. rldhont 2015-12-15 Dont set content-length header on streamed response. Fixes #13991 Thanks to @AsgerPetersen to help fixing #13991 closes #2582 Juergen E. Fischer 2015-12-14 debian packaging update (partly reverts 245659f; fixes #13981) (cherry picked from commit 24a61ff48d16309d4a43fe5e12d7e110984f2655) rldhont 2015-12-14 [BUGFIX][QGIS Server] Update Layer order from group in GetPrint Update commit da5e73ef4a4508c4b215dd726380a8a94bd73ada Juergen E. Fischer 2015-12-14 dxf export: trim whitespace from layernames (cherry picked from commit 36267f59350881e10e2eae0aa9f110019a5e8d8c) Juergen E. Fischer 2015-12-06 debian packaging update * sync other branches * avoid testing and installing twice * manually merge PR#2524 Juergen E. Fischer 2015-12-02 sip bindings: fix QgsFeatureIds typedef (fixes missing signal QgsVectorLayer.featuresDeleted and others; fixes #13740) (backported from commit b5794b2) Juergen E. Fischer 2015-11-29 legend interface: guard layer dereferences (fixes #13899) (cherry picked from commit 3b2d7173f66ee260021a262167f571eb7ff72788) Juergen E. Fischer 2015-11-27 Release of 2.8.4 Juergen E. Fischer 2015-11-26 release.pl: point releases don't need a new splash Juergen E. Fischer 2015-11-21 vector file writer: defer destroying spatial reference (fixes #10515) (cherry picked from commit cee63c84f7f85586ddcb5348e70a0af0b1bcdf5e) Juergen E. Fischer 2015-11-21 vector layer: update geometries first before feature id might change (fixes #8255) (backported from commit 24b6e63) Juergen E. Fischer 2015-10-07 oracle provider: fix call of sdo_filter to verify a spatial index is present (cherry picked from commit 684346a955dd4c79efcb6bfe519f6006c73c2aaa) Juergen E. Fischer 2015-10-11 attribute editing: don't allow editing without ChangeAttributeValues capability (cherry picked from commit 15af5a11701fc8f0b3723b2d45423c19b07e4df5) Juergen E. Fischer 2015-09-29 ogr provider: don't add mysql table filter multiple times (fixes #13446) (cherry picked from commit 32c5f551012a65a8705475266447b270dc2111ff) Juergen E. Fischer 2015-10-13 db manager: add credentials to postgis rasters (fixes #13594) (backports from commit 53c507d) Juergen E. Fischer 2015-10-18 heatmap plugin: fix labeling s/metre/layer units/ (fixes #11276) (backports from commit c373d7b) Juergen E. Fischer 2015-10-18 avoid on duplicate user functions (fixes #13579) (backports from commit cc9c789) Juergen E. Fischer 2015-10-11 case-sensitivity of vector layer field (fixes #13032) * fieldNameIndex: resort to case-insensitive lookup only if case-sensitive lookup has no match * file writer: fix handling of fields that only differ by case (backported from commit 8e2b791) Juergen E. Fischer 2015-11-21 fix rpad/lpad help (fixes #13433) rldhont 2015-11-26 [QGIS-Server] Enhance store project keyword list Nyall Dawson 2015-11-19 Fix fill ring tool creates more features than needed (fix #13354) (cherry-picked from 45a6f715b3b980ea4ad0dce7e35aace041caac6d) Nyall Dawson 2015-11-19 Fix overview canvas background color not set (fix #11157) (cherry-picked from f60ca59996544a29567cfa6a68f6dc2c1664f6dd) Nyall Dawson 2015-11-19 Fix merge attributes/features tool resets values to null for int fields Also add a warning if merged attribute value is not compatible with field type. Fix #12842 (cherry-picked from 099a40bdf2a59f87e28b9c6664c6b9da6fd927b4) Nyall Dawson 2015-11-19 Fix merge attributes tool sets skipped attributes to null (fix #13231) (cherry-picked from 0bda18b6e04105d52cfe6f54792de2f2e2b4a925) Nyall Dawson 2015-11-19 Fix storing string representations of doubles in an int field results in NULL rather than converting value to int (cherry-picked from 1c76b93d89e9edf3a3abb153402c541e66756add) Nyall Dawson 2015-11-19 Introduce qgsRound since std::round is available only in C++11 onwards (cherry-picked from 468012a282d8f96d0ad4f12cade2504a77cd75f9) Juergen E. Fischer 2015-11-19 fix build of distance area tests (followup 3667651) Juergen E. Fischer 2015-11-19 fix precise build (followup 3667651) Nyall Dawson 2015-11-18 Fix composer scale bar when crs units are non-meters and OTF is off (fix #13610) (cherry-picked from d56dcdb02fc65d8cd6fc2a5a92b0be4756aa8e2d) Nyall Dawson 2015-11-18 [composer] Fix scalebar widgets not updated when changing units (fix #13572) (cherry-picked from dc6c12b6c333fe31fd249c96fc64f87261da2716) Nyall Dawson 2015-11-18 Fix potential crash in vector gradient dialog info button Note that this doesn't seem to be actually utilised by any of the preinstalled gradients, but if users have created a gradient with info then clicking the button would have crashed QGIS. Identified by clazy. (cherry-picked from 84dade97f6633e404a26be79814700f589c3a761) Nyall Dawson 2015-11-18 set selection color from project file fix #3400 also remove duplicate setting of background color (it is set by ProjectProperties) (cherry-picked from 07db9848301daae5c07b3ee5a4130cf80a357f65) Nyall Dawson 2015-11-18 Also show features with modified geometry when "show edited and new features" filter is active in attribute dialog (fix #11684) (cherry-picked from e92e91060140e80c22a61406d640054fa4585a52) Nyall Dawson 2015-11-18 Add tooltips to advanced digitizing dock (cherry-picked from b4b70170685c029e52f78aace893144f5a777ab2) Nyall Dawson 2015-11-18 Fix ellipse symbol layer with graduated/categorised renderer (cherry-picked from 5a6bfbb260d4054fa5d075510423f7374ce1af78) Nyall Dawson 2015-11-18 Followup a721752, also fix svg marker fill cannot be used with categorised or graduated renderers (cherry-picked from f9231df1f11723c9cb1be746d9ed3ed322545589) Nyall Dawson 2015-11-18 Allow coloring of svg markers when used with graduated/categorised renderers (fix #11658) (cherry-picked from a721752ced4931b13c9b6a79db8f2be059cc9824) Nyall Dawson 2015-11-18 Fix crash if selecting a nonsense subrenderer for displacement renderer (cherry-picked from 6bfdafe3d36dbcd88343efd583e725f3b4643675) Nyall Dawson 2015-11-18 Fix fill and outline color for svg markers sometimes enabled when SVG file does not support parameters (Cherry-picked from 3aa6c4f0120bb5d9d5297d9d9f5503c38ff9a977) Nyall Dawson 2015-11-18 Fix snapping options dialog not correctly initialised when loading projects (cherry-picked from 0da930615947af1967262de4a7a9a400c6e3d69a) Nyall Dawson 2015-11-18 Fix symbols drawn multiple times in rule based renderer if symbol has multiple layers (cherry-picked from a0d7653b53e63da9751755096b7bb4445e7632a1) Nyall Dawson 2015-11-18 Fix fill ring tool used with advanced digitising crashes QGIS (fix #13355) (cherry-picked from aa4d65d3b8926b36f88205dbb0d192b12bc1d1ad) Nyall Dawson 2015-11-18 QgsMapUnitScale fixes: - add docs - add missing SIP bindings - remove unnecessary cast from double->float->double - add unit tests (cherry-picked from f0a2fc192524a8990f8d8c2190505ade91f037e8) Nyall Dawson 2015-11-18 Allow transparency for point displacement circle/label colors (cherry-picked from 8f0ed6155acb9e531bbc2a1e8fcf599d061227e1) Nyall Dawson 2015-11-18 Allow escape to cancel drawing new features (cherry-picked from e2dc8bfe148a70173deee258f36c0194e53fda63) Nyall Dawson 2015-11-18 [labelling] set full rule of qpainterpath for text/buffer rendering (cherry-picked from 2856981ebdf942fdeb7abf9fd8958dea946493d3) Nyall Dawson 2015-11-18 Add missing /Transfer/s to setSubSymbol (cherry-picked from dc0639c7944320ceeca40413d5dc2147f5c2d328) Giovanni Manghi 2015-11-12 fix SAGA 2.1.2 kriging Sandro Santilli 2015-11-12 [BUGFIX] Fix endpoint swap on negative marker line offset Fixes #13811 Includes testcase (cherr-picked from 824fd7bf32a45e278f2ec2fe9fa1c7228c9fb27f) rldhont 2015-11-12 Update [BUGFIX] 13118 QGIS Server - WFS - GeoJSON and escaping line breaks Enhance replace, thanks to @nyalldawson Enhance format, thanks to @jef-n fixes #13118 Juergen E. Fischer 2015-11-12 fix windows build (followup 2175e7a) (cherry picked from commit 6e1df491f64bff1b778502d7d53f37256afcd6f6) rldhont 2015-11-11 [BUGFIX] 13118 QGIS Server - WFS - GeoJSON and escaping line breaks Line breaks are not properly handled in GeoJSON results when making GetFeature requests. Line breaks should be replaced by \\n. rldhont 2015-11-10 [QGIS-Server] Use layer precision in searchRect Sandro Santilli 2015-11-06 Properly set invalid topology layer as invalid Fixes #13781 (crash) Juergen E. Fischer 2015-10-24 render polygons with outline using drawPath (fixes #13343) (cherry picked from commit 08185c9af47dcf113c0cb95faa858ec48e48dab2) rldhont 2015-10-26 [BUGFIX][QGIS Server] Laye order from group in GetPrint Since QGIS 2.8, QGIS Server rendered layers form group in reverted order. Conflicts: src/server/qgswmsconfigparser.cpp rldhont 2015-10-23 [BUGFIX] Set default units to mm in GetStyles The default units in QgsMapRenderer is Millimeters. The default units in SLD is Pixel but exportSld does not convert all millimeters in pixels. We notes this bug by comparing default QGS Server rendering and rendering with the SLD generated by QGIS. To resolve it, we just have to add units to the document element. rldhont 2015-10-23 [BUGFIX] Set default units to mm in exportSld The default units in QgsMapRenderer is Millimeters. The default units in SLD is Pixel but exportSld does not convert all millimeters in pixels. We notes this bug by comparing default QGS Server rendering and rendering with the SLD generated by QGIS. To resolve it, we just have to add units to the document element. rldhont 2015-10-22 [BUGFIX][QGIS Server] Clean Headers With https://github.com/3liz/qgis-wfsOutputExtension, I found that QGIS Server Headers are not always well formed. An extra line can be added at the end. In the commit a9c830e67b7fe0e7f66fc23b5a5a85b7b8ac5c61 from @mhugent, I found the fix. rldhont 2015-10-13 [BUGFIX][QGIS Server] Add layer coordinate transforms before setting destination CRS If the layer_coordinate_transform_info child of mapcanvas has not been well saved, the destinationCrs is not well applied and we get a blank image. To resolve this issue, we just have to add layer coordinate transforms to the map renderer before setting the destination CRS. rldhont 2015-10-06 [BUGFIX][QGIS-Server] Restricted layers and layer id as name are incompatible If the user checks 'used layer id as name' and specifies 'restricted layers', the restriction is not applied. To fix it, I add the layer ids to the restricted layers list. Juergen E. Fischer 2015-09-28 debian packageing update (grass6/7) rldhont 2015-09-22 Update b54d2790d4b74449bd8f28a6ca838e42f66f55a2 rldhont 2015-09-22 [Server][BUGFIX] Resolve relative pathes (SVGMArker, Netcdf, etc) QGIS-Server has some trouble to resolve relative pathes. For example, SVGMarker path and NETCDF datasource are not resolved in QGIS Server unlike in QGIS Desktop. To resolve relative path for SVGMarker, the class QgsSombolLayerV2Utils is used and it based on QgsProject::instance()->fileName(). To resolve relative path for NETCDF datasource and other GDAL datasources, the class QgsMapLayer is used and it based on QgsProject::instance()->readPath( filename ). To fix the issue, the QgsProject instance fileName is set in the QgsServerProjectParser constructor. Nyall Dawson 2015-09-16 Fix broken QgsFeatureStore::setFields method Was setting fields only on temporary copies of the features, not the stored features themselves (cherry-picked from 910cb01) Nyall Dawson 2015-09-16 [composer] Fix generation of world file when map is not on first page fix #13262 (cherry-picked from d897624) Nyall Dawson 2015-09-16 [composer] Fix world file filename for multipage compositions also fix #11676 (cherry-picked from c84b2df) Nyall Dawson 2015-09-16 [composer] Remember last used atlas image export folder (cherry-picked from 4bc606c) Salvatore Larosa 2015-09-15 fix filtered features number over the window title cherry-picked from 7065762 rldhont 2015-09-15 [SERVER][BUGFIX] Use cache if styleName is EMPTY_STYLE_NAME The QGIS Server layer cache is used to store layer with default style, but in QgsWMSProjectParser::mapLayerFromStyle layers are not cached if the style is not empty. In WMS, default and empty style is the same and the variable EMPTY_STYLE_NAME is here for this. The fix uses EMPTY_STYLE_NAME to use the cache. rldhont 2015-09-15 [SERVER][BUGFIX] Layer order from group If custom order is not enabled and a group is requested, layers was added in the DOM element order. The default endering order is the reverse. To fix this issue, QgsWMSProjectParser::addLayersFromGroup has to read group element children from end (bottom) to start (top). Juergen E. Fischer 2015-08-31 fix feature id handling when opening feature form from identify results (fixes #13289) (cherry picked from commit 5326c6bd1bd5aebf9975d751f840750a491641a7) Juergen E. Fischer 2015-03-04 postgres provider: disable editing of existing features when ctid is key (cherry picked from commit 2844005e805709bb39b95aef6a7e5a72777b8b0f) Juergen E. Fischer 2015-08-25 debian packaging update (grass7) Juergen E. Fischer 2015-08-23 fix typo Nyall Dawson 2015-08-16 If user clicks cancel while browsing for file then don't clear the existing filename in the vector open file dialog (cherry-picked from 1a91ae8fd11511a8c09fa193a3ce33e04edc7b30) Nyall Dawson 2015-08-16 Fix memory leaks in geometry expression functions (cherry-picked from cd7592df603cde1da5ef401b14cd6c7a14c9248c) Juergen E. Fischer 2015-08-07 vector layer: ignore non-existing fields in min/max/uniqueValues (fixes #13194) (cherry picked from commit 71e7aabbdec6cc5d542420948d897f7f7fda8303) Merge: a3c239f 1207e38 William Kyngesburye 2015-08-08 Merge branch 'release-2_8' of https://github.com/qgis/QGIS into release-2_8 William Kyngesburye 2015-08-08 find bundled GRASS on OS X Nyall Dawson 2015-08-05 Add missing color ramp methods and conversions to sip (cherry-picked from 56a48ed0d2927dbffcb868ebadc5d253c3a8e2c9) Nyall Dawson 2015-08-05 Fix invalid color could be returned by QgsRandomColorsV2 (cherry-picked from 3c45b2352a2a26931b6fcf3fe8100f978412d73d) Nyall Dawson 2015-08-04 Fix bad alloc when styling raster with random color ramp (fix #13112) (cherry-picked from 688ac1610e5b47fa3116875c463ba9fd2a026200) Nyall Dawson 2015-08-04 Fix random color ramps returning invalid QColors for value of 1.0 (cherry-picked from 1d2b4cb41aa81a7c11d351fa36d71f444cf7cc7c) Nyall Dawson 2015-08-04 Fix saturation range ignored for random color ramps (cherry-picked from 569040211618904cb1f4f2eda1019ef0f5c0e8f3) Nyall Dawson 2015-08-04 Fix incorrect values returned by certain color ramps (cherry-picked from 27ee8eea45f4b7db9631980c2218598ca7edab05) Martin Dobias 2015-07-31 Fix crashes when rendering with SVG symbols that are missing The crashes would happen after some time when browsing the map, especially when size of SVGs is in map units. This was due to wrong removal of deleted cache entries where cache entry key would be different from SVG file's path, thus not removing the entry that got deleted. Now explicitly keeping the lookup key in the entry to make sure this does not happen. Related issues: #9959, #8883 (cherry picked from commit febadfe21bb1eb5639d5a90d52f845415b31fb7b) Giovanni Manghi 2015-07-31 fix Processing QGIS vector grid as lines fixes #13115 (cherry-picked from 1dfec33) Juergen E. Fischer 2015-07-28 Release of 2.8.3 Nyall Dawson 2015-07-22 Fix 'nan'='nan' evaluates to false in expressions Also fix 'nan' and 'inf' being treated as doubles rather than strings. Nyall Dawson 2015-07-22 [labeling] Fix incorrect handling of word spacing for curved labels Juergen E. Fischer 2015-07-14 fix doxygen warning Juergen E. Fischer 2015-07-14 fix windows build (cherry picked from commit 5a9009118f4f695087de97856d325535faa3767e) Juergen E. Fischer 2015-07-13 german translation update Merge: b180dec 1edcf3c Salvatore Larosa 2015-07-13 Merge pull request #2112 from slarosa/release-2_8 Backporting to 2.8.3 Salvatore Larosa 2015-06-03 Fix #6099 - Save as... for raster: missing extension on Gnome3 (cherry-picked from 2125f6a) Juergen E. Fischer 2015-05-31 include user.py in translations Conflicts: python/core/qgspallabeling.sip (cherry-picked from 2ab8a0b) Salvatore Larosa 2015-06-17 [expression] autoselect first item in function list (cherry-picked from 395d630) Salvatore Larosa 2015-05-27 Fix for function editor: when running the script the entries "Fields and values" and "Recent" into the functions list of the expression builder disappear. (cherry-picked from 89477af) Salvatore Larosa 2015-05-27 [bookmark] use the same key for settings to store the last used directory: folloup 94f9ae2 (cherry-picked from 1cbbf59) Matthias Kuhn 2015-07-11 Add QgsAttributes::operator== that takes care of NULL variants Fixes an issue that the postgres provider would return multiple subsequent features whose attributes only differ only in 0 vs. NULL. Matthias Kuhn 2015-07-10 Add test to check if QgsFeature.setAttributes handles 0 vs NULL correctly Nyall Dawson 2015-07-11 Fix diagrams incorrectly enabled when opening project from >= 2.10 Nyall Dawson 2015-07-11 Fix zoom last needs two clicks to reset view for zoom tool (fix #13095) (cherry-picked from b50c603e47bb330b1ea69efaef4a747a8def5389) Nyall Dawson 2015-07-09 Fix infinite loop when painting grid with bad parameters Credit to @m-kuhn Cherry-picked from 4876c6572ca9b0930a1e1451e76728755e1b666a Nyall Dawson 2015-07-09 Call QgsComposer::restoreComposerMapStates in QgsComposer:changeEvent, not in showEvent (latter does not work reliably with some window managers, such as openbox) (fix #6085) Cherry-picked from cc9f2a6270b59143000e30f41db1f57e8d900534 Nyall Dawson 2015-07-09 [labels] Fix null data defined value was not ignored in some cases Cherry-picked from eb6279ac5a64f14208d07c305d64e28a354629bb Nyall Dawson 2015-07-09 Include NULL in expression builder available functions list Cherry-picked from 7b18f676628b59932df69fd5b98a4432ff0f3d69 Nyall Dawson 2015-07-09 [composer] Don't redraw map if layers change and map is set to cached Previously map was being redrawn every time a layer was added or removed from the registry, which blocked the ui until the map redraw is complete. Now the map will only be redrawn as a result of layer changes if it's set to Render mode. Possible fix for 12234 and 12125. (refs #12234, #12125) (cherry-picked from 837c7ee8d3ecacfce45ac0a299eb20c8a76f983b) Nyall Dawson 2015-07-09 Avoid hang on WMS legends with missing graphics (fix #12234) (Cherry-picked from 4f29c58e4357fad505c82459e97c17449bf4891b) Martin Dobias 2015-06-19 Fix SAGA detection on some Debian/Ubuntu systems (fixes #12335) (cherry picked from commit eaf17e56c2ff6c74eb43319096a177fc301d5a39) Martin Dobias 2015-06-18 Fix transparency for WMS layers (fixes #12300) (cherry picked from commit dbfbc692838e768b13c970c7d777829883b4b841) Martin Dobias 2015-06-18 Fix shifted joined attributes when join field is repeated (fixes #12589) (cherry picked from commit 78708159b28bcbfa94e53f8b93f91790fa43ec02) Martin Dobias 2015-06-18 Make QgsMapCanvas.snapToCurrentLayer() work again (fixes #12631) The snapper was called with screen coords instead of map coords (due to implicit conversion QPoint->QgsPoint) (cherry picked from commit e6466477136a440125108cbe2406cbf971ceff19) Martin Dobias 2015-06-18 Fix locking logic with X,Y locked and soft locks to angle (fixes #12940) (cherry picked from commit 646b445bf799daf4bc2a09b88bc6b6f2dc51d545) Martin Dobias 2015-06-18 Fixed fish and alcohol SVG files (fixes #12948) Both SVGs had an extra path out of specified bounds which was getting clipped out when rendering to canvas, but not in other places. (cherry picked from commit b81933ee56ff94a764bd3b9027dbfaa190ae2f35) Juergen E. Fischer 2015-06-11 fix build on precise (cherry picked from commit ffd2f26dd076256f6cf45dba7bf1c178098982b0) Sandro Santilli 2015-07-03 DBManager TopoViewer: zoom on topology if first load Fixes #13064 (backport of b9b6257eb7b6d475c4f9e0a5a540c9267aa87c95) Juergen E. Fischer 2015-07-02 fix reordering of render order (followup 78c60a2) (cherry picked from commit df4a41f7800083db5be4bb9ba152209f1e57f575) Juergen E. Fischer 2015-07-02 dxf export: * add missing marker types (fixes #13062) * add missing support for data-defined marker names (fixes #13063) (backported from b28c484) Sandro Santilli 2015-07-02 DBManager topoviewer: don't be fooled by srid=-1 in topology.topology Fixes #12802 Merge: 7bbb5b3 10d421e Werner Macho 2015-06-30 Merge pull request #2187 from minorua/ts_backports [2.8] japanese translation update Minoru Akagi 2015-07-01 japanese translation update Juergen E. Fischer 2015-06-30 german translation update Juergen E. Fischer 2015-06-29 wms provider: recover the possibility to configure the feature count in WMS requests (cherry picked from commit 1dfe005e67162bd1950397940de4f0008512f9c0) Juergen E. Fischer 2015-06-15 backported dxf fixes: * fix crash when not enabled layers are exported * fix handing of areas with holes when exporting SVGs * fix block, hatch and polyline ownership * fix support for data-defined properties in SVG export * remove drawRects and let it fallback to drawPath and drawPolygon * close arcs * replace writeSolid with writePolygon (backported b4fc413, 2798ab0, b3c2bd7 and 7031cfb) Juergen E. Fischer 2015-06-26 processing: fix installation of saga 2.1.3 descriptions (cherry picked from commit 2d87a706090349b4a0f03a0feeef6d2f8cd40e8d) Juergen E. Fischer 2015-06-24 add postgres layer: enforce selection of primary key for views (refs #11317) (cherry picked from commit a54c2d02cf580cbc90df2dbfe21bd160442528fc) Juergen E. Fischer 2015-06-24 handle ogr sublayers with colon (cherry picked from commit 2b703e3 & d875011) Juergen E. Fischer 2015-06-23 geometry validator: fix touching lines check (followup b9b9bc3, fixes #12730) (cherry picked from commit 3eef29ab1bd4cc007b7db5012dad23d9c39e2249) Juergen E. Fischer 2015-06-23 invalidate first crs on project load (fixes #13011) (cherry picked from commit fd4b38c55a368d7a04888d785fc873ca86528150) Juergen E. Fischer 2015-06-19 handle 64bit feature ids in selections (fixes #13001) (cherry picked from commit 1a6aee18f03614addbc0a104e38ec0c476890569) Juergen E. Fischer 2015-06-19 browser: add i18n (cherry picked from commit 35f383835cc2193b5ecd9d51c2454d2d3b00ec7e) Juergen E. Fischer 2015-06-19 oracle provider: fix ExactIntersect check if spatial extension is available and there is no spatial index (fixes #13005) (cherry-picked from dfc2cf0 & 318137a) Juergen E. Fischer 2015-06-17 oracle provider: reassign feature id after inserting new features (fixes #12690) (cherry picked from commit d3df4edaedc9542830dba1a99ce1b20d2bdc5773) Juergen E. Fischer 2015-06-15 use class to temporary override locale to C (cherry picked from commit 0ecef35d247d6ca76cd7353349225f99a4feb7d1) Juergen E. Fischer 2015-06-09 ogr provider: increase width by one for decimal point if precision is given (fixes #11755, fixes #12985) (cherry picked from commit 2fcbc8b and 513cfad) Juergen E. Fischer 2015-06-14 save spatialite as: create integer column from qlonglong if it fits (fixes #12325; followup b736317) (cherry picked from commit 6e55fbe1495e5a3d2a1ba3181a71543e026edc1a) Juergen E. Fischer 2015-06-14 node tool: show rubberband when moving (fixes #12959) (cherry picked from commit c54013c4cd2931142a81c0e6ec72eef4c7ae3c93) Juergen E. Fischer 2015-06-14 postgres provider: fix feature count on delete (fixes #12957) (cherry picked from commit 37ed83905f3b81ecd778c5abb1703805ce34666b) Juergen E. Fischer 2015-06-13 fix some crash on invalid layers (cherry picked from commit 34488f8 & 8fbee12) Juergen E. Fischer 2015-06-11 fix renaming of db/http connections (fixes #10632) (cherry picked from commit 5bf316fec6ab3b727e7ed4c97cda2c6cfc52f623) Juergen E. Fischer 2015-06-11 attribute: also put selected item on top if sorting descending (fixes #12434) (cherry picked from commit d3c4da0b66f70efdf0b2fcff4075395686f72203) Juergen E. Fischer 2015-06-11 handle bad layers when custom layer order is set (fixes #12733) (cherry picked from commit 78c60a297c64f87b2c7fd15801a3c62d8af92cb0) Juergen E. Fischer 2015-06-11 vector file writer: support QVariant::UInt, ::ULongLong and ::Time (fixes #12841) (cherry picked from commit 8d0c28117641c6d9826bf31ce614994ffdb00287) Juergen E. Fischer 2015-06-11 edit widgets: don't truncate double ranges and also support them in sliders and dials (fixes #12421) (cherry picked from commit 91e44ea and c6996ac) Juergen E. Fischer 2015-06-09 layer context menu: disable CRS related menu entries from table layers (fixes #12654) (cherry picked from commit 3d193e3026922620d1461eaa41336b49a3dcca77) Juergen E. Fischer 2015-06-09 spatialite provider: load 64bit integers (fixes #12785) (cherry picked from commit b736317005c2417ffc037bbc3969a2b180c49dd7) Juergen E. Fischer 2015-06-09 gps information widget: * fix crash when satellite markers are remove (fixes #12393) * also fixes serial port detection on unix (cherry picked from commit 014f0703fef04c63cb1f46bca52562e85d28ce96) Juergen E. Fischer 2015-06-09 feature iterator: include attributes required by virtual fields first so that they trigger joins if necessary (fixes #11545) Juergen E. Fischer 2015-06-09 fix primary key search (fixes #11997) (cherry picked from commit 3646e35827da5b6e1e03a9375aa2845fb013bdaa) Juergen E. Fischer 2015-06-09 Move information about strict provider geometry type check on point shapefiles to OGR provider and make use of it when pasting & merging features (fixes #12488, refs #10672, refs #10747) TODO: check if other OGR drivers have similar restrictions. (cherry picked from commit 8289891b78953581f22e944565e0e1c9678a09c3) Juergen E. Fischer 2015-06-08 date edit widget: show date if null is allowed (cherry picked from commit 558f0b2808b6a0a4f90f967090acf62200c2f923) Juergen E. Fischer 2015-06-08 mssql provider: improve datetime support (fixes #12461) (cherry-picked from 018cdd25) Juergen E. Fischer 2015-06-08 vector layer: changing of attributes and geometry of new features doesn't require ChangeGeometry/ChangeAttributeValues capabilities (fixes #12909) (cherry-picked from 77bf10b) Juergen E. Fischer 2015-06-08 ows data items: population of children already runs in a thread - don't use subthreads for each provider (fixes #12507) (cherry picked from commit 402df0323e81b53c81d472b8376b6a0c8fb57eed) Juergen E. Fischer 2015-06-05 wmts: also accept extents in WGS84BoundingBox (fixes #12432) (cherry picked from commit 7aae459fa9db730df51ae51fc1c144794058eef7) Juergen E. Fischer 2015-06-04 fix crash attribute table crash when attributes are added/removed bypassing vector layer (fixes #12477) (cherry picked from commit 316210d62255729600edfe0ab8b3b43312725be5) Juergen E. Fischer 2015-06-04 also copy vector provider encoding when duplicating layers (fixes #11687) (cherry picked from commit c22ad17cee5b12f9f10764107d3b006ced88bec9) Juergen E. Fischer 2015-06-03 fix style selection when loading from database (fixes #12863) (cherry picked from commit d53d30d29023be261ca6cd9bce9cfaac60d6ef78) Juergen E. Fischer 2015-06-03 don't crash on geometryless wfs features (cherry picked from commit 6a019ada8aa9cd4286ac7a157383cc300b46d0fd) Juergen E. Fischer 2015-06-02 datum transformation selection: fix crash on 'hide deprecated' (fixes #12719) (cherry picked from commit 1bd3776392d59456ff1bf8159ad9f86e4153f68b) Juergen E. Fischer 2015-06-02 ogr provider: only reset feature id of added feature, if OGR assigned one (fixes #12648) (cherry picked from commit ae11a731ae406def333cc85dd2dcbc46429320d9) Juergen E. Fischer 2015-06-01 expression: validate places value of format_number (fixes #12796) (cherry picked from commit 518072e9b319fa15848237b2a42a472421a40627) Juergen E. Fischer 2015-06-01 gdal/ogr data items: reenable SetCrs capabilities (fixes #12505) (cherry picked from commit 78ecddb65d6b3aba6b8b6126b1d45f8129756b59) Salvatore Larosa 2015-05-30 [user expression] Fix crash and add a log message when the expression is not valid, fixes #12852 (cherry picked from commit f7401c9b272f12fd543c36fe8c2e3217dcede791) Juergen E. Fischer 2015-05-31 make initialization of connection pool thread save on MSVC (cherry picked from commit c550af2 and 1e96813) Juergen E. Fischer 2015-05-28 postgres connection pool: fix race when a connection is already acquired while pool is still being constructed (cherry picked from commit 1e9681313284537d40fdec9039e8da9b755d0a60) Juergen E. Fischer 2015-05-28 validate attribute index in editor widget calls (cherry picked from commit ecbe0e43f45a9a68f5724f826319f34d02459f4c) Nyall Dawson 2015-06-09 Fix bug causing raster blocks to be cleared when reprojecting If a QgsRasterBlock had no nodata value set, then reprojecting the raster using QgsRasterProjector would result in the entire block being set to nodata. Cherry-picked from 920f2ebe560bb3a5ec1a160e788ec1de6bb2b354 Nyall Dawson 2015-06-08 Add confirmation prompt before deleting PostGIS and Spatialite tables through the browser. Also add confirmation before dropping connections (fix #12853). Cherry-picked from aeda9554bac432c485c8694fd5c6185732ef01ce Nyall Dawson 2015-06-01 [labeling] Fix broken repeat distance in map units (fix #11937) Cherry-picked from 15ba0064088559124741a04ae4603048f6b8ccb6 Nyall Dawson 2015-05-30 Fix broken rendering of curved labels for scripts which use >1 char graphemes (fix #6883) Cherry-picked from 2dc5d95f00770c602497f633612a6dabb8be4962 Nyall Dawson 2015-05-30 Correctly emit composerRemoved signal after removing composer from print composers list, fixes composer manager showing invalid old compositions when loading new project (fix #12612) Cherry-picked from 3530e4c205b4cc3f426e16dde7636fb89e9b73d7 Nyall Dawson 2015-05-29 Fix memory leaks in QgsMapCanvasSnapper Cherry-picked from 8b6abacc9988df9e209fbd9405bd267f95bcca2f Nyall Dawson 2015-05-28 Fix zoom tool doesn't work from bottom right to top left (fix #12614) Cherry-picked from bfa9f1cf6a712709fd89dd23e314211cc13a240a Nyall Dawson 2015-05-28 Fix server crashes when .qgs file replaced (refs #12411) Cherry-picked from 232565db96da05d871ca49f0457921a908e7df5a Nyall Dawson 2015-05-28 Fix composer map frame/annotations not showing on OSX (refs #12747) Nyall Dawson 2015-05-23 Fix untranslatable strings (fix #11765) cherry-picked from df7e07bcf7889c79297eb5ff25ca6244ec71c82b Nyall Dawson 2015-05-20 Possible fix for slow loading projects when the project contains print compositions and there is network issues with connections to installed printers. (workaround QTBUG-3033) (refs #12234) cherry-picked from 06732f137357ff1f3c2a55a3253037d8df85596b Nyall Dawson 2015-05-20 Fix point displacement renderer not ignoring features with no symbol Previously, the renderer would incorrectly draw circles and displace features which were proximal to features with no symbols. This caused issues with the rule based renderer, were some features should not be drawn. cherry-picked from 81f4e4471f696215113bb67f91d114cecde029bd Nyall Dawson 2015-05-04 Fix legend text not customisable for QgsSimpleLegendNode items cherry-picked from 4a9a9361aa4a1750900b9772f978b088294598cd rldhont 2015-06-19 [BUGFIX][QGIS-Server] Add all layers for fixed legend in GetPrint If a legend is not linked to a map, it's a fixed legend and does not depend on layers parameter. This bugfix loads all layers needed by legend and update it. Hugo Mercier 2015-06-02 Wait for the current rendering to finish before touching the cache Nathan Woodrow 2015-06-19 Fix #12881 - Fix loading of QLR files with the same layers Using just date stamps wasn't fine enough Funded By TechnologyOne, Australia - Backported to 2.8.3 - Cherry-picked from a316290ada9e3141358d Nathan Woodrow 2015-06-19 Fix #12254 - Fix lookup of SRID for SQL Server layers Funded by TechnoglogyOne, Australia - Backported to 2.8.3 - Cherry-picked from 9c73a22af52f3eec3959f2ed0e6953a6443d875b Nathan Woodrow 2015-06-18 Fix #11971 - Fix display of MS SQL layers with z and m values Funded by TechnoglogyOne, Australia - Backported to 2.8.3 - Cherry-picked from 012f322d96969e8d8db3514bc85bad51246c7a0d Nathan Woodrow 2015-06-16 MSSQL: Show message if geometry_columns not found Funded by TechnologyOne, Australia - Backported to 2.8.3 - Cherry-picked from 9f0ea0c2fd33a97d7a078e26cda381e7daf70490 Larry Shaffer 2015-06-16 Update GetInfo dates in app and browser plists for Mac - Cherry-picked from 538969960bc8a8d43a2bd22158f8592d0dd2eadc - Backported to 2.8.3 Matthias Kuhn 2015-06-12 qgsDoubleToString: Don't remove trailing zeros when integer Fix #12947 cherry-picked from ac38b21380 Backported to 2.8.3 Juergen E. Fischer 2015-06-10 reenable tips for new minor releases (cherry picked from commit 765d1a98b5521724ccbfd3c25e7516794cad5ae0) Matthias Kuhn 2015-05-27 Fix developers map background loading Fix #12831 Backported to 2.8.3 Workaround for https://github.com/Leaflet/Leaflet/issues/2021 Matthias Kuhn 2015-06-05 Fix crash on startup when python support is not present Adds a safety check for mActionShowPythonDialog before accessing it Matthias Kuhn 2015-06-05 Use full height on attribute form with drag and drop layout Larry Shaffer 2015-06-04 Fix single band gray with alpha raster type not recognized (fix #4159) - Add band color interpretation for WCS provider (from GDAL provider) Backported to 2.8.3 Matthias Kuhn 2015-06-04 Don't crash when deleting last vertex Fix #12867 Backported to 2.8.3 Also preserves NULL rectangles in QgsRectangle::normalize() Matthias Kuhn 2015-06-02 Advanced digitizing: Create new MessageBarItem for every item shown The QgsMessageBar takes ownership Fix #12849 Juergen E. Fischer 2015-05-29 german translation update Matthias Kuhn 2015-05-26 Fix windows build (followup d7ca190) (cherry picked from commit 5f0d1b4bf1a6680603fe4f6f66e03aa279a14021) Juergen E. Fischer 2015-05-26 adopt 'new' spatialite initialization scheme via thin wrapper around sqlite3_open and sqlite3_close (fixes #12771) (cherry picked from commit 252aaab, 23ef9da, d4b72a2, c7cb963 and e255d6c) Juergen E. Fischer 2015-05-20 dxf export: fix circle marker (cherry picked from commit 9a32c282add6bc6ce295bc94499819de2987788e) volaya 2015-05-21 [processing] fixed ‘add script from file’ tool (cherry picked from commit 4d62566db702843f78154e76d0d3bc3e65c8556c) Juergen E. Fischer 2015-05-26 fix relative path support for gdal layers (fixes #12823) (merged 47cb75dd and e2e8c87) Juergen E. Fischer 2015-05-25 avoid warning about not created test difference image (cherry picked from commit d40d481bd33db7fb3277a145eb36dda2fee47d3c) Martin Dobias 2015-05-21 Avoid crash if no project file is selected and OK is clicked (cherry picked from commit 6318f67bfc62d9c124eae620aecb4987d758582b) Juergen E. Fischer 2015-05-09 grass: fix relative path support for working database and vector layers (fixes #12725) (cherry picked from commit e5dbd186d8f185174ac5fc8fd152e586aa9925f0) Juergen E. Fischer 2015-05-09 ogr provider: limit mysql driver to requested layer (cherry picked from commit 536135a3f4f453d9a93dc2e83a1c2c5278e3bfd3) Juergen E. Fischer 2015-05-11 dxf export: fix detection of closed polylines (backport of 74f10b9) Juergen E. Fischer 2015-05-10 postgres provider: cast result of a subquery in min/max/uniqueValue(s) (fixes #12630; followup bf56457 ff) (cherry picked from commit e509fc53ce5cfdb64b984177c5279a6cf7d8644c) Matthias Kuhn 2015-05-27 Fix crash if multiple multiline text edtit widgets for the same field are shown Fix #11813 Merge: 5d5229e fd817ec Giuseppe Sucameli 2015-05-27 Merge pull request #2000 from Gustry/fix-selected-query-backport [db_manager] backport 2.8.2 fix #12429 run only the selected query Matthias Kuhn 2015-05-26 Fixup ae242f5 In QGIS 2.8 QgsField is not yet implicitly shared... arnaud.morvan@camptocamp.com 2015-05-22 Update QgsFields nameToIndex hash on field removed Alexander Bruy 2015-05-20 show correct coordinates in status bar when projected CRS used and canvas units set to degrees (fix #12395) Tests for latitude wrapping included Nyall Dawson 2015-05-22 Correctly restore font and character for font marker widget rldhont 2015-05-22 [BUGFIX][SERVER][WFS] Remove extra line after header rldhont 2015-05-22 Revert "[BUGFIX] Remove extra line after header" This reverts commit a2e538e35474ec6affc4ab387b81b88f83c2986c. rldhont 2015-05-22 [BUGFIX] Remove extra line after header rldhont 2015-05-21 [BUGFIX] GetFeatureInfo STYLES and FILTER used together In GetFeatureInfo WMS Request, if STYLES and FILTER are used together, it's like FILTER is not applied. To fix it, we check in the QgsMapLayerRegistry if the layers associated to QUERY_LAYERS has already created. Martin Dobias 2015-05-21 Fix #12406 (measured area is wrong when computed on ellipsoid) Introduced in e568493 Nyall Dawson 2015-05-21 Fix multiple overlaps of curved labels (fix #12792) Alexander Bruy 2015-05-20 [processing] fix axis orientation in the Vector Scatterplot alg (fix #12705) Alexander Bruy 2015-05-20 [processing] fix Points along lines alg (fix #12768) Alexander Bruy 2015-05-20 [processing] fix Number of unique values in classes alg (fix #12731) Alexander Bruy 2015-05-20 [processing] fix Select by Attribute algorithm (fix #12289) Alexander Bruy 2015-05-20 [processing] fix handling of the HTML output from the GRASS7 algorithms (fix #12710) Conflicts: python/plugins/processing/algs/grass7/Grass7Algorithm.py Alexander Bruy 2015-05-20 [processing] add recent expressions to Fields Calculator algorithm (fix #12587) Alexander Bruy 2015-05-20 [processing] fix Convex Hull algorithm (fix #12643) Sandro Santilli 2015-05-19 Fix drag & drop for PG rasters in DB Manager (backport of 431dc14269bf24ce32001046d021b7f9312fc61c from master) Nyall Dawson 2015-05-19 Fix attributes from some symbols were not available for data defined symbology (line marker, line pattern) Sandro Santilli 2015-05-19 Fix typo in comment Nyall Dawson 2015-05-17 Truncate expression preview result in builder widget if too long Prevents window from resizing to extreme widths (fix #12433) Nyall Dawson 2015-05-19 [labeling] Fix setting a wrap character conflicts with newlines in label text (fix #12750) Matthias Kuhn 2015-05-13 Generate unique variable names for python init form Fix #12676 Fix #12711 Fix #12729 rldhont 2015-04-30 [BUGFIX] Relative path for GDAL subdataset For some raster layer, the datasource is not stored in the project as relative. It's the case for NETCDF, HDF4, HDF5, NITF and RADARSAT2 raster format. This patch keeps the datasource structure but updates the path part. It will be interesting to backport it to 2.8 branch. Nyall Dawson 2015-04-16 Fix calculation of zonal stats when source contains nodata or nan pixels (fix #11135) Nyall Dawson 2015-05-07 Fix missing map units in vector field widget Juergen E. Fischer 2015-05-09 Release of 2.8.2 Juergen E. Fischer 2015-05-06 postgres provider: ignore system columns (cherry picked from commit aa377a088a473c4490f25b846990de40756ad9c1) Juergen E. Fischer 2015-05-09 db manager: fix BaseError handing (fixes #12645; backport 102f6d3) Juergen E. Fischer 2015-05-06 handle projects path with apostrophe (fixes #12691) (cherry picked from commit b49b49232a598ac22b60be398e5d8e125b53a3d6) Juergen E. Fischer 2015-05-08 oracle provider: fix srid detection (fixes #12674) (cherry picked from commit 656af530c3fa9353e35a812f880350e01f37ebc0) Juergen E. Fischer 2015-04-26 osgeo4w: reflect packagename and version in nightly build (cherry-picked from 9c5cbd4, dec0ca5 and 51a7317) Juergen E. Fischer 2015-04-21 fix where clause when multiple features are filtered by ids (fixes #12616, followup d1e23a6) (cherry picked from commit 02f5c73ae2067c3a92a2254761a8e2db0a565eae) Juergen E. Fischer 2015-04-26 german translation update Juergen E. Fischer 2015-04-22 Properly handle non matching number of WMS styles and layers in WMS provider (inspired by PR #2001) (cherry picked from commit bcb95137f07134c62094fdc68cb998d9a56409ab) Sandro Santilli 2015-04-22 Fix quoting of xfb-run invocation Works For Me (Ubuntu 14.04.2) Juergen E. Fischer 2015-04-20 processing: fix interpretation of oracle layers (fixes #12590) Funded by norbit.de (cherry picked from commit f0daab9c7c188bd0361d7d11652830558231e1b6) Juergen E. Fischer 2015-04-17 remove unused button in categorized renderer ui (cherry picked from commit 812d5b11832c31a875048ceda6609814b194a5ee) Sandro Mani 2015-04-14 Fix primary key search (cherry picked from commit 265c253995ae755194df514a07ecaad35fd3ec57) Denis Rouzaud 2015-04-13 doxygen: add effects directory (cherry picked from commit d660acbfa365ac52164916b798c8c0167a1f655d) Juergen E. Fischer 2015-04-09 server: fix 'LayerDrawingOrder' (fixes #12484) cherry picked from de5a3f5 + 04324fd Juergen E. Fischer 2015-04-10 oracle spatial: use sdo_relate for exact intersect feature requests where oracle spatial is available (cherry picked from commit fa99a960844e8bc6c909c58961bf9a0df070d877) Juergen E. Fischer 2015-04-09 include pointer to message in connection error message (fixes #12526) (cherry picked from commit 10a51f672fa6b98174e9b94dd932dc08e5d77e71) Sandro Santilli 2015-04-24 Make QgsPointLocator discard geometries that cannot be projected Fix #12634 (crash snapping in measure tool) (cherry picked from commit 0480cabfc91353156c58285b5748ef1c83bbe5d7) Radim Blazek 2015-04-23 QgsMimeDataUtils::encode fix (escape also backslash) Etienne Trimaille 2015-04-21 fix selected query Juergen E. Fischer 2015-04-19 german translation update Paolo Cavallini 2015-04-17 Update ShapestoGrid.txt Better default for saga rasterization pcav 2015-04-16 Better default for COMPRESSTYPE in GDAL Paolo Cavallini 2015-04-16 Update Slope,Aspect,Curvature.txt Better defaults for slope and aspect in saga:processing Giovanni Manghi 2015-04-14 fix GRASS7 v.generalize Giovanni Manghi 2015-04-10 fix gdal_rasterize: remove duplicate options Alexander Bruy 2015-04-10 [processing] set CRS for output grid (fix #12518) Alexander Bruy 2015-04-10 [processing] display X and Y labels on the scatterplot (fix #12095) Alexander Bruy 2015-04-10 [processing] save last used models/scripts directory (fix #12536) Alexander Bruy 2015-04-10 [processing] fix typo in the algorithm name (fix #12227) pcav 2015-04-10 Better output names for SAGA models pcav 2015-04-10 Better naming for GDAL outputs (partial fix for http://hub.qgis.org/issues/12542) Conflicts: python/plugins/processing/algs/gdal/gdalcalc.py python/plugins/processing/algs/gdal/gdaltindex.py pcav 2015-04-10 Various fixes to Processing algs; fix for http://hub.qgis.org/issues/12537 Conflicts: python/plugins/processing/algs/gdal/ogr2ogrbuffer.py python/plugins/processing/algs/gdal/ogr2ogrdissolve.py pcav 2015-04-10 Better default for a Processing:SAGA module Paolo Cavallini 2015-04-09 Update ShapestoGrid.txt Better defaults for Shapes to grid Alexander Bruy 2015-04-09 remove duplicate condition Giovanni Manghi 2015-04-09 better option text Giovanni Manghi 2015-04-09 fix gdal rasterize when using an existing raster layer radosuav 2015-04-07 [Processing] Avoid consecutive quotes when calling OTB algorithms. Giovanni Manghi 2015-04-09 fix typo Giovanni Manghi 2015-04-09 fix saga interpolations modules Giovanni Manghi 2015-04-09 fix saga catchment area modules Giovanni Manghi 2015-04-09 fix saga shapes to grid Giovanni Manghi 2015-04-09 fix SAGA contour lines from grid Paolo Cavallini 2015-04-08 Update MultilevelB-SplineInterpolation(fromGrid).txt Partial fix for https://hub.qgis.org/issues/12519 Paolo Cavallini 2015-04-08 Update MultilevelB-SplineInterpolation.txt Partial fix for https://hub.qgis.org/issues/12519 Paolo Cavallini 2015-04-08 Update CatchmentArea(Parallel).txt Partial fix for https://hub.qgis.org/issues/12483 Paolo Cavallini 2015-04-08 Update CatchmentArea(FlowTracing).txt Paolo Cavallini 2015-04-08 Update CatchmentArea(Recursive).txt Nyall Dawson 2015-04-13 Fix incorrect calculation of priority for diagrams (fix #4692) Nyall Dawson 2015-04-13 Fix scale dependant rendering of diagrams (fix #10700) Nyall Dawson 2015-04-11 Fix setting min in raster histogram using mouse also zooms chart Nyall Dawson 2015-03-18 Avoid creating 3 identical label candidates in offset point mode ...should speed up label position calculation Anatoliy Golubev 2015-04-10 Fix QgsWmsDpiMode enum declaration (cherry picked from commit 1f58f3371f58e0d54fdcf8d1536d7dc741c984ff) Radim Blazek 2015-04-08 Partially reverted 5e1b5a43 because it breaks GRASS create new mapset Juergen E. Fischer 2015-04-07 postgres data items: don't set srid for geometryless layers (cherry picked from commit d6e22af94965a6601d93374e892edb2a9a5ebd6c) Anatoliy Golubev 2015-04-02 Fix QgsRubberBand visibility behavior (followup 37171dc0) Visibility behavior stays the same as in QGIS 2.6 Test included. Fix #12486 Contributed via https://github.com/qgis/QGIS/pull/1972 Juergen E. Fischer 2015-04-04 map canvas: update sip bindings (followup bef4059f) Juergen E. Fischer 2015-03-27 dxf export: * reinstate palette colors, but exclude black/white * fix hatch transparency * fix active (initial) v(iew)port (cherry-picked b6a4194 and 9961095) Juergen E. Fischer 2015-04-02 postgres provider: also apply filterWhereClause to feature iterators (fixes #12499 & #12500) (cherry picked from commit 97572244dc699c6d5480f736e38d9246496cef20) Juergen E. Fischer 2015-04-04 db manager: fix setting of contrast enhancement for spatialite rasters (fixes #12497) rldhont 2015-03-31 [BUGFIX] Update DatumTransformInfo on layerCrsChanged The QgsMapCanvas datumTransformInfo is not updated after a layerCrsChanged. This causes a bug in QGIS-Server which does not use the right srcAuthId. To update QgsMapCanvas datumTransformInfo, the user had to change the map canvas CRS or to disable/enable transform. This patch add a SLOT to the QgsMapLayer layerCrs Changed SIGNAL to update QgsMapCanvas datumTransformInfo. Sandro Santilli 2015-04-01 Fix QgsRubberBand refresh - Fixes invalid calculation of rubberband boundingRect - Scales icon and pen width with rubberband when computing rect - Recompute rubberband extent on zoom/pan Fix #12392 Includes testcase (backport of master commits d43d8bf 84d47c9 a844bfa) Radim Blazek 2015-04-01 [GRASS] mutex function called by browser item (fixes crash in simultaneous loading, e.g. state restore) Radim Blazek 2015-03-31 [GRASS] fix crash in browser when opening GRASS 6 mapset with GRASS 7 Radim Blazek 2015-03-12 GRASS 7.0.0 API change rldhont 2015-03-30 [BUGFIX] In WFS GetFeature joined fields not are not returned In the WFS GetFeature Request, the joined fields are not returned. It's due to the use of provider instead of layer to retrieve all fields. The correction is to use layer->pendingFields() and layer->pendingAllAttributesList() Chris Crook 2015-03-30 Backport of pull request #1932 Nyall Dawson 2015-03-28 Fix buffer size was incorrectly stored in x position data defined field for label properties dialog Sandro Mani 2015-03-03 Don't keep dangling pointers in QgisApp::mPrintComposers Nyall Dawson 2015-03-23 Standardise use of red minus icon (fix #12425) Juergen E. Fischer 2015-03-20 server: deduce service wms from request if not explictly given (SERVICE not mandatory for WMS GetMap / GetFeatureInfo) (cherry picked from commit 3552b83474682f3c2fc1515d4225b906a0cab74c) Juergen E. Fischer 2015-03-20 server: fix parsing of bbox numbers in scientific notation containing + (reverts 905561f, cherry picked and merged 6309dbd, 57046c5, 8c8a9e0) Juergen E. Fischer 2015-03-23 expressions: fix modulo 0 crashes (fixes #12431) (cherry picked from commit 9596f97db605421eabe6643a10f25db8a7747df9) Juergen E. Fischer 2015-03-23 update_ts.sh: include locations (cherry picked from commit 45fbb3f5a954d52779ba742087811ff4d9a91582) Juergen E. Fischer 2015-03-24 include qgslayerdefinition.sip in bindings (cherry picked from commit 80bbed1595d352c22a79cff5c87d62e740826b25) Juergen E. Fischer 2015-03-19 vector layer: connect missing edit buffer signals (cherry picked from commit 65378e6a108656fb33e919de59feabb10b8b6e19) Juergen E. Fischer 2015-03-24 dxf export: fix data defined outline color of simple markers (cherry picked from commit 7469d2bbf038d17a5801b42dcb6e388ca093fe17) Juergen E. Fischer 2015-03-20 dxf export: * switch to rgb colors only (fixes black/white issues) * fix drawing of polygon outlines * distiguish polygon outlines from filled polygons in paint engine (fixes #12368) (cherry picked from commit 25e4e4d3d687d5f32fc6ffe3fb4263448ea1d079) Chris Crook 2015-03-22 Backport of missing type definitions in delimited text provider Chris Crook 2015-03-22 Backport of dangling pointer bug Larry Shaffer 2015-03-19 Redo "server: stop processing after 'no REQUEST' exception (fixes #11543)" from 1d3f8a7 - Accidentally removed during merge conflict in 670719c? Larry Shaffer 2015-03-20 Set GDAL env vars for when gdal lib is bundled in app on Mac Larry Shaffer 2015-02-20 Update Mac bundling for qgis_server lib Nyall Dawson 2015-03-19 Fix shortcut keys in attribute table dialog (fix #12272) Juergen E. Fischer 2015-03-18 debian packaging: create LICENSE link (fixes #12400) (cherry picked from commit b8dc08f8ef4630880e2696e9948e308620bbe287) Matthias Kuhn 2015-03-18 Close attribute dialog when layer is removed Fix #12336 Matthias Kuhn 2015-03-18 Custom widgets: make sure config can loaded from the project Apparently sip cannot handle private virtual methods Juergen E. Fischer 2015-03-17 qoci spatial driver: cleanup session & connection when login failed Nyall Dawson 2015-03-18 Fix grid annotation distance not restored in dialog (fix #11991) Nyall Dawson 2015-03-17 Fix heatmap renderer not working for reprojected layers (fix #12362) Nyall Dawson 2015-03-16 Fix power validity test in raster calculator (fix #11278) Nyall Dawson 2015-03-16 Remember last used directory for raster save as dialog (fix #6950) Werner Macho 2015-03-16 adding french translators Nyall Dawson 2015-03-10 Add some GDAL provider unit tests... (...doing penance for my 2.8 sins) Nyall Dawson 2015-03-10 Followup 914ecc, also fix calculation of srcDataType Nyall Dawson 2015-03-06 Fix incorrect data type for GDAL layers with gain/offset (fix #11573) Test was incorrectly checking for both offset and gain, when it should have been testing for either. Marco Hugentobler 2015-03-05 Server: fix bug with multiple joins Juergen E. Fischer 2015-03-10 german translation update Juergen E. Fischer 2015-03-10 attribute table: ShowVisible behaviour mode * change 'show all' action text * add note to the window title * also ignore mode for geometryless tables (fixes #12318) (cherry picked from commit 2a5d59e872f91de16eed73aab218aed46a71ec58) Juergen E. Fischer 2015-03-10 postgres provider: also cast field expressions to text (fixes #12346) (cherry picked from commit 1acad42f48dcf7ce31512356c8dd609292f22899) Alexander Bruy 2015-03-04 [processing] fix handling of "Check for edge contamination" option in TauDEM algorithms (cherry-picked from fe24c8295606a1ddbc4e3d4bd1b80188584d0635) Alexander Bruy 2015-03-02 [processing] TauDEM provider overhaul - add new TauDEM 5.1.2/5.2 tools: Gage watershed, TWI and Select GT Threshold - implement support for multifile TauDEM version - allow to use single- and multifile versions simultaneously Work done for Faunalia (http://faunalia.eu) (cherry-picked from 427adf79bb975fd436e69d2120d1261081eb4687) Nyall Dawson 2015-03-10 Followup 5d15a07, also fix edit role Denis Rouzaud 2015-03-05 fix inline editing of scales in rule based renderer Werner Macho 2015-03-09 updated names of swedish translators as requested by language coordinator Signed-off-by: Werner Macho Juergen E. Fischer 2015-03-06 expression builder widget: save scripts in the same mode they are loaded (avoids adding empty lines on every save on windows) (cherry picked from commit 37a7831d2a1571616f10d20a476b71f1d539cc5d) Juergen E. Fischer 2015-03-05 german translation fix (fixes #12231) Juergen E. Fischer 2015-03-01 translation string fix Juergen E. Fischer 2015-03-05 osgeo4w: also remove nightly shortcuts (cherry picked from commit f40d547aecad8f71eb5ac7fdbf21a784926ab28c) Juergen E. Fischer 2015-03-05 osgeo4w: add '(Nightly)' to the nightly build shortcuts (cherry picked from commit c7f7f6f4847ebe96bb5d9728d12a95873f07a908) Alexander Bruy 2015-03-04 [processing] fix error in MultipleFileInput selector when user press Cancel button Juergen E. Fischer 2015-03-03 postgres provider: restore behaviour to keep 3d wkb (refs #9651, followup bd311c8) Sandro Santilli 2015-03-03 Only scan for dimension if it is not already known as needing force2d Also force 2d on 3d input Sandro Santilli 2015-03-03 Use ST_Force2D from PostGIS-2.1.0 up Sandro Santilli 2015-03-03 Add comment about possible pending bug in force2d need detection Giovanni Manghi 2015-03-03 fix SAGA 2.1.3 Kernel Density Estimation Juergen E. Fischer 2015-03-04 postgres provider: use min()/max() before casting (followup bf56457; fixes #12306) (cherry picked from commit 7ce195ebec7330f101bb6922055a079958bfd58a) Sandro Santilli 2015-03-03 Detect number of dimensions for tables with unconstrained type Fixes #9748 (cherry picked from commit f512e87ffd0ed7297520bf63830c1fc5c37d7ee9) Nyall Dawson 2015-02-27 Fix handling of warped VRT (refs #12264) Loading of rasters requiring warped VRTs was broken, but the heatmap plugin is still creating incorrect outputs which needs to be fixed. Juergen E. Fischer 2015-02-27 composer attribute table: fix changing header font (fixes #12233) (cherry picked from commit ec0ab3f7ce4c7b009cff9abaf9d9277cb62437de) Tom Kralidis 2015-02-26 backport ada01603cb7b10786436aa0ed2361743b52ce48f Alexander Bruy 2015-02-26 [processing] correctly handle tiny polygons smaller than raster cell size in Hypsometric curves algorithm (fix #12278) Juergen E. Fischer 2015-02-26 Release of 2.8.1 Juergen E. Fischer 2015-02-26 fix measurement dialog translation (fixes #12262) Matthias Kuhn 2015-02-25 Fix a const... Bas Couwenberg 2015-02-25 Add dependency on libqgis-server to libqgis-dev. Juergen E. Fischer 2015-02-25 use PyQt4 where deprecated pyqtconfig is unavailable (fixes #10596 and fixes #11465) Juergen E. Fischer 2015-02-25 debian packaging fix (fixes #11465) Nyall Dawson 2015-02-25 Make new scratch layer editable by default Nyall Dawson 2015-02-25 Suppress attribute form popup if layer has no fields Prevents empty form popup for layers with no fields (eg memory layers). If desired, this behaviour can be overriden by the layer's feature form suppress option, eg if form has python logic which makes it useful even with no fields. (fix #10775) Salvatore Larosa 2015-02-25 [bookmark] use preset values instead of header name for tags when exporting in xml file Salvatore Larosa 2015-02-24 [bookmark] remember last used directory on import/export Salvatore Larosa 2015-02-24 [bookmark] write correctly the extent in tbl_bookmarks Juergen E. Fischer 2015-02-25 debian packaging updates Juergen E. Fischer 2015-02-25 documentation updates Nyall Dawson 2015-02-25 Fix zoom out map tool (fix #12242) Bas Couwenberg 2015-02-23 Merged and squashed pull requests #1923 & #1928 from sebastic/debian PR#1923: Debian packaging improvements * Update copyright file. - Remove unused Files paragraph for the python plugin_installer - Fix qwtpolar-1.0 typo - Remove unused License paragraph for Apache-2.0 - Add License paragraph for Zlib * Remove unused substitution variable. * Update watch file, add version mangle. * Add upstream metadata. * Fix libqgis-customwidgets package name in dh_makeshlibs override, doesn't contain ABI anymore. * Also install scalable icons. PR#1928 Additional Debian packaging improvements * Update copyright file. - Add additional copyright holders to general files section - Add copyright years to general files section - Order copyright holder by year - Group files sections - Sort groups files sections alphanumerically - Document copyright holders & licenses for external modules - Add license specifications for: Apache-2.0, BSD-2-Clause, dxflib-Commercial-License, GPL-2, LGPL-2.1+, QT-Commericial, LGPL-2.1 with Digia Qt LGPL Exception 1.1 & GPL-3. * Remove extra license file for MetaSearch plugin. * Install libqgis_server.so in libqgis-dev. * Install schemaExtension.xsd in qgis-server. * Install contributors.json & developersmap.html in qgis-common. Juergen E. Fischer 2015-02-24 fix crash on exit Juergen E. Fischer 2015-02-24 update QgsAttributeDialog sip bindings (fixes #12248) Alexander Bruy 2015-02-24 [processing] fix inputs in Select by Location algorithm (backport 8d87f35304) Juergen E. Fischer 2015-02-24 fix build and remove debug output (followup 251aca6) Juergen E. Fischer 2015-02-24 fix wmts (fixes #12241; followup 1e97b62c) Juergen E. Fischer 2015-02-23 raster calculator fixes (fixes #12238) * GDALGetGeoTransform failures can be ignored (partly reverts 0080f9e) * handle quoted raster references * don't complain if the output file is not yet set Juergen E. Fischer 2015-02-23 german translation update Tom Kralidis 2015-02-23 backport e04570cc89d30f38430a5e71cfb795971c40afe0 Tom Kralidis 2015-02-23 remove '/' from UNEP GRID CSW to prevent incorrect setting in Windows Registry on init Juergen E. Fischer 2015-02-22 attribute form: lookup attribute fields by name. joined layers might be unavailable at load time (fixes #12146) Salvatore Larosa 2015-02-22 increases slightly the zoom of the developers map in about box Merge: 01066b6 bbae71e Tim Sutton 2015-02-22 Merge pull request #1920 from timlinux/release-2_8 Backported developer about box photo update to 2.8 Juergen E. Fischer 2015-02-22 release.pl: support point releases Juergen E. Fischer 2015-02-22 debian packaging fix (launchpad builds i386 with binary and amd64 with binary-arch only) Juergen E. Fischer 2015-02-22 don't set parent of QFontDialog to avoid the stylesheet font (fixes #12233) Tim Sutton 2015-02-21 Merge pull request #1919 from timlinux/master Updated developer image for about box Juergen E. Fischer 2015-02-20 oracle provider: consider srid when looking trying spatial index (followup 991f94d; fixes #12230) Werner Macho 2015-02-21 adding french translators and first fixes for chinese Signed-off-by: Werner Macho Juergen E. Fischer 2015-02-20 osgeo4w: fix python server module packaging Juergen E. Fischer 2015-02-20 include missing zh-Hans translation Juergen E. Fischer 2015-02-20 Release of 2.8 (Wien) Juergen E. Fischer 2015-02-20 changelog update for 2.8 Juergen E. Fischer 2015-02-20 translation update to 2.8 from transifex Juergen E. Fischer 2015-02-20 fix syntax error (followup 7ffdef2) Merge: 10d2ce4 8fe1fa8 Tim Sutton 2015-02-20 Merge pull request #1917 from timlinux/master Small tweaks and improvements to the changelog in news Tim Sutton 2015-02-20 Small tweaks and improvements to the changelog in news Sandro Santilli 2015-02-19 Add tests for rotated map Thanks Nyall for initial template. Include tests for raster layers, SVG and simple markers with data-defined or fixed rotation, parallel line labels. Merge: 34a6a36 494c36a mhugent 2015-02-20 Merge pull request #1860 from marcel-dancak/getfeatureinfo-bbox-fix Mapserver: using bbox filter on features in GetFeatureInfo only when BBOX parameter is given Merge: c69f153 e1508c1 Tim Sutton 2015-02-20 Merge pull request #1861 from timlinux/master This PR will allow FindQGIS.cmake to find QGIS libs/includes in QGIS_PREFIX_PATH too Martin Dobias 2015-02-20 Fix #11589 - diagrams with OTF reprojection Martin Dobias 2015-02-20 Fix #12193 - problem with update of SQL query in DB manager In the scenario described in the bug report, the selected text was empty, but editor's hasSelectedText() would still return True Juergen E. Fischer 2015-02-20 add translations update and changelog update to bin/release.pl Martin Dobias 2015-02-20 Fix #12197 - cannot delete old visibility preset When a preset gets applied, we try to fix it by removing irelevant stuff (e.g. legend items that do not exist anymore, styles that do not exist). This is however slightly complicated and leaves room for problems. Let's simply fix the presets by assigning them the current state after being applied - and get rid of all the patching... Martin Dobias 2015-02-20 Fix #11951 - support for output directory in batch processing Martin Dobias 2015-02-20 Fixed Split vector layer algorithm Previously it would leave all output files except for the first one empty Juergen E. Fischer 2015-02-20 Some documentation updates preceeding the release Tim Sutton 2015-02-19 Use cmake variable rather than env var for QGIS Cmake Find rules when using a custom QGIS prefix. Tim Sutton 2015-01-23 Added support for finding QGIS in QGIS_PREFIX_PATH when using FindQGIS.cmake Juergen E. Fischer 2015-02-19 avoid repeating the array dimension (followup e6f91ca) Juergen E. Fischer 2015-02-19 restore initial page (followup 74d0846) Martin Dobias 2015-02-19 Fix entry in AUTHORS (space instead of tabs) Martin Dobias 2015-02-19 Added Ivan Mincik and Marcel Dancak also to the other list of contributors Merge: 9e83ed8 13d77f4 Martin Dobias 2015-02-19 Merge pull request #1914 from imincik/contributors Adding 'Marcel Dancak' and 'Ivan Mincik' to contributors Ivan Mincik 2015-02-19 Adding 'Marcel Dancak' and 'Ivan Mincik' to contributors Juergen E. Fischer 2015-02-19 server: also load value related layers for cached layers Radim Blazek 2015-02-19 Browser favourites restore state fix Radim Blazek 2015-02-19 Browser GRASS multilayer map fix Sandro Santilli 2015-02-19 Correctly remove duplicated check Martin Dobias 2015-02-19 Added myself to the map Sandro Santilli 2015-02-19 Handle save and load error for rendered image Sandro Santilli 2015-02-19 Revert "Remove duplicated check" This reverts commit 9a4cecc5f7e8329f1a09e3b9eeccbd764bb33f40. The check was not duplicated, I just misread it (Oops, sorry) Sandro Santilli 2015-02-19 Remove duplicated check Sandro Santilli 2015-02-19 Give a better error message when expected image is missing Avoids the confusing "pre-set DPI not equal to painter's DPI" message Martin Dobias 2015-02-19 Fix rule-based renderer's descendants() method. This was causing unexpected changes to rule keys on 3rd level and deeper Larry Shaffer 2015-02-19 Followup to ea00b36; only replace Q_WS_X11 with Q_OS_UNIX for non-Mac - QgsMapToolOffsetCurve fix not needed, works OK on Mac Martin Dobias 2015-02-19 Fix #12088 - selection tool - do not consider invisible features This avoids dangerous situations where the user inadvertently selects features that are not rendered and does further actions (like to delete them) Nyall Dawson 2015-02-19 Add some more test mask images Also some debugging info for tests failing on certain platforms. Nyall Dawson 2015-02-19 Update tab order in dialogs Nyall Dawson 2015-02-19 Remove use of deprecated register keyword Nyall Dawson 2015-02-19 Fix include in coding docs Nyall Dawson 2015-02-18 Allow use of masks for unit test control images Masks set which pixels in the control image should be tested and an optional tolerance for each pixel. This is done via the colors in the mask image - white pixels are ignored, black must be an exact match, and gray levels represent the maximum color component deviation for that pixel. This should replace the fragile anomaly images, in that a single control image with a suitable mask will not be susceptible to antialiasing differences, etc. A new script (scripts/generate_test_mask_image.py) is included which either creates a new mask or modifies an existing mask to handle an acceptable rendered image. Ultimately, masking along with multi render checks for specific platform differences should be flexible enough to meet our needs. Juergen E. Fischer 2015-02-18 postgres provider: also use fieldExpression used to retrieve values in minimumValue/maximumValue/uniqueValues Juergen E. Fischer 2015-02-18 server: keep NULL values on featureinfo Larry Shaffer 2015-02-18 Add C++11 -Wno-deprecated-register only to clang versions with support Juergen E. Fischer 2015-02-18 defer readMapLayer signal for layers with joins to let editor widgets pickup joined fields Nyall Dawson 2015-02-18 Add comments for every intentional case fall-through Improves code maintainability/readability Nyall Dawson 2015-02-18 Fix warning Juergen E. Fischer 2015-02-18 coverity fixes Juergen E. Fischer 2015-02-18 identation update Merge: b6dd1e4 b1bc3cd Jürgen Fischer 2015-02-18 Merge pull request #1909 from nirvn/memorylayer_uid_fix [memory layer] improve data source uid to be unique across different sessions Juergen E. Fischer 2015-02-18 fix string truncation with spatialite and memory layers (followup 065d190d) Martin Dobias 2015-02-18 Fix #12139 - added features saved in reversed order Nyall Dawson 2015-02-18 Avoid some unnecessary dynamic_casts in QgsProject ...fixes Coverity warning Nyall Dawson 2015-02-18 Fix unchecked return values Nyall Dawson 2015-02-18 Avoid some mixing enum types warnings Nyall Dawson 2015-02-18 Avoid null dereference Nyall Dawson 2015-02-18 Fix some uncaught transform exceptions Nyall Dawson 2015-02-18 Fix wfs features not adding to spatial index Nyall Dawson 2015-02-18 Add some missing /TransferThis/ to sip bindings for QObject parents Martin Dobias 2015-02-18 Fix #11785 - WFS failed to determine geometry column nirvn 2015-02-18 [memory layer] improve data source uid to be unique across different sessions Sandro Mani 2015-02-17 Consistently set parent on composer child dialogs Sandro Mani 2015-02-16 Also handle WhiteToBlack case in QgsSingleBandGrayRenderer::legendSymbologyItems Salvatore Larosa 2015-02-17 [pyqgis-console] fix missing import in compile apis script Salvatore Larosa 2015-02-17 [pyqgis-console] prepared api file update Juergen E. Fischer 2015-02-17 fix freebsd build (fixes #12105) Juergen E. Fischer 2015-02-17 identify results: consider plain/text wms response and gml attributes as utf-8 Juergen E. Fischer 2015-02-17 processing: add uuid parameter to memory: outputs (followup f64730e) Nyall Dawson 2015-02-18 Sync mersenne-twister with upstream Includes fixes for out-of-bounds read and incorrect generation of numbers Juergen E. Fischer 2015-02-17 processing: fix unused variable error Merge: da0822c e62a7fa alexbruy 2015-02-17 Merge pull request #1904 from gioman/fix_ogr2ogr_clip [processing] ogr clip by polygon: clip polygon layer name must be declared to avoid issues with postgis and spatialite layers Juergen E. Fischer 2015-02-17 server: add charset utf-8 to content type of responses in text/ format Juergen E. Fischer 2015-02-17 server: also load layers referenced in value relations (followup ceceebdf9) Martin Dobias 2015-02-17 Fix #12151 - fix cached composer map image when zoomed in a lot The map was being rendered with wrong parameters when width or height exceeded 5000 pixels. Merge: f64730e 3bb448a Matthias Kuhn 2015-02-17 Merge pull request #1893 from rutsky/patch-2 add missing dot at the end of sentence Juergen E. Fischer 2015-02-17 workaround to create unique memory layer data sources (fixes #12206) Martin Dobias 2015-02-17 Fix #11965 - improve performance of selectedFeatures() The slowness of merge / split features tools was caused by the change in the logic in selectedFeatures(): instead of fetching individual features one by one by ID, the whole layer is traversed. Such approach makes sense when many features are selected, but with few features there is considerable delay when dealing with big layers. The implementation is not ideal, but for some common cases the performance is much better. Merging of features now does not request selected features when not necessary. When rendering, avoid using layer's extent() method that may force expensive calculation of layer's extent. Martin Dobias 2015-02-17 Fix #12050 - possible crash on launch Do not allow infinite recursion setExtent() -> setCenter() -> setExtent() Martin Dobias 2015-02-17 Fix #12215 - missing icons in fTools and GdalTools Nyall Dawson 2015-02-17 Avoid large parameter passed by value Nyall Dawson 2015-02-17 Avoid uninitialized member in legend renderer Nyall Dawson 2015-02-17 Hide logically dead code Juergen E. Fischer 2015-02-16 server getfeatureinfo: delegate value representation to editor widgets (fixes #12210) Juergen E. Fischer 2015-02-16 dxf export: fix encoding for japanese (take II; followup ce0fd7a) Merge: b3bd32f 1144f3e Matthias Kuhn 2015-02-16 Merge pull request #1901 from m-kuhn/fixrendering Fix rendering position in incremental rendering Juergen E. Fischer 2015-02-16 server getfeatureinfo: restore quoting in plain/text format Matthias Kuhn 2015-02-16 Fix rendering position in incremental rendering Nyall Dawson 2015-02-16 Fix misuse of enum in qwt_polar_plot Juergen E. Fischer 2015-02-16 dxf export: fix encoding for japanese Nyall Dawson 2015-02-16 Grass plugin/provider fixes for Coverity Nyall Dawson 2015-02-16 Fix uninitialized members Nyall Dawson 2015-02-16 Some very minor Coverity related fixes Nyall Dawson 2015-02-16 Coverity fixes: uninitialised members Nyall Dawson 2015-02-16 Fix memory leaks Nyall Dawson 2015-02-16 Fix null dereference errors Nyall Dawson 2015-02-16 Avoid string overflow Nyall Dawson 2015-02-16 Rename variable to make intention clearer Nyall Dawson 2015-02-16 Coverity fixes - unreachable code Nyall Dawson 2015-02-16 Fix big parameter passed by value warnings Juergen E. Fischer 2015-02-16 remove unused message log viewer flag (follows up followup followup 957f1ac) Juergen E. Fischer 2015-02-15 dxf export: doxyment more methods Juergen E. Fischer 2015-02-15 dxf export: make encoding configurable (fixes #11578) Matthias Kuhn 2015-02-15 Followup followup ff788db The code was moved. This was just a leftover. Matthias Kuhn 2015-02-15 Followup ff788db Commit ff788db unintentionally inverted the meaning of the ifdef check Juergen E. Fischer 2015-02-15 snapping dialog: block signals when reloading snapping options QgsProject: also apply default when property is not available and not only if an existing one is invalid fixes #12192 Nyall Dawson 2015-02-15 [raster] Fix unintentional int overflow Juergen E. Fischer 2015-02-14 fix QgsProject::clearProperties() doxymentation Juergen E. Fischer 2015-02-14 restore option to open the attribute table with only currently visible features to improve performance (actually to make it usable with large tables again). When used as initial setting in options the open attribute table will have a fixed spatial filter to the canvas extent when it was opened. That extent is also highlighted to indicate the filter. fixes #10619 Merge: f69e0bb 221ba9c Jürgen Fischer 2015-02-14 Merge pull request #1900 from mhugo/fix_spatialite2 [spatialite] Bug fixes Nyall Dawson 2015-02-14 Minor Coverity fixes (null dereference, uninitialised members) Nyall Dawson 2015-02-14 Coverity fixes - unchecked return value Nyall Dawson 2015-02-14 Fix memory leak in PAL labelling engine Juergen E. Fischer 2015-02-13 fix processing plugin main translation and add translations for toplevel toolbox entries (fixes #12168) Juergen E. Fischer 2015-02-13 attribute table filter: consider LongLong numeric too Juergen E. Fischer 2015-02-13 qgis server fixes: * support edit types based on edit widgets (adds qgis_gui dependency; fixes #12091) * show null values (fixes #12114) * only quote non-numeric non-null values in feature info * fix crash on exit * remove obsolete parser method and debug output Hugo Mercier 2015-02-13 [spatialite] Fix geometry column name case sensitivity Juergen E. Fischer 2015-02-13 fix field calculator when update are allowed and add attribute is not (fixes #11932) Juergen E. Fischer 2015-02-12 improve field conversions (fixes #12004) Juergen E. Fischer 2015-02-12 fix runtime warning Juergen E. Fischer 2015-02-12 fix doxymentation warnings Juergen E. Fischer 2015-02-12 processing: verify postgresql access and request credentials if necessary (fixes #12137) Nyall Dawson 2015-02-12 Fix failing pal labeling canvas test Make sure image dpi respects mapsettings dpi in QgsMapRendererSequentialJob. Also apply a workaround to avoid segfault on end of test. This workaround probably should be moved to QgsApplication::exitQgis() but I'll do that after release in case of regressions. Larry Shaffer 2015-02-12 Enable C++11 only for newer clang versions; match AppleClang for Cmake 3 - Switch STREQUAL conditionals to MATCHES for Clang to handle CMake 3 introduction of AppleClang compiler ID for Mac-specific Xcode clang, which has different reported versions than upstream clang Juergen E. Fischer 2015-02-12 fix crash on snapping locator removal Martin Dobias 2015-02-12 Fix #12190 - splitGeometry crashes on linear geometry with a split point Marco Hugentobler 2015-02-12 Remove obsolete useCache parameters Nyall Dawson 2015-02-12 Coverity fixes Merge: b26556e 3c93827 volaya 2015-02-12 Merge pull request #1897 from arnaud-morvan/fix_fieldsmapper [processing] Fix fieldsmapper Martin Dobias 2015-02-12 Fix #11825 - handle centroid calculation also for invalid geometries The on the fly simplification can corrupt geometries so let's try to deal with it best we can Nathan Woodrow 2015-02-12 Fix #11993 - Fix crash with node tool and sql server Funded By Digital Mapping Solutions Martin Dobias 2015-02-12 Fix typo Martin Dobias 2015-02-12 Fix #11724 - do to not add extra geometries in union (ftools + processing) Nathan Woodrow 2015-02-12 MSSQL - Don't use spatial index if there is null values, calc extent instead. Funded by Digital Mapping Solutions Nyall Dawson 2015-02-12 "Fix" failing atlas composition tests These failing tests are actually revealing an issue with the atlas map API, which can't be fixed without a break. This API will be replaced for QGIS3.0 or the layout refactor work. Nyall Dawson 2015-02-12 More Coverity fixes Sandro Santilli 2015-02-11 Add map rotation to symbol rotation Only affects point marker symbols with data-defined rotation. Fix #12152 Werner Macho 2015-02-11 Adding new polish translator Signed-off-by: Werner Macho Hugo Mercier 2015-01-27 Allow to load a query-based SQLite layer without geometry arnaud.morvan@camptocamp.com 2015-02-11 Fix #12182 - In FieldsMapper, emit commitData on expression editor change arnaud.morvan@camptocamp.com 2015-02-11 Fix #12183 - avoid error message in fieldsmapper when no field type selected Juergen E. Fischer 2015-02-11 indentation update/fix (followup 9ab22bd) Juergen E. Fischer 2015-02-11 add override support to qgisstyle include pep8 call in indentation run for python code Nyall Dawson 2015-02-01 Add unit test for API documentation coverage This test checks that the coverage of the API docs does not drop below a preset threshold (initially set at the current doc coverage) If new members are added without documentation, then the coverage will drop and this test will fail. Hopefully over time we can slowly increase this threshold until documentation coverage reaches an acceptable level. Martin Dobias 2015-02-11 Use wait cursor when building indexes for snapping Martin Dobias 2015-02-11 Fix a crash resulting from corrupted undo stack (fixes #11940) In field calc opened from attribute table, when changing attributes there is a series of signals: layer emits attributeValueChanged(), cache forces update of attribute table data, which at one point calls layer.isModified(), emitting beforeModifiedCheck() - in turn calling save() of attribute form, which would change first feature's new attribute to a bogus value. This recursive change of attribute values corrupts the undo stack. The fix pre-sets the feature's attribute so that no dummy entry is added to the undo stack. In the future we should probably try to improve the whole cascade to avoid bugs like this one: 1. if possible, make emission of edit signals "safe", so a slot can do more editing calls without corrupting undo stack 2. get rid of beforeModifiedCheck() signal as it adds quite surprising behavior (and overhead) to what should be a simple check Nyall Dawson 2015-02-11 Coverity fixes (unchecked dynamic_cast) Nyall Dawson 2015-02-11 Coverity null dereference fixes Nathan Woodrow 2015-02-11 Fix #12167 - Handle nulls in show label property for labels Funded by Digital Mapping Solutions Juergen E. Fischer 2015-02-11 fix windows build Juergen E. Fischer 2015-02-11 support datum transformation in composer (fixes #11874) Juergen E. Fischer 2015-02-10 emit is not a function Nyall Dawson 2015-02-11 Coverity fixes Nyall Dawson 2015-02-11 Replace use of rand with qrand Nyall Dawson 2015-02-11 Fix warning Juergen E. Fischer 2015-02-10 offline editing: add layer to map layer registry before copying the symbology - otherwise edit widget settings won't be copied (fixes #11827) Juergen E. Fischer 2015-02-10 attribute table: fix update of sort column (fixes #10976) Martin Dobias 2015-02-10 Fix jumping map in canvas This would happen only with overview canvas visible. Found by Mathieu. Replacing the forced repaint() call by more suitable update() Juergen E. Fischer 2015-02-10 fix check-no-x Nyall Dawson 2015-02-10 Uninitialized variable fixes Nyall Dawson 2015-02-10 Default to faster render for heatmap renderer Nathan Woodrow 2015-02-10 Right missing right click on QgsColorButtonV2 Marco Hugentobler 2015-02-10 Server: fix loading of dependent layers when using the getFeature() function (ticket #12090) Giovanni Manghi 2015-02-10 ogr clip by polygon: clip polygon layer name must be declared to avoid issues with postgis and spatialite layers Nyall Dawson 2015-02-10 Fix some warnings, incorrect use of abs for double values Nyall Dawson 2015-02-10 Use a newer cmake version for Travis builds to avoid Qt warnings Martin Dobias 2015-02-10 Fix #12165 - table can't be joined multiple times Nyall Dawson 2015-02-10 More coverity fixes Martin Dobias 2015-02-10 Fix #12154 - select by location not working when A covers B The combination of touches+overlaps+contains is not enough if input layer (where selection should be done) is completely within selection layer. I have reintroduced "intersects" predicate and made it default. The processing toolbox has an improved (fixed?) version but fTools were not adapted at the same time Martin Dobias 2015-02-10 Fix intersection in SelectByLocation and ExtractByLocation Juergen E. Fischer 2015-02-10 raster calculator: allow unquoted raster references (fixes #11682) Juergen E. Fischer 2015-02-09 postgres provider: restore default for cursor counter Juergen E. Fischer 2015-02-09 INSTALL: remove reference to Visual C++ 2008 Martin Dobias 2015-02-09 Fix issue with intents to rebuild index of an empty layer With one or more empty layers, this would lead to a weird blinking due to progress dialog being opened when snapping to empty layers is active. The fix adds a flag in the point locator, so the index is not rebuilt unless there are some features in the layer Juergen E. Fischer 2015-02-09 fix leak on loading layer definition (also fixes #12064) Nyall Dawson 2015-02-09 Coverity fixes Including a notable bug causing "mean" to be missing from merge attributes dialog options. Nyall Dawson 2015-02-08 [raster] Fix cubic resampler visual glitches (refs #6561) Resampler was not correctly bounding color components for premultiplied image format. There's still errors in the resampled raster at the source image edges and glitches with transparency channels, though. Also fix a bunch of inefficiencies in the code. Juergen E. Fischer 2015-02-08 more coverity fixes Juergen E. Fischer 2015-02-08 rename new QgsSnapper::snapPoint method to snapMapPoint and restore python name of deprecated old version (fixes #12153) Juergen E. Fischer 2015-02-08 nine cell filter: restore defaults Merge: d6bfe7c e5a6a08 Nathan Woodrow 2015-02-09 Merge pull request #1890 from rutsky/patch-1 treat PostgreSQL's "xml" field type as string Vladimir Rutsky 2015-02-09 add missing dot at the end of sentence Nyall Dawson 2015-02-09 Add missing overrides Juergen E. Fischer 2015-02-08 new coverity fixes Juergen E. Fischer 2015-02-08 postgres provider: show notices Juergen E. Fischer 2015-02-08 fix windows build (pow called with an integer) and comma cosmetics Matthias Kuhn 2015-02-08 Reduce debug noise and fix Qt5 compatibility Fix #12145 (Master does not compile with Qt5 libraries) Matthias Kuhn 2015-02-08 Preserve formatting of expressions for datadefined symbology Followup 6fb347d Juergen E. Fischer 2015-02-08 followup 2f9dfd250 Juergen E. Fischer 2015-02-08 fix build error Merge: afd21cd 9e51488 volaya 2015-02-08 Merge pull request #1753 from arnaud-morvan/processing_managefields Create FieldMapper GeoAlgorithm Merge: b1a2ccd 84936e5 volaya 2015-02-08 Merge pull request #1759 from arnaud-morvan/processing_bylocation_operators Processing bylocation operators Merge: 6ed695a a18286f alexbruy 2015-02-08 Merge pull request #1892 from neteler/master [processing] updates for GRASS GIS 7 support; file date updated in comment Markus Neteler 2015-02-07 GRASS GIS batch job needs sqlite directory to be created Juergen E. Fischer 2015-02-07 remaining cppcheck issues Markus Neteler 2015-02-07 updates for GRASS GIS 7 support; file date updated in comment Juergen E. Fischer 2015-02-07 fix build without QwtPolar Juergen E. Fischer 2015-02-07 move travis notifications to #qgis-test Juergen E. Fischer 2015-02-07 fix more cppcheck issues Sandro Santilli 2015-02-07 Use core support for map rotation in composer Includes patch by Martin Dobias See http://lists.osgeo.org/pipermail/qgis-developer/2015-January/036309.html Fix #11912 Sandro Santilli 2015-02-06 Show actually visible canvas area in overview (possibly rotated) Fix #11862 Sandro Santilli 2015-02-07 Add a new visiblePolygon method to QgsMapSettings Centralizes code to return a possible rotated map area boundaries. Makes use of the new method from the grid decoration. Adds new testcase for QgsMapSettings, including test for visibleExtent, mapUnitsPerPixel and the new visiblePolygon method. Juergen E. Fischer 2015-02-07 fix warnings and extra semicolons Juergen E. Fischer 2015-02-07 fix cppcheck issues Juergen E. Fischer 2015-02-07 restore imports in python/plugins/processing/__init__.py (followup 956c155e8) Nathan Woodrow 2015-02-07 Remove travis notifications in IRC Anyone who forks QGIS and has Travis will also send stuff to IRC which is annoying. See https://github.com/travis-ci/travis-ci/issues/1094 Merge: b60221a 2612715 Nyall Dawson 2015-02-07 Merge pull request #1858 from vmora/symbol_list_refacto line symbol layer refacto to avoid code duplication Nyall Dawson 2015-02-07 Coverity fixes (uninitialized members) Juergen E. Fischer 2015-02-07 again more coverity fixes Nyall Dawson 2015-02-07 More (probably harmless) uninitialized variables in tests Juergen E. Fischer 2015-02-07 more coverity fixes Juergen E. Fischer 2015-02-06 fix some coverity issues Vladimir Rutsky 2015-02-06 treat PostgreSQL's "xml" type as string Sandro Santilli 2015-02-06 Have QCOMPARE be more verbose about failure arnaud.morvan@camptocamp.com 2015-01-22 Create FieldMapper GeoAlgorithm arnaud.morvan@camptocamp.com 2015-01-09 Add ParameterGoemetryPredicate and use it in XxxByLocation algorithms Nyall Dawson 2015-02-06 Fix a bunch of (probably harmless) uninitialized variables (improves Coverity signal-to-noise ratio) Merge: 6f338d7 f6d533a volaya 2015-02-06 Merge pull request #1886 from radosuav/processing_fix [Processing] Don't fill empty fields in batch mode with 0. Merge: 59b758b 5c5cb40 volaya 2015-02-06 Merge pull request #1887 from gioman/fix_processing_ogr_clip fixes processing ogr clip tools when input is postgis/spatialite Nathan Woodrow 2015-02-06 Fix #12069 - Don't adjust size of projection combobox Funded by Digital Mapping Solutions Nathan Woodrow 2015-02-06 Fix #12055 - Add split to function/help area on expression builder Funded by Digital Mapping Solutions Giovanni Manghi 2015-02-05 fixes processing ogr clip tools when input is postgis/spatialite Sandro Santilli 2015-02-05 Use a simpler image for testing composer map rotation and overview Update expected results and configuration of new image Add rendering anomalies, as determined by travis ubuntu 12.02 Merge: e4fb95f 3749867 alexbruy 2015-02-05 Merge pull request #1885 from gioman/processing_add_gdal_tiff_compression_options fixes processing gdal rasterize and add compression options for geotiff outputs radosuav 2015-02-05 [Processing] Don't fill empty fields in batch mode with 0. Should fix #12119 Giovanni Manghi 2015-02-05 fixes processing gdal rasterize and add compression options for tiff outputs Nyall Dawson 2015-02-05 [pal] Some const correctness and avoid passing large object by value Nyall Dawson 2015-02-05 Fix uninitialized variable Nyall Dawson 2015-02-05 Fix a bunch of memory leaks ...thanks Coverity, thoverity. Nathan Woodrow 2015-02-05 Use Python editor font and size for code editor Nathan Woodrow 2015-02-05 Fix #12100 - Expression tab by default Merge: 91c4e7a 1fe580c alexbruy 2015-02-04 Merge pull request #1881 from gioman/fix_processing_gdal_dstnodata fix processing gdalwarp dstnodata Giovanni Manghi 2015-02-04 fix processing gdalwarp dstnodata Merge: 7e66e33 98fb59b alexbruy 2015-02-04 Merge pull request #1880 from gioman/processing_fix_gdal_a_nodata fix a_nodata parameter in gdal processing Giovanni Manghi 2015-02-04 fix a_nodata parameter in gdal processing Nyall Dawson 2015-02-04 More memory leak fixes identified by Coverity Nyall Dawson 2015-02-04 Fix memory leak in MsSql provider (identified by Coverity) Nyall Dawson 2015-02-04 Fix Coverity UNINTENDED_INTEGER_DIVISION errors Nyall Dawson 2015-02-04 Avoid 'array compared against 0' error for QgsRasterLayer constructor ... by explicitly passing QString arguments. Otherwise the string literals are implictly converted to bool and the wrong constructor is called. This is not an ideal solution as the API is still misleading, but I can't see an alternative solution without breaking API and making one of the constructors explicit or changing their signature. Juergen E. Fischer 2015-02-04 fix windows 32bit build Martin Dobias 2015-02-04 Fix crash when simplification has overly high tolerance Got rid of the custom simplification code and replaced it with simplification provided by GEOS. The code is much simpler now. As a side effect, tolerance can be now entered also in pixels. Juergen E. Fischer 2015-02-04 sip fix: remove duplicate method and private methods from server request handler (followup abd4a043) Juergen E. Fischer 2015-02-03 osgeo4w: link 32bit against Qwt 6 Juergen E. Fischer 2015-02-03 relation reference widget: add methods to sip (followup 52c2e4e90) Merge: 3c2a92b 52c2e4e Jürgen Fischer 2015-02-03 Merge pull request #1870 from m-kuhn/relref-orderbyvalue Allow "order features by value" for relation reference widget Merge: 6f2ba0f 035229f alexbruy 2015-02-03 Merge pull request #1879 from gioman/fix_processing_encoding_split_vector_layer [processing] fix enconding in Split Vector layer tool when splitting attribute has non ASCII chars (fix #12117) Giovanni Manghi 2015-02-03 fix enconding in Split Vector layer tool when splitting attribute has non ascii chars Nyall Dawson 2015-02-03 Fix some copy/paste errors identified by Coverity Nyall Dawson 2015-02-03 Fix common memory leak after using QgsSymbolLayerV2Utils::loadSymbol Nyall Dawson 2015-02-03 Fix some memory leaks exposed by Coverity Nyall Dawson 2015-02-03 Fix uninitialized variables identified by coverity Nyall Dawson 2015-02-03 Fix build Alexander Bruy 2015-02-03 [processing] restore missed icons in various dialogs Merge: a2d430e 2a33908 alexbruy 2015-02-03 Merge pull request #1878 from gioman/fix_processing_encoding fix enconding in processing when input layer names have non ascii chars (fix #12106) Giovanni Manghi 2015-02-03 fix enconding in processing when input layer names have non ascii chars Martin Dobias 2015-02-03 Options: Fix copy&paste error Discovered by Nyall and coverity scan Juergen E. Fischer 2015-02-03 sip update Juergen E. Fischer 2015-02-02 hide console when python support is not available Juergen E. Fischer 2015-02-02 db_manager: use SqlEdit when QgsCodeEditorSQL is unavailable (fixes #12011) Juergen E. Fischer 2015-02-02 osgeo4w: disable coverage tests Juergen E. Fischer 2015-02-02 fix python imports (followup ee365bfc) Martin Dobias 2015-02-02 Fixes to the advanced digitizing - make snapSegment() work if no segment was previously snapped - fix highlight when a segment is snapped - fix ghost marker at (0,0) when digitizing first point Juergen E. Fischer 2015-02-02 dbmanager: fix import (followup 956c155e8f) Juergen E. Fischer 2015-01-30 fix warning Nyall Dawson 2015-02-02 Revert "Temporarily disable Travis submission to cdash" This reverts commit 8c1675a06a70d3845192f7b2c388acf3241b599f. Dash is back up. Juergen E. Fischer 2015-02-02 debian packages: only enable coverage tests for debug builds Juergen E. Fischer 2015-02-02 fix pep8 warnings Merge: db89a04 de2b3ea alexbruy 2015-02-02 Merge pull request #1874 from gioman/fix_processing_ogr_postgis_import_2 new fixes for processing/ogr import in postgis tools Merge: cd86710 9edff14 alexbruy 2015-02-02 Merge pull request #1873 from gioman/processing_remove_unsupported_raster_formats processing/gdal: remove output formats that are not supported by qgis Nyall Dawson 2015-02-02 Fix some warnings Nyall Dawson 2015-02-02 Temporarily disable Travis submission to cdash Cdash is down and this causes false failures Giovanni Manghi 2015-02-02 remove spaces Giovanni Manghi 2015-02-02 update to latest changes in master Giovanni Manghi 2015-02-01 better and new fixes for processing/ogr import in postgis tools Nyall Dawson 2015-02-02 Followup 956c155: fix python errors in PAL labeling tests Nyall Dawson 2015-02-02 Revert "Enable coverage reports for Travis builds" This reverts commit 34d5394409cd39a7953bd169ffdc36a618641ce3. Gcc builds were too resource hungry and kept getting killed by Travis. Will keep investigating alternate approaches... Juergen E. Fischer 2015-02-01 fix python pep8 warnings and fix some revealed errors pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \ --exclude="ui_*.py,debian/*,python/ext-libs/*" \ . Juergen E. Fischer 2015-02-01 remove duplicate separator in test diff pngs Merge: 9a4612e 8d7c2d7 alexbruy 2015-02-01 Merge pull request #1872 from gioman/processing_fix_qgis_raster_tools [processing] add support for rasters other than float32 in qgis/processing raster tools Merge: fe27b63 bb97dcc alexbruy 2015-02-01 Merge pull request #1871 from gioman/fix_processing_ogr_postgis_import fix processing ogr postgis import when db name or password are empty Giovanni Manghi 2015-01-31 processing/gdal: remove output formats that are not supported by qgis Giovanni Manghi 2015-01-31 processing: add support for rasters other than float in qgis/processing raster tools Juergen E. Fischer 2015-01-30 enable coverage in travis, debian builds and osgeo4w nightlies Juergen E. Fischer 2015-01-30 database providers: cope with empty attribute changes (fixes #12040) Merge: 7246b83 34d5394 Nyall Dawson 2015-01-31 Merge pull request #1867 from nyalldawson/travis_coverage_v2 Enable coverage reports for Travis builds Marco Hugentobler 2015-01-30 Server: if map-parameter is missing in post parameters, check if it is passed as a get-parameter. Ported from Sourcepole QGIS Enterprise Giovanni Manghi 2015-01-30 remove space from string Giovanni Manghi 2015-01-30 fix processing ogr postgis import when db name or password are empty Marco Hugentobler 2015-01-30 Server: create wfs layer objects only if layer is published as wfs. Bugfix funded by Sourcepole QGIS Enterprise Matthias Kuhn 2015-01-29 Fix graphical glitches caused by empty menu on attribute dialog Fix #12061 Matthias Kuhn 2015-01-29 Allow "order features by value" for relation reference widget Nyall Dawson 2015-01-29 Fix display of descriptions for symbol layer data defined buttons Nyall Dawson 2015-01-29 [composer] Correctly restore dock visibility and active dock tab After using the show/hide panels action all dock tabs would be shown (ignoring previously hidden tabs) and the active dock tab would be randomly chosen. Now, the previous settings are remembered and correctly restored. Nathan Woodrow 2015-01-29 Fix #12053 - Add tooltips and text to buttons in function editor volaya 2015-01-28 [processing] fixed ogr import to postgis when origin layer is a database Nyall Dawson 2015-01-28 [composer] Fix horizontal smart guides not appearing for page > 1 Nyall Dawson 2015-01-27 Enable coverage reports for Travis builds Changes required: - switch Travis builds to gcc, using O0 for build speed - enable a debug build - enable coverage report for ctest on Travis (sent to dash) Nyall Dawson 2015-01-27 Add some missing tests for QgsImageOperation Merge: 1cd7dc6 d6c969c Nathan Woodrow 2015-01-27 Merge pull request #1864 from michaelkirk/feature/export-png-first-8493 [fixes #8493] "Save as Image" defaults to PNG Michael Kirk 2015-01-26 test for original createFileFilter Merge: 262a5b2 1cd7dc6 Michael Kirk 2015-01-26 Merge remote-tracking branch 'upstream/master' into feature/export-png-first-8493 Conflicts: src/gui/qgisgui.h Juergen E. Fischer 2015-01-27 fix potential link error on windows - if anything was using QgisGui::createFileFilter_() outside of the gui dll it would produce a link error Juergen E. Fischer 2015-01-27 fix example indentation Michael Kirk 2015-01-26 test case for file filter formatter Michael Kirk 2015-01-25 Saving map defaults to PNG instead of BMP This only affects a user the first time they save a map as an image. Afterwards their preference is saved. FIXES: #8493 Merge: 609db7d b835f40 volaya 2015-01-26 Merge pull request #1852 from radosuav/changes [Processing] Small fixes and additions Nathan Woodrow 2015-01-26 Fix double click on fields in expressions builder Nyall Dawson 2015-01-26 Fix calculation of blur ops with non ARGB32_Premultiplied images Gary Sherman 2015-01-25 Update AUTHORS Fix name and email Juergen E. Fischer 2015-01-25 fix typo Werner Macho 2015-01-25 fix typo in processing Signed-off-by: Werner Macho Martin Dobias 2015-01-25 Point locator: fix addition of features when OTF reprojection is on This would cause issues when editing geometries with OTF on. Discovered by @nirvn Juergen E. Fischer 2015-01-25 db manager: request credentials directly when connection failed (fixes #11886) Juergen E. Fischer 2015-01-24 postgres provider: improve owner check (fixes #9844) Juergen E. Fischer 2015-01-24 fix signal/slot warnings Juergen E. Fischer 2015-01-24 fix backtrace output Juergen E. Fischer 2015-01-24 indentation update Juergen E. Fischer 2015-01-24 fix typo Juergen E. Fischer 2015-01-24 postgis connection: remove duplicate tooltips Denis Rouzaud 2015-01-23 override default settings for snapping utils followup 7e0f64648ac4faf89d44d00959a876de26bcc2df Marcel Dancak 2015-01-23 Mapserver: using bbox filter on features in GetFeatureInfo (searching with FILTER) only when BBOX parameter is given Martin Dobias 2015-01-23 Snapping tolerance: Fix "map units" vs "layer units" dilemma (fixes #11634) Until now "map units" in snapping config dialog actually referred to layer units. From now on, "map units" refer to project's CRS units. Where appropriate, it is possible to choose "layer units" that refer to layer CRS units. Projects from older versions of QGIS should be handled seamlessly (tolerances in layer units will be still handled in layer units, not project units). In API, QgsTolerance::MapUnits is deprecated as it is unclear to what units it refers to (should be ProjectUnits, but actually it is LayerUnits) Denis Rouzaud 2015-01-23 allow overriding project snapping settings from advanced digitzing tools therefore snapping to all layers can be applied, and snapping to segment can be turned on when enabling parallel/perpendicular constraints Denis Rouzaud 2015-01-23 fix combo index Merge: 01fd4f3 b1b3614 alexbruy 2015-01-23 Merge pull request #1859 from rduivenvoorde/xmin_rename [processing] changing fieldnames from xmin to x_min Matthias Kuhn 2015-01-23 Join: Fix specific set of fields not editable Followup 60712cd Fix #12042 Richard Duivenvoorde 2015-01-23 changing fieldnames from xmin to x_min xmin and ymin are resevered fieldnames in Postgis, so better not use these field names. Because this makes it impossible to create a vector grid and transfer it to Postgis Merge: 743f72d 5c89fdf mhugent 2015-01-23 Merge pull request #1857 from rldhont/server_wms_sld_describe_layer [SERVER][FEATURE] Add DescribeLayer Method to WMS Martin Dobias 2015-01-23 Use QgsSnappingUtils in offset curve tool (instead of QgsSnapper) vmora 2015-01-23 line symbol layer refacto to avoid code duplication The line symbol layer as been refactored to avoid code duplication and expose the offset and offset units in the base class. Note that the added functions in the base class where already defined in all child classes. Marco Hugentobler 2015-01-23 WMS server: list project crs, wgs84 and pseudo mercator in capabilities if no crs restriction is provided Martin Dobias 2015-01-23 QgsSnappingUtils: show a progress dialog if initial indexing takes long Martin Dobias 2015-01-23 QgsSnappingUtils: improvements of the hybrid indexing strategy Instead of calculating feature count (which may add extra overhead), let's directly try to build index for layers. Only when a certain limit of features is reached (currently 1 million), the indexing is cancelled and layer is marked as non-indexable. Nyall Dawson 2015-01-23 Deprecate QgsDataDefinedSymbolDialog, no longer used Move help descriptions to QgsDataDefinedButton and consolidate with existing descriptions. Martin Dobias 2015-01-23 Make sure to update snapping utils when layers change Otherwise when using all layers the change would not become visible (unless other change happens, e.g. change of map extent) Martin Dobias 2015-01-23 [FEATURE] New snapping mode to snap to all layers Juergen E. Fischer 2015-01-23 fix parsing of datasource uri Juergen E. Fischer 2015-01-23 fix legend crash Juergen E. Fischer 2015-01-22 dxf export: support line offsets Juergen E. Fischer 2015-01-22 indentation update Merge: 2bb6f2a 5369ce0 Nyall Dawson 2015-01-23 Merge pull request #1854 from vmora/fix_dd_line_offset fix type and helpstring of line offset Merge: 65a3bed 8d98c79 Tim Sutton 2015-01-22 Merge pull request #1851 from timlinux/master Dont dump projects to console when reading them rldhont 2015-01-22 [SERVER][FEATURE] Add DescribeLayer Method to WMS *Styled Layer Descriptor profile of the Web Map Service* : DescribeLayer http://www.opengeospatial.org/standards/sld Defining a user-defined style requires information about the features being symbolized, or at least their feature/coverage type. Since user-defined styles can be applied to a named layer, there needs to be a mechanism by which a client can obtain feature/coverage-type information for a named layer. This is another example of bridging the gap between the WMS concepts of layers and styles and WFS/WCS concepts such as feature-type and coverage layer. To allow this, a WMS may optionally support the DescribeLayer request. DescribeLayer method has been thought to be a better approach than overloading the WMS capabilities document even more. For each named layer, the description should indicate if it is indeed based on feature data and if so it should indicate the WFS/WCS (by a URL prefix) and the feature/coverage types. Note that it is perfectly valid for a named layer not to be describable in this way. Matthias Kuhn 2015-01-22 Offline editing: preserve tree structure fix The offline layers were duplicated, now the automatically inserted one is removed and only the one at the restored place is preserved. Followup 46490d4 Matthias Kuhn 2015-01-22 Offline editing: Use layer id instead of layer name for table name Avoids table name collisions Matthias Kuhn 2015-01-22 Test for non-custom prefix join name Matthias Kuhn 2015-01-22 Add test for custom prefix on joins Matthias Kuhn 2015-01-22 Offline editing: preserve join field names (layer prefix) Matthias Kuhn 2015-01-21 Offline editing: preserve scale based visibility Matthias Kuhn 2015-01-15 Backup layer join information when converting to offline project Matthias Kuhn 2015-01-15 Preserve legend tree structure when creating offline project Matthias Kuhn 2015-01-15 Add python bindings for QgsMessageBar slots Matthias Kuhn 2015-01-15 Offline editing plugin: only copy provider fields Before only provider fields where created in the local database while it was attempted to copy every field in the layer (including virtual fields and joins) introducing a crash. Matthias Kuhn 2015-01-15 Add convenience slots to QgsMessageBar Matthias Kuhn 2015-01-15 Make offline editing warnings use message bar and more verbose Merge: ff6b7de fff15e5 alexbruy 2015-01-22 Merge pull request #1855 from gioman/fix_processing_grass missed import in Processing GRASS algorithms (fix 12034) Giovanni Manghi 2015-01-22 fix Processing GRASS Martin Dobias 2015-01-22 [FEATURE] Overhaul of simplify feature tool (fixes #11514) This commit itself just removes dead code, but the previous commits bring: - OTF reprojection support - use can specify exact tolerance (not just non-sense relative value) - tolerance can be specified either in map units or layer units - tolerance settings are stored in settings - simplify multiple features at once (drag a rectangle instead of just clicking) - support for multi-part features - statistics about reduction of the number of vertices Martin Dobias 2015-01-22 Simplify tool: support multi-part features Martin Dobias 2015-01-22 Simplify tool: show status message about the simplification results Martin Dobias 2015-01-22 Simplify tool: allow simplification of multiple features at once One just needs to drag a rectangle instead of just clicking Martin Dobias 2015-01-22 Simplify tool: allow simplification in map units in addition to layer units Also fixes simplification of polygons with holes Martin Dobias 2015-01-22 Simplify tool: support for on-the-fly reprojection Martin Dobias 2015-01-22 Simplify tool: use exact tolerance (+ store it in settings) Removed the slider as it was of questionable usefulness. Martin Dobias 2015-01-22 Simplify tool - a bit of housekeeping (no functional changes) Matthias Kuhn 2015-01-22 [FEATURE] Allow to specify custom prefix for joins vmora 2015-01-22 fix type and helpstring of line offset radosuav 2015-01-22 [Processing] Allow user defined projections in Processing. radosuav 2015-01-22 [Processing] Let a script know where what is its description file. Usefull if it needs to access other files located relative to the script location. radosuav 2015-01-22 [Processing] Fix bug in setting default parameter values in batch mode. volaya 2015-01-22 [processing] fixed console description of models and scripts volaya 2015-01-22 [processing] fixed wrong import volaya 2015-01-22 [processing] fixed model help editing Merge: 7c71a26 e26eae9 alexbruy 2015-01-22 Merge pull request #1850 from SrNetoChan/Bug_12001 fix Processing Keep n biggest parts algorithm (fix #12001) Merge: ee0e90a 2db2c5c alexbruy 2015-01-22 Merge pull request #1849 from gioman/fix_ogr2ogr_convert_format fix Processing ogr2ogr convert format tool Tim Sutton 2015-01-22 Dont dump projects to console when reading them Martin Dobias 2015-01-22 Report correct count of inserted nodes when adding legend nodes Martin Dobias 2015-01-22 Save and restore expanded state of legend nodes in tree hierarchy Martin Dobias 2015-01-22 [FEATURE] Show rule-based renderer's legend in a tree hierarchy The functionality can be used in other renderers too, the only requirement is that legend nodes need to specify their parent rule key via data(). Note that ayer tree model must have ShowLegendAsTree flag enabled, otherwise the model will keep showing lists instead of trees. Martin Dobias 2015-01-21 Restructure the code in QgsLayerTreeModel to group legend-related code Nathan Woodrow 2015-01-22 Move template text to qgis.user.expressions Nyall Dawson 2015-01-22 Data defined all the things! Add a bunch of missing data defined options for symbology. Also fix dialog sizing issues. Nyall Dawson 2015-01-22 Actually hook up missing datadefined outline style for ellipse marker Alexandre Neto 2015-01-21 Fixes Processing Keep n biggest parts bug #12001 Nathan Woodrow 2015-01-22 Expand args for custom functions. Add auto arg count Format test to use spaces and not tabs Nyall Dawson 2015-01-22 Add overrides pt 6 Nyall Dawson 2015-01-22 Add missing methods to sip vmora 2015-01-20 improve GUI consistency & UX for data-defined style data defined buttons added to the gui fixes #9881 Giovanni Manghi 2015-01-21 fix Processing ogr2ogr convert format tool Merge: 43213a3 8499242 alexbruy 2015-01-21 Merge pull request #1848 from gioman/fix_postgis_import fix Processing OGR import into PostGIS Giovanni Manghi 2015-01-21 fix Processing OGR import into PostGIS Radim Blazek 2015-01-21 apply browser filter to the whole tree Juergen E. Fischer 2015-01-21 fix building of app test with internal qwtpolar Merge: e49adad 6a66d31 Matthias Kuhn 2015-01-21 Merge pull request #1846 from naihil/master Call QgsMapTool::deactivate() to uncheck assigned action/button Matthias Kuhn 2015-01-21 Use cached feature for context menu feature action on attribute dialog Dirty hack to * fix #11744 * fix #11546 Merge: ea54b3c 3752be66 Matthias Kuhn 2015-01-21 Merge pull request #1847 from m-kuhn/oq Make QwtPolar optional Matthias Kuhn 2015-01-21 Only show actions menu on attribute dialog when necessary Fix #12013 Radim Blazek 2015-01-21 use QgsBrowserTreeView in qbrowser Matthias Kuhn 2015-01-21 Make QwtPolar optional Merge: f5b10ba 61b0291 volaya 2015-01-21 Merge pull request #1680 from tmizu23/r_utils fix Empty console Output on R under processing. refs #7643 Merge: 678f1ab 3ce5275 Matthias Kuhn 2015-01-21 Merge pull request #1752 from mhugo/fix_11948 Test for write access mode for editing capabilities volaya 2015-01-21 [processing] allow using upcoming saga release volaya 2015-01-21 renamed geostatistics modules in SAGA connector Radim Blazek 2015-01-21 fixed ziplayertest, b843f8189 follow up Merge: 8f6b014 82f043c volaya 2015-01-21 Merge pull request #1843 from radosuav/processing_sublayers [Processing] Add support for input rasters with sublayers. Matthias Kuhn 2015-01-21 SIP update: QgsVectorLayer::applyNamedStyle, errorMsg is /Out/ Merge: 7796b15 a95e28f volaya 2015-01-21 Merge pull request #1844 from gioman/fix_saga_rastercalc fix different issues in SAGA grid calculator module and add a couple of useful options Merge: 723f7be c5c970e Matthias Kuhn 2015-01-21 Merge pull request #1839 from rduivenvoorde/identify_color_11996 fix for #11996, use user colors for rubberband instead of fixed red when... Matthias Kuhn 2015-01-21 Remove duplicated code and add some documentation Anatoliy Golubev 2015-01-21 Call QgsMapTool::deactivate() to uncheck assigned action/button Radim Blazek 2015-01-21 fixed browser single layer zip files path, fixes hopefully #11871 Nyall Dawson 2015-01-21 Add gaussian blur image operation Nyall Dawson 2015-01-16 New QgsImageOperation class for operations that modify QImages Contains framework for multithreaded operations on QImages, and numerous operations such as grayscale, hue/saturation, brightness/ contrast modification, flip, blur, distance transform, alpha modification and color overlays. Martin Dobias 2015-01-21 Do not show 'remove current style' action when it can't be used Martin Dobias 2015-01-21 Fix todo in QgsMapMouseEvent Nyall Dawson 2015-01-20 Add some missing type conversions to python bindings Larry Shaffer 2015-01-20 Fix #6922, rearrange proxy form to clearly show when system's is used Nyall Dawson 2015-01-21 Add overrides pt 5 Juergen E. Fischer 2015-01-20 fix warning Juergen E. Fischer 2015-01-20 fix windows build rldhont 2015-01-20 [BUGFIX][QgsGmlSchema] Decode element name Good practice for the element name is to exclude accents but when GML is automatically generated attribut element name can have accent. It's some time the case with GetFeatureInfo. Giovanni Manghi 2015-01-20 fix different issues in SAGA grid calculator module and add a couple of useful options Juergen E. Fischer 2015-01-20 osgeo4w: also use Visual C++ 2010 for 32bit Juergen E. Fischer 2015-01-20 fix format_date example (fixes #12016) Radim Blazek 2015-01-20 fixed browser add favourite path Radim Blazek 2015-01-20 reverted partially ba4948e44 (#11871 - browser crash with zipped file) Radim Blazek 2015-01-20 browser save/restore state moved to new class QgsBrowserTreeView Merge: cae4eb3 7b31a17 mhugent 2015-01-20 Merge pull request #1830 from manisandro/transaction [FEATURE] Transactional editing for postgres layers Merge: b029198 8177bbe Martin Dobias 2015-01-20 [FEATURE] New snapping API with improved indexing (QEP 13) Merge branch 'snapping-improved' Martin Dobias 2015-01-20 Snapping utils optimization Avoid snapping to edges if vertex has already been found. Also increase the maximum feature count to 1M before doing non-indexed queries Martin Dobias 2015-01-20 Decrease the debugging noise Martin Dobias 2015-01-20 Node tool: Declutter a bit the mouse press event logic Martin Dobias 2015-01-20 Point locator: Use just one R-tree for indexing instead of three R-trees The maintenance of three R-trees was too complicated, using a lot of memory and the performance benefit was questionable :) The approach with just one R-tree leads to much simpler code Removed k-NN queries in the process - they were not used in QGIS code. They can be reintroduced later, but there is not much use for them right now... radosuav 2015-01-20 [Processing] Add support for input rasters with sublayers. volaya 2015-01-20 [processing] added specific algorithm for saga 214 volaya 2015-01-20 [processing] some SAGA fixes -fixed raster export -fixed version numbering when no saga installation is found Alexander Bruy 2015-01-20 fix file permissions Alexander Bruy 2015-01-20 [processing] remove help files already ported to User Guide Martin Dobias 2015-01-15 Support different indexing strategies in QgsSnappingUtils Huge layers will not use all the memory - at the expense of slow queries Martin Dobias 2015-01-14 QgsPointLocator: make it possible to index just a part of layer Martin Dobias 2015-01-04 Remove QgsMapToolVertexEdit class - not needed anymore Martin Dobias 2015-01-04 Final removals of QgsMapCanvasSnapper Martin Dobias 2015-01-04 Convert more code from QgsMapCanvasSnapper to QgsSnappingUtils Martin Dobias 2015-01-04 Add QgsSnappingUtils::snapToCurrentLayer() + utility methods in QgsTolerance Also added missing SIP wrappers for new classes QgsPointLocator and QgsSnappingUtils Martin Dobias 2015-01-03 Fix Add part map tool for multi-point layers Martin Dobias 2014-12-22 Get rid of last snapToBackgroundLayers() calls Martin Dobias 2014-12-22 Add support for match filtering, fix unit tests Martin Dobias 2014-12-22 Conversions from QgsMapCanvasSnapper to QgsSnappingUtils Martin Dobias 2014-12-14 Add snapping to current layer mode + make it default for new projects Martin Dobias 2014-12-14 Added convenience method snappingUtils() to QgsMapCanvas Map tools can use canvas.snappingUtils().snapToMap(pt) to do the snapping. Martin Dobias 2014-12-13 Fix issues with snapping and lat/lon coords Martin Dobias 2014-12-13 Fix snapping vertex marker when snapped to a segment Martin Dobias 2014-12-13 Fix problems with edge snapping with duplicated vertices present Martin Dobias 2014-12-13 Reintroduce support for intersection snapping Martin Dobias 2014-12-13 Added vertex/edge in tolerance queries Martin Dobias 2014-12-12 Handle updates of the layer in the point locator This currently just invalidates the whole trees. It would be more sophisticated to do just the updates to the existing trees - but I run into various issues with the spatial index library when doing that. So resorting to this for the moment. Martin Dobias 2014-12-12 Hook snapping utils into QGIS interface Now the new snapping engine is ues for add feature map tool Martin Dobias 2014-12-10 Added initial tests for QgsPointLocator and QgsSnappingUtils Martin Dobias 2014-12-10 Initial import of new classes for more efficient snapping QgsPointLocator: index vector layer geometries for fast lookups QgsSnappingUtils: combine locators according to snapping configuration Also adds fast point in polygon queries. Nathan Woodrow 2015-01-20 Ensure users python folder is on path Fix import of expressions if we have to make the the python\expressions folders Martin Dobias 2015-01-19 Layer properties dialogs: add style manager actions under Style button This allows for more convenient configuration of layer styles and switching between them compared to the context menu in the layer tree. This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. Martin Dobias 2015-01-19 Make sure "keep layer styles" checkbox is enabled only when "keep layers" is checked Martin Dobias 2015-01-19 Replace the row of style-related buttons by a button with context menu This saves vertical space and will allow addition of more actions. This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. Sandro Mani 2015-01-13 Fix infinite loop in QgsVectorLayer::deleteSelectedFeatures if removal of feature fails Sandro Mani 2015-01-12 [FEATURE]: Transactional editing for postgres layers (other datasources possible in the future). Funded by City of Uster Martin Dobias 2015-01-19 Make the style GUI utils more granular + move copy/paste to the top of menu This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. Nyall Dawson 2015-01-19 Ensure that clear button is shown for QgsSpinBox/DoubleSpinBox Previously the clear button might not show if the value of the widget was set while its signals were blocked. Nyall Dawson 2015-01-19 Show recently used projections in QgsProjectionSelectionWidget Nyall Dawson 2015-01-19 Fix warning Martin Dobias 2015-01-19 Make sure to update visibility presets if any layer's style name changes Also adds signals to the QgsMapLayerStyleManager so others can watch the changes This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. Richard Duivenvoorde 2015-01-19 fix for #11996, use user colors for rubberband instead of fixed red when in Layer selection mode Martin Dobias 2015-01-19 [FEATURE] Composer map - optionally store layer styles There is a new check box that allows the user to tell whether a map should keep the layer styles (it will store the state when the check box is checked). The stored layer styles keep a snapshot of each layer's configuration instead of just keeping name of the style. This solves issues with styles and visibility presets in composer which were not completely compatible. This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. Martin Dobias 2015-01-19 Waste less space with whitespace in project files Nathan Woodrow 2015-01-19 Add spacing above function editor combo. API docs for QgsLayerDefinition Nyall Dawson 2015-01-19 Add overrides (part 3) Nyall Dawson 2015-01-19 Use QgsProjectionSelectionWidget for raster layer save as dialog Nyall Dawson 2015-01-19 Change projection selection widget to use a combo box With options for layer CRS, project CRS and default CRS. Nyall Dawson 2015-01-19 Fix tab order not respected for unit selection widget Nathan Woodrow 2015-01-19 Add group support for QLR files Add class for handling QLR files. Add sip bindings Funded by Nicholas Duggan Werner Macho 2015-01-18 Fix some typos Signed-off-by: Werner Macho Nyall Dawson 2015-01-18 Fix font size not restoring when opening label property dialog Also make font size of 0 correspond to a null value, ie the label uses the default layer font size. Juergen E. Fischer 2015-01-18 translation string fixes Juergen E. Fischer 2015-01-18 improve i18n of topology checker plugin Merge: c26cfe2 8911d6b Tim Sutton 2015-01-17 Merge pull request #1837 from timlinux/master Updated splash from Anita / Essen Hackfest 2014 Tim Sutton 2015-01-17 Updated splash from Anita / Essen Hackfest 2014 Juergen E. Fischer 2015-01-17 replace more override identifiers Alexander Bruy 2015-01-17 [processing] enable algs that require 3rd party Python modules when possible Merge: e3e42f0 d8a224d Alexander Bruy 2015-01-17 Merge branch 'processing-i18n' Alexander Bruy 2015-01-17 fix typos Juergen E. Fischer 2015-01-17 fix support for null values in categories (fixes #11786) Alexander Bruy 2015-01-16 [processing] i18n support for SAGA provider Alexander Bruy 2015-01-16 [processing] i18n support for TauDEM provider Alexander Bruy 2015-01-16 [processing] i18n support in grass, R, OTB and example providers Alexander Bruy 2015-01-15 [processing] i18n for qgis provider Alexander Bruy 2015-01-14 [processing] i18n support for lastools provider Alexander Bruy 2015-01-13 [processing] i18n support in gdal provider Juergen E. Fischer 2015-01-17 style manager: avoid name duplication (fixes #11015) Juergen E. Fischer 2015-01-17 ogr provider: virtual format driver can also be named 'VRT' (fixes #11223) Juergen E. Fischer 2015-01-16 fix parsing of vector mime data (fixes #11984) Juergen E. Fischer 2015-01-16 postgres provider: fix adding features with null values (fixes #11777) Juergen E. Fischer 2015-01-16 use directory path and not item path (fixes #11871) Juergen E. Fischer 2015-01-16 keep rotation support state in canvas (followup 204e7104) Juergen E. Fischer 2015-01-16 enable canvas rotation support by default Juergen E. Fischer 2015-01-16 header install update Juergen E. Fischer 2015-01-16 avoid usage of override as identifier (followup 313f2c8d) Nathan Woodrow 2015-01-12 [FEATURE] Function editor for expression widget. Allows for adding on the fly functions to the expression engine. Functions are saved in qgis2\python\expressions. New qgis.user module in Python. The qgis.user.expressions package points to the qgis2\python\expressions package in the users home volaya 2015-01-16 [processing] Consistently show modeler dialog as modal Juergen E. Fischer 2015-01-16 add missed files (followup 313f2c8d) Denis Rouzaud 2015-01-16 followup 313f2c8de09b00ef5cdabee59e83e86dda36b1ed Juergen E. Fischer 2015-01-16 OVERRIDE macro breaks globeplugin (OVERRIDE is an enum value in OpenSceneGraph) replace 'OVERRIDE' macro with 'override' keyword in code and define it an empty macro where C++11 is not available (followup 466f2563efd) Martin Dobias 2015-01-16 Add QgsMapLayer::importNamedStyle() functions Like this we do not need to use a temporary file to load a style Sandro Santilli 2015-01-15 Drop unused parameters from private methods, indentation update Sandro Santilli 2015-01-15 Rewrite grid decoration to consider map rotation Closes http://hub.qgis.org/issues/11817 Nyall Dawson 2015-01-15 Fix redundant angle methods for QgsGradientFillSymbolLayerV2 Nyall Dawson 2015-01-15 Add overrides pt 2 volaya 2015-01-15 [processing]download and store help files when downloading from script/models repo Fixes #11979 volaya 2015-01-15 [processing] fixed handling of file outputs in scripts Fixes #11990 volaya 2014-12-22 [processing] fixed handling of bool values in saga 213 volaya 2014-12-22 [processing] fixed make file volaya 2014-12-19 [processing] New system for handling SAGA versions This commit sets a different way of handling SAGA versions and a new way of checking saga installations This is done to fix the messy situation that SAGA causes due to its API changing in each release. Juergen E. Fischer 2015-01-15 spelling fixes Juergen E. Fischer 2015-01-15 dxf export: use implicit cast QPointF to QgsPoint Juergen E. Fischer 2015-01-15 fix build error Nathan Woodrow 2015-01-15 Fix plugin installer crash with invalid versions Juergen E. Fischer 2015-01-14 dxf export: improve marker symbol export Juergen E. Fischer 2015-01-14 dxf export dialog: fix select and unselect all (fixes #11987) Denis Rouzaud 2015-01-14 offline editing plugin: allow exporting non geometric layers Denis Rouzaud 2015-01-14 use QgsLayerTree for the selection of layers in the offline editing plugin Nyall Dawson 2015-01-14 Replace use of deprecated std::auto_ptr with QScopedPointer Nyall Dawson 2015-01-14 Avoid some compiler warnings Nyall Dawson 2015-01-14 Add OVERRIDE to definitions (pt 1) Nyall Dawson 2015-01-14 Disable deprecated register warning/error for clang, breaks Travis build Nyall Dawson 2015-01-14 Enable -Wno-error=c++11-narrowing for clang builds ...until underlying issues are fixed Nyall Dawson 2015-01-14 Fix comparison between pointer and integer error for clang c++11 Nyall Dawson 2015-01-14 Add OVERRIDE macro, allows "override" keyword when c++11 is available ...and no errors when compiler is not capable of c++11 builds. Martin Dobias 2015-01-14 WMS server: Support in SLD When using make sure the passed SLD XML has attribute units="mm" in the root tag. Otherwise the WMS server applies scaling as if all sizes were in pixels. The correct approach would be to just scale sizes when loading symbols from SLD - not to apply such scaling globally This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. Martin Dobias 2015-01-14 Fix bbox-based GetLegendGraphic for CRS with inverted axes (e.g. EPSG:4326) Merge: b49da36 224b2c8 Martin Dobias 2015-01-14 Merge pull request #1831 from giohappy/wms_legend_fix Fix erroneous extent for contextual legend giohappy 2015-01-13 Fix erroneous extent for contextual legend Juergen E. Fischer 2015-01-13 * Save and restore visiblity state of embedded group layers (fixes #4097) * Adds support for lists in custom properties Martin Dobias 2015-01-13 WMS server: support multiple styles in GetStyles request This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. Martin Dobias 2015-01-13 Fix #11703 and #11704 Do not create a layer node if the passed layer cannot be used (not in registry) Martin Dobias 2015-01-13 WMS server: fix crashing context-based GetLegendGraphic This code has been funded by Tuscany Region (Italy) - SITA (CIG: 6002233F59) and commissioned to Gis3W s.a.s. The above statement applies also to the earlier commits: 5b38262 WMS server: advertise additional layer styles in GetCapabilities 95b4ebc WMS server: detect correct service URL even if REQUEST_URI is not defined 03edac9 WMS server: throw LayerNotDefined exception when undefined layer is requested 6e4c507 WMS server: support predefined layer styles in GetMap requests 4dead72 Allow multiple styles of layers in composer maps 50e77a9 Added support for renaming of map layer styles 8b5587f Improve the internals of map layer style manager b4ad637 Make presets with styles working in composer 3fbb758 More reliable trigger of refresh when changing styles 803e822 Visibility presets also record layer's current style 603b3a5 Fixed problems with style switching not always working correctly 3ce9c70 Merge pull request #1755 from wonder-sk/multiple-styles 2144be0 Add Python bindings for map layer style manager f00f4fd Style manager code cleanups 43d6042 Support for reading/writing additional styles for layers 19b7281 Fix cleanup of the style GUI utils singleton edf3ebb Improve the Styles menu in legend context menu 547d018 Added a GUI utility class to support multiple styles per map layer 829f99b Initial core work on multiple styles per layer Nyall Dawson 2015-01-13 Replace use of deprecated std::auto_ptr with QScopedPointer Denis Rouzaud 2015-01-12 fix scale widget and dxf export Martin Dobias 2015-01-12 WMS server: advertise additional layer styles in GetCapabilities Martin Dobias 2015-01-12 WMS server: detect correct service URL even if REQUEST_URI is not defined Martin Dobias 2015-01-12 WMS server: throw LayerNotDefined exception when undefined layer is requested This is according to WMS 1.1.0 / 1.1.1 / 1.3.0 specs Martin Dobias 2015-01-12 WMS server: support predefined layer styles in GetMap requests Matthias Kuhn 2015-01-12 Correctly synchronize layer editable state with UI in relation editor Fix #11524 Thank you very much Benjamin Trigona-Harany Markus Neteler 2015-01-11 Updates for current GRASS GIS 7 release branch [merged PRs]: * Delete r.bitpattern.txt: r.bitpattern is now only an Addon since r.mapcalc and i.modis.qc provide the functionality * r.describe.txt: flag description cosmetics * r.random.raster.txt: fix typo * Update and rename r.shaded.relief.txt to r.relief.txt (http://trac.osgeo.org/grass/wiki/Grass7/NewFeatures#Renamedmodules) * Update r.sunmask.txt: -s added but "Outputraster" needs to be optional for that [TODO] * Update r.surf.area.txt: "units" added * Delete r.surf.idw2.txt: r.surf.idw2 is now a GRASS GIS Addon (http://trac.osgeo.org/grass/wiki/Grass7/NewFeatures#Replacedandremovedmodules) * Delete v.transform.pointsfile.txt: The pointsfile parameter no longer exists. Use v.transform.txt instead * Update TODO Juergen E. Fischer 2015-01-11 fix doxymentation warnings Juergen E. Fischer 2015-01-10 delimited text provider: only add finite points to spatial index (fixes #11708) Merge: 6e60d67 29f8b23 alexbruy 2015-01-10 Merge pull request #1760 from gioman/fix_scripts fix a few qgis processing scripts Merge: d9042f5 ee9c368 Nathan Woodrow 2015-01-10 Merge pull request #1747 from NathanW2/measure_dialog Add units selector to measure dialog. Add info text to dialog Nathan Woodrow 2015-01-10 Follow up 6a17a60ae2 - Fix error when passing usesgeometry to qgsfunction Sandro Santilli 2015-01-09 Make north arrow decoration follow map rotation Closes http://hub.qgis.org/issues/11818 Giovanni Manghi 2015-01-09 fix a few qgis processing scripts Juergen E. Fischer 2015-01-09 function help fixes Juergen E. Fischer 2015-01-09 avoid duplicate function help entry Juergen E. Fischer 2015-01-09 oracle provider: also retrieve pk candidates for geometryless views (fixes #11963) Sandro Santilli 2015-01-09 Pre-rotate vectors before applying labels Revert custom rotation handling in label placement, dropping rotation component from the transformation used to determine placement as rotation was applied up-front. Have manually placed labels follow the map. Sandro Santilli 2015-01-09 Do not assume map is not rotated when computing label sizes Martin Dobias 2015-01-09 Allow multiple styles of layers in composer maps When layer set is locked in composer map, also the styles associated with layers are kept. As a result, a composition can contain maps of the same layer just with different styles. Map settings and map renderer jobs have been improved to support temporary override of layer's style. It is possible to pass to map settings which layers should have overridden style and map jobs will temporarily replace the style (just for the rendering). Martin Dobias 2015-01-09 Added support for renaming of map layer styles Juergen E. Fischer 2015-01-09 use wkbPtr Sandro Santilli 2015-01-09 Add rotate and transform(QTransform) methods to QgsGeometry Reimplement translate in terms of transform(QTransform). Includes new unit test for rotate() and translate() methods. Includes sip bindings update. Nyall Dawson 2015-01-09 Some optimisations to gradient ramps and shapeburst fills Leads to up to 25% improvement in render speed. Martin Dobias 2015-01-09 Improve the internals of map layer style manager - style manager is always enabled (client code does not need to distinguish between enabled/disabled state) - layers currently active style is stored only in QgsMapLayer - in style manager it has entry with no data (avoids duplication of data) This also solves issues with visibility presets and styles when some presets do not have stored style Denis Rouzaud 2015-01-09 remove lineEdit method from projection selection widget this will allow to change the widget design without breaking the API Juergen E. Fischer 2015-01-09 indentation update Denis Rouzaud 2015-01-09 update the scale range widget with the new scale widget Denis Rouzaud 2015-01-09 fix warning Denis Rouzaud 2015-01-08 use scale widget in dxf export Denis Rouzaud 2015-01-09 add scale widget to custom widgets Denis Rouzaud 2015-01-09 create scale widget (scale combo box + button to set scale from map canvas) Mathieu Pellerin (nirvn) 2015-01-03 [rotation] prevent rotation of labels when placed around or over a point/centroid Nathan Woodrow 2015-01-08 Right align header in ui file. Add info in groupbox Merge: 09074ad c11319b Nathan Woodrow 2015-01-08 Merge branch 'master' into measure_dialog Nyall Dawson 2015-01-08 Some optimisations to gradient fill renderer speeds drawing up by ~20% in some circumstances Martin Dobias 2015-01-08 Make presets with styles working in composer Martin Dobias 2015-01-08 More reliable trigger of refresh when changing styles Previously when changing the presets map canvas would not be redrawn Martin Dobias 2015-01-08 Visibility presets also record layer's current style Martin Dobias 2015-01-08 Fixed problems with style switching not always working correctly Caused by internal storage (QByteArray) not re-adjusting its size to new content, resulting in corrupted XML data Nyall Dawson 2015-01-08 Fix button box in options dialog not working (fix #11960) QgsOptionsDialogBase was incorrectly finding the projection selector's buttonBox widget and attaching the connections to that widget, rather than the dialog's widget. Rename projection selector's button box to avoid this conflict. Merge: 3ce9c70 2ad2781 Sandro Santilli 2015-01-07 Merge pull request #1756 from strk/travis-modeltest Have travis build with model test enabled Merge: 0b954c1 2144be0 Martin Dobias 2015-01-07 Merge pull request #1755 from wonder-sk/multiple-styles [FEATURE] Support for multiple styles per map layer Available in legend context menu in Styles sub-menu where it is possible to add/remove styles and quickly switch between them. Sandro Santilli 2015-01-07 Have travis build with model test enabled Sandro Santilli 2015-01-07 Reduce debug noise Matthias Kuhn 2015-01-07 Don't quote column names for MIN and MAX for ogrsql See https://trac.osgeo.org/gdal/ticket/5799#comment:9 Fixes #11887 Matthias Kuhn 2015-01-07 Don't consider NULL values for minimumValue() and maximumValue() Fix #11887 Martin Dobias 2015-01-07 Add Python bindings for map layer style manager Martin Dobias 2015-01-07 Style manager code cleanups Martin Dobias 2015-01-07 Support for reading/writing additional styles for layers Martin Dobias 2015-01-07 Fix cleanup of the style GUI utils singleton Martin Dobias 2015-01-07 Improve the Styles menu in legend context menu Martin Dobias 2015-01-07 Added a GUI utility class to support multiple styles per map layer Martin Dobias 2015-01-07 Initial core work on multiple styles per layer Matthias Kuhn 2015-01-06 Fix customwidgets build for Qt4 Denis Rouzaud 2015-01-06 Fix Qt5 build for custom widgets Matthias Kuhn 2015-01-06 Print version when building with Qt5 Nyall Dawson 2015-01-06 Port a bunch of CRS selectors across to QgsProjectionSelectionWidget Nyall Dawson 2015-01-06 Small fixes to QgsProjectionSelectionWidget Add API docs, const correctness, method for getting CRS, tab order fixes. Sandro Santilli 2015-01-05 Simplify zoom-by-rect handling, to set zoom factor and center Basically avoids using the now loosly defined "extent" concept. Enhances zooming experience with rotated maps. Matthias Kuhn 2015-01-05 Expand size of RelationReference when custom .ui is defined with a QWidget Fix #11698 Matthias Kuhn 2015-01-05 Empty relation reference form when FK is set to NULL Fix #11852 Matthias Kuhn 2015-01-05 Fix warnings and small api doc improvement Hugo Mercier 2015-01-05 Test for write access mode for editing capabilities Denis Rouzaud 2015-01-05 add QgsProjectionSelectionWidget to custom widgets Denis Rouzaud 2015-01-05 add SIP for QgsProjectionSelectionWidget Denis Rouzaud 2015-01-05 use custom widget for projection selection in options Denis Rouzaud 2015-01-05 dedicated class for projection selection widget Merge: b905f6b ea00b36 Matthias Kuhn 2015-01-05 Merge pull request #1743 from naihil/master [Qt5-compat] Change Q_WS_* macroses to Q_OS_* Juergen E. Fischer 2015-01-04 remove unused define (followup 841af773e) Merge: 841af77 fbe7551 Nyall Dawson 2015-01-05 Merge pull request #1751 from andreabedini/patch-1 Remove unused variable Juergen E. Fischer 2015-01-04 remove (outdated) internal spatialite Sandro Santilli 2015-01-04 Fix handling of rotation in partial-rendering of map (#11909) Andrea Bedini 2015-01-04 Remove unused variable Juergen E. Fischer 2015-01-04 fix windows build Sandro Santilli 2015-01-03 Fix feature highlight in presence of rotation (#11815) Sandro Santilli 2015-01-03 Fix select by rectangle and by point in presence of rotation Closes http://hub.qgis.org/issues/11865 and http://hub.qgis.org/issues/11930 Sandro Santilli 2015-01-03 Consider rotation in rubberband placement Fixes artifacts on zoom by rectangle (#11910) and placement of measure tool rubberband. Sandro Santilli 2015-01-03 Consider rotation in pre-rendering display of map items See http://hub.qgis.org/issues/11909 Sandro Santilli 2015-01-03 Update sip bindings for QgsMapCanvasItem (after const-correctness) Juergen E. Fischer 2015-01-02 indentation update Sandro Santilli 2015-01-02 const correct toMapCoordinates and toCanvasCoordinates Sandro Santilli 2015-01-02 Drop temporary solution for WMS legend (double-click in legend) Now WMS legend is shown in layertree this isn't needed anymore. See http://lists.osgeo.org/pipermail/qgis-developer/2014-December/036065.html Sandro Santilli 2015-01-02 Specify that QgsMapCanvasItem::setRect/rect use map units rldhont 2015-01-02 [QGIS-Server][BUGFIX] GetLegendGraphics set layername To have title instead of name in server getlegendgraphic response, the commit bb95a0f43a53602bd7ad1ea6783d251755c66019 update getlegendgraphic to set the tree layer name. This update set the layer name with layer title. To fix it, I just store the layers name and reset them at the end of GetLegendGraphic request. Merge: c0b94cf bbed705 Nathan Woodrow 2015-01-02 Merge pull request #1735 from strk/wmslegend Add support for map-contextual WMS legend Merge: 2b7e49b a0ffad2 Nathan Woodrow 2015-01-02 Merge pull request #1744 from rldhont/expression_get_transform_geom [FEATURE] Add get and trasnform geometry in Expression rldhont 2014-12-13 [FEATURE] Add get and transform geometry in Expression In version 2.6, new keywords has been added to Expression : * $currentfeature - returns the current feature * $atlasfeature - returns the atlas feature * getFeature - gets a matching feature from a layer But I think, Expression lacks a few keywords : * geometry - returns the feature's geometry * transform - returns the transformed geometry These new keywords can be used with getFeature for some geometry tests like intersects, crosses, contains, etc Tests has been added to geometry and transform in Expression Nathan Woodrow 2015-01-02 Align header text Nathan Woodrow 2015-01-02 Read settings for default value Juergen E. Fischer 2015-01-01 actually make canvas rotation available (followup 916a27f7b) Juergen E. Fischer 2015-01-01 make messages button translatable Juergen E. Fischer 2015-01-01 make button translatable Nathan Woodrow 2015-01-01 Add units selector to measure dialog. Add info text to dialog Nathan Woodrow 2015-01-01 Add OTF text to CRS button when on the fly is enabled Nathan Woodrow 2015-01-01 Fix #10392 Fix #11713 - Fix selection of ellipsoide when opening project properties Nathan Woodrow 2014-12-31 Format source Nathan Woodrow 2014-12-30 Button text for CRS picker Nathan Woodrow 2014-12-30 Add new messages icon, add messages text to log button Move status bar add logic to qgisapp for QgsMessageLogViewer Juergen E. Fischer 2014-12-30 fix warnings Juergen E. Fischer 2014-12-30 make canvas rotation support available in options Juergen E. Fischer 2014-12-30 indentation update Julien Nabet 2014-12-29 Fix cppcheck reports: [src/providers/ogr/qgsogrprovider.cpp:1071]: (error) Memory leak: oldlocale [src/providers/ogr/qgsogrprovider.cpp:1268]: (error) Memory leak: oldlocale [src/core/spatialite/spatialite.c:50598]: (error) Memory leak: reader [tests/src/core/testqgscolorscheme.cpp:155]: (error) Memory leak: dummyScheme2 [src/core/spatialite/spatialite.c:40138]: (error) Memory leak: ln Sandro Santilli 2014-12-30 Fix panning from overview map with non-zero rotation Closes http://hub.qgis.org/issues/11816 Nathan Woodrow 2014-12-30 Fix #11928 - import os for las tools Merge: 5acd35e b9f8176 Giuseppe Sucameli 2014-12-29 Merge pull request #1705 from marcel-dancak/db_manager-spatialite-index-tables db_manager: do not display index tables when browsing SpatiaLite databases Sandro Santilli 2014-12-28 Do not assume mScheme is not null Fixes crashes with ENABLE_MODELTEST set at build time on opening options editor Salvatore Larosa 2014-12-28 [developers map] open link on external web browser instead of webview widget Merge: 68743f9 2aa2292 Nathan Woodrow 2014-12-27 Merge pull request #1634 from slarosa/usermap_about Adds Developers Map in About dialog Salvatore Larosa 2014-12-24 [developers map] add to popup whether developer is committer Sandro Santilli 2014-12-24 Disable support for canvas rotation by default Rotation support can be enabled at runtime exporting the QGIS_ENABLE_CANVAS_ROTATION variable (set to any value) Sandro Santilli 2014-12-24 Reset rotation on new project Closes http://hub.qgis.org/issues/11832 Anatoliy Golubev 2014-12-24 Change Q_WS_X11 to Q_OS_UNIX for Qt5 compatibility Merge: 32079ed 2efda5d mhugent 2014-12-23 Merge pull request #1310 from manisandro/adjust_crs_drop_from_browser Try to use the project CRS when adding a layer from the browser Sandro Santilli 2014-12-23 Fix LayerTreeModel use of beginInsertRows with embedded legends See http://hub.qgis.org/issues/11905 Sandro Mani 2014-05-24 Add python bindings for added methods Sandro Mani 2014-05-16 Try to use the project CRS and last selected image format when adding a layer from the browser Anatoliy Golubev 2014-12-23 Q_WS_* macros removed from Qt5, to determine platform use Q_OS_* macroses which exists in Qt4 and Qt5 Larry Shaffer 2014-12-22 Fix CMake policy warnings/changes introduced in 3.0.0 and higher Sandro Santilli 2014-12-22 Add support for contextual WMS legend graphics (hub #11859) Developed with funding from Regione Toscana SITA (CIG: Z410C90D94) volaya 2014-12-22 [processing] fixed split vector layer algorithm volaya 2014-12-22 [processing] update of lidar algorithms Provided by Martin Isenburg volaya 2014-12-22 [processing] fixed handling of file parameters in modeler Sandro Santilli 2014-12-22 Remove obsoleted reference to QgsRasterLayer::legendPixmap() See http://lists.osgeo.org/pipermail/qgis-developer/2014-December/036144.html Juergen E. Fischer 2014-12-22 fix doxygen warning Salvatore Larosa 2014-12-21 switch to the first tab in about dialog Salvatore Larosa 2014-12-21 [developers map] change tilelayer to openstreetmap Salvatore Larosa 2014-10-18 Add Developers Map in About dialog Juergen E. Fischer 2014-12-21 debian packaging update Merge: f3bcaf4 0e4b7e6 Martin Dobias 2014-12-21 Merge pull request #1734 from strk/zoom-by-wheel-glitch2 Fix zoomwheel regression (temporary hack) Merge: 07182b6 c4c36dd Nathan Woodrow 2014-12-21 Merge pull request #1706 from slarosa/share_bookmarks Allows to import/export bookmarks to XML file Merge: df06057 729bdec Nathan Woodrow 2014-12-21 Merge pull request #1738 from mbernasocchi/emit-saved-as added layerSavedAs signal Merge: 099e0b9 06c6ca0 Nathan Woodrow 2014-12-21 Merge pull request #1741 from Gustry/master [DB Manager] Allow execution of the selected text in the SQL window Merge: 028fd04 09400d1 Nathan Woodrow 2014-12-21 Merge pull request #1742 from anitagraser/patch-6 small grammar fix Anita Graser 2014-12-21 small grammar fix Matthias Kuhn 2014-12-21 More const-correctness for QgsGeometry Werner Macho 2014-12-21 give dialog a correct name Signed-off-by: Werner Macho Sandro Santilli 2014-12-16 Initialize all members, to reduce misleading valgrind reports Etienne Trimaille 2014-12-19 allow execution of the selected text in the SQL window Sandro Santilli 2014-12-19 Make existing ModelTest users use the new ENABLE_MODELTEST define Sandro Santilli 2014-12-19 Fix flags for invalid LayerTreeModel index .. bug reported by ModelTester Sandro Santilli 2014-12-19 Add support for testing LayerTreeModel from the app Sandro Santilli 2014-12-19 Add ENABLE_MODELTEST cmake variable/define, default to false Merge: 984324b e4a8fd8 Tom Kralidis 2014-12-19 Merge pull request #1740 from geopython/MetaSearch-core-merge-no-tests merge MetaSearch into QGIS core Tom Kralidis 2014-12-19 remove 18n not required for core plugins Matthias Kuhn 2014-12-17 Print link to cdash on travis Juergen E. Fischer 2014-12-18 annotation items: save coordinates using qgsDoubleToString instead of QString::number (fixes #11883) Alexander Bruy 2014-12-18 [processing] fix extent selection in batch mode (fix #11878) Alexander Bruy 2014-12-18 [processing] fix VectorWriter class (fix #11875) Alexander Bruy 2014-12-18 [processing] fix column autofill in batch mode (fix #11876) Alexander Bruy 2014-12-18 [processing] enlarge column width in batch processing GUI (fix #11879) Denis Rouzaud 2014-12-18 [fix #11872] do not call activateLayerRelatedAction after selection change if layer is not current layer Tom Kralidis 2014-12-17 merge MetaSearch into QGIS core Juergen E. Fischer 2014-12-17 oracle provider: fix evaluation of default values Sandro Santilli 2014-12-17 Update comment to match with code Nyall Dawson 2014-12-16 Improve filtering by schema for postgres connections in browser Results in much faster display and refresh of postgres tables Also: - ensure browser correctly respects postgres connection settings - add schema comment tooltip and refresh context menu item - make postgres connections less noisy in debug logs Marco Bernasocchi 2014-12-16 connect the app's signal to the interface's, to re-emit it from the interface. Marco Bernasocchi 2014-11-28 added layerSavedAs signal Radim Blazek 2014-12-16 QgsMimeDataUtils::Uri fixed crash on empty data Radim Blazek 2014-12-16 browser items moveToThread() also children Juergen E. Fischer 2014-12-16 dxf export: fix display of check states on upper levels volaya 2014-12-16 [processing] indentation fix volaya 2014-12-16 [processing] fixed handling of source strings in ogr algorithms Radim Blazek 2014-12-16 browser items parent (moving to thread) fix (crash when dragging postgres layer) Merge: e7dcd48 8afbe83 alexbruy 2014-12-16 Merge pull request #1737 from gioman/fix_gdal_rasterize fix gdal rasterize when using the -ts parameter Radim Blazek 2014-12-15 autorefresh browser dirs using system notification Giovanni Manghi 2014-12-15 fix gdal rasterize when using the -ts parameter Sandro Santilli 2014-12-15 Initialize pointer members, fix typo Radim Blazek 2014-12-15 safely delete browser items if createChildren() is running in thread Merge: f79dbcd 368fc67 Salvatore Larosa 2014-12-15 Merge pull request #1724 from slarosa/dd_wrapword [labeling] allows data defined to align multiline when wordwrap function is used as expression (fix #11805) Radim Blazek 2014-12-15 browser restore state fix Juergen E. Fischer 2014-12-15 dxf export: add method to update model Juergen E. Fischer 2014-12-11 dxf export: only use palette only for fully opaque colors Landry Breuil 2014-12-11 Fix build failure with gcc < 4.4 (bug #10762) Merge: fc00baf dbc801f Denis Rouzaud 2014-12-15 Merge pull request #1736 from mbernasocchi/QgsMessageBar-SUCCESS added QgsMessageBar::SUCCESS Marco Bernasocchi 2014-12-15 update success icon Marco Bernasocchi 2014-12-14 added QgsMessageBar::SUCCESS Salvatore Larosa 2014-12-08 [labeling] allows data defined to align multiline when wordwrap function is used as expression (fix #11805) Nyall Dawson 2014-12-14 Fix use of uninitialized value Nyall Dawson 2014-12-14 Fix use of uninitialized values when no ellipsoid set (fix #11848) Sandro Santilli 2014-12-13 Further drop now-unused code added with map rotation support Also add some documenting comments Sandro Santilli 2014-12-13 Drop special handling of rotation from MapCanvasMap::paint Stop assuming absence of rotation from MapCanvasItem::setRect, but rather assume that the passed rectangle purely encodes origin and size by only looking at upperLeft corner (xmin,ymax) and width/height of it, scaled by current map resolution. Makes the code simpler (maybe) and still fixes the regression. Also fixes glitches on zoom while map is rotated. Makes glitches on rotation worst, but again that's not a real regression. Sandro Santilli 2014-12-13 Simplify the change by not modifing interfaces .. I've found a link from gsMapCanvasMap and the QgsMapToPixel class Sandro Santilli 2014-12-13 Add rotation member to QgsMapCanvasMap, use for handling paint event Fixes the regression with pre-rendering user feedback for non-rotated maps. The glitch is still there for rotated maps but that's not a regression. See http://hub.qgis.org/issues/11811 Nathan Woodrow 2014-12-12 Add lazy evaluation support to expression functions Add if(cond, true, false) function using lazy evaluation feature Sandro Santilli 2014-12-12 Revert "Fix glitch on mouse-wheel zoom event" This reverts commit 40e0d78b42474c698cc66e549bfb18d9867167b2. Fixed the mouse wheel zoom regression but it broke proper rendering of rotated maps... Radim Blazek 2014-12-12 ziplayertest fix Sandro Santilli 2014-12-12 Fix glitch on mouse-wheel zoom event See http://hub.qgis.org/issues/11811 Denis Rouzaud 2014-12-12 expression: more comments and test to avoid differences between operators declaration and text values Radim Blazek 2014-12-12 populating browser icons in threads moved to QgsDataItem Sandro Santilli 2014-12-10 Consider map rotation in rendering of horizontal and parallel labels See http://hub.qgis.org/issues/11814 NOTE: the map rotation should likely be considered at LabelPlacement configuration rather than at rendering time Raises pixel mismatch tolerance for background labels tests Sandro Santilli 2014-12-12 Tweak tolerances for CanvasPoint and ComposerPdfPoint PAL tests .. to succeed on Ubuntu 14.04.1 LTS Denis Rouzaud 2014-12-12 followup 232aaaca66114e69b9ac2b201c65a26e7379f475 add missing text definition for integer division Nyall Dawson 2014-12-12 Add missing const to equality operator Nyall Dawson 2014-12-12 Temporarily disable atlas tests for travis Alexander Bruy 2014-12-11 improve layout in add attribute dialog Juergen E. Fischer 2014-12-10 oracle provider: don't reject (none no)geometry queries on tables without geometry (fixes #11843) Denis Rouzaud 2014-12-11 do not make an unecessary copy Denis Rouzaud 2014-12-11 [Fix #11841] Revert "Fix calculation of atlas map extent when set to fixed scale mode" This reverts commit b106f8225324237175aac741ede9eb5d3268edcd and fixes the setting of the atlas feature in composer. According to Nyall original commit b106f8225324237175aac741ede9eb5d3268edcd was introduced to fix a test. He will look to fix the test, but in the mean time we rather need working features rather than passing tests. One might wants to disable the test? Alexander Bruy 2014-12-11 [processing] fix exception raising (fix #11842) Matthias Kuhn 2014-12-11 Remove unneeded private method and code cleanup Matthias Kuhn 2014-12-11 Render incremental rendering image at proper location The old behavior was to render it at the currently visibleExtent based on the map canvas. The job may however have been scheduled for a different extent and therefore rendered at an improper location. Alexander Bruy 2014-12-11 [processing] fix wrong behavior in Join by location alg (fix #11736) Alexander Bruy 2014-12-11 [processing] fix rows addition in batch processing interface Denis Rouzaud 2014-12-11 remove warnings Nyall Dawson 2014-12-11 Fix incorrect size of markers with data defined name Matthias Kuhn 2014-12-10 iface.getFeatureDialog creates an "add" dialog for an invalid feature Denis Rouzaud 2014-12-10 advanced digitizing tools fixes part 2 * action in toolbar activate/disable the tools instead of showing/hiding the dock * do not filter event if tools are disabled * disable construction mode if tools are disabled * continue renaming cad to advanced digitiing tools Nyall Dawson 2014-12-10 Flip rotation spin box to QgsDoubleSpinBox Fix some other small spin box related ux improvements (fix #11833) Nyall Dawson 2014-12-10 Fix warning Nyall Dawson 2014-12-10 Add methods to QgsDataDefined for reading and writing to XML Denis Rouzaud 2014-12-10 fixes for advanced digitizing tools do not clear intermediate points when digitizing points in construction mode increase maximum height of dock widget when tools are disabled Sandro Santilli 2014-12-09 Const-correct QgsMapToPixel::showParameters Sandro Santilli 2014-12-09 Test rotation API in QgsMapPixel unit test Sandro Santilli 2014-12-09 Set all QgsMapToPixel parameters at once from QgsMapSettings Sandro Santilli 2014-12-09 Refactor QgsMapToPixel to only build matrix on parameter change Also add deprecation notices and provide full-parameters constructor Sandro Santilli 2014-12-09 Add unit test for QgsMapToPixel (legacy only for now) Merge: 2b1b79d d39a854 Denis Rouzaud 2014-12-09 Merge pull request #1624 from 3nids/cadtool_single Advanced digitizing tools (aka CAD tools) Sandro Santilli 2014-12-09 Expose QgsMapCanvas rotation and centering API to python Juergen E. Fischer 2014-12-09 debian packaging update (merge and squash PR#1725) Sandro Santilli 2014-12-09 Export QgsMapSettings rotation API to python Sandro Santilli 2014-12-09 Make toCanvasCoordinate(QRect) method private in QgsMapCanvasItem I added this for rotation support but the interface is probably not something any external code should rely upon. Sandro Santilli 2014-12-07 Add note about QgsMapCanvas::rotation() being added in 2.8 Nyall Dawson 2014-12-09 Ensure all items are deleted from TestQgsComposerTableV2 Merge: 7ca7239 a5dbb66 Paolo Cavallini 2014-12-09 Merge pull request #1517 from imincik/dbmanager_icons dbmanager: rotating layer import and export icons to more intuitive sense Merge: 28c3443 232aaac Nyall Dawson 2014-12-09 Merge pull request #1721 from nyalldawson/integer_divide [expressions] Make int/int return double results Salvatore Larosa 2014-11-28 Allows to import/export bookmarks to XML file Juergen E. Fischer 2014-12-08 indentation update Juergen E. Fischer 2014-12-08 dxf export: * export layers in reversed rendering order * use checkboxes for layer selection * support for layers selection by visibility preset * improve selection of layer attribute * show busy cursor while exporting * fix duplicate end of entities section Merge: 535661d da17656 alexbruy 2014-12-08 Merge pull request #1719 from bstroebl/splitLines [processing] [feature] split lines with lines Bernhard Ströbl 2014-12-08 Log error to ProcessingLog borys 2014-12-08 [gui] Fix qgsexpressionbuilder layout borys 2014-12-08 [gui] Fix fieldcalculator layout Sandro Santilli 2014-11-20 Add support for map rotation (hub #9330) Includes widget to show and set map rotation. Handle rotation in vector and raster renderers. Ensure correct behavior of panning and zooming actions. Drop compile-time defines for ARM and ANDROID, leaving only the qreal based function to transform in place. Update expected test results after eye comparison. Alexander Bruy 2014-12-07 remove debug code Alexander Bruy 2014-12-07 [processing] load documentation from online QGIS User Guide Merge: 759a148 c522112 alexbruy 2014-12-07 Merge pull request #1720 from neteler/patch-6 [processing] Update Grass7Algorithm.py Nyall Dawson 2014-12-06 Flip all labelling spin boxes to QgsSpinBox/QgsDoubleSpinBox Nyall Dawson 2014-12-06 [expressions] Make int/int return double results. Also add a new "//" operator to perform integer division. (fix #5153) Nyall Dawson 2014-12-06 Flip remaining symbology spinboxes to QgsDoubleSpinBox Nyall Dawson 2014-12-05 Also evaluate expressions entered in QgsSpinBox and flip all composer spin boxes to QgsSpinBox (refs #10544) Nyall Dawson 2014-12-05 Flip all composer double spin boxes to QgsDoubleSpin (refs #10544) Add clear buttons to applicable properties. Nyall Dawson 2014-12-04 [FEATURE] Evaluate expressions entered in QgsDoubleSpinBox Allows entry of QGIS expressions into the spin box. The expression is evaluated on enter or loss of focus and then discarded. (refs #10544) Nyall Dawson 2014-12-05 Clean up QgsMapLayer scale based visibility api Merge: 0fa40a6 a7de4da mhugent 2014-12-05 Merge pull request #1715 from rldhont/server_wms_getcapabilities_compliance [QGIS-Server] FIX 10489 QGIS Server getcapabilites response is not WMS c... Markus Neteler 2014-12-04 Update Grass7Algorithm.py GRASS GIS 7 update: dsn -> input|output as per http://trac.osgeo.org/grass/browser/grass/trunk/lib/gis/renamed_options rldhont 2014-12-04 [QGIS-Server] Clean GetCapabilities Remove GetPrint request and ComposerTemplates from GetCapabilities for a better interoperability rldhont 2014-12-01 [QGIS-Server] FIX 10489 QGIS Server getcapabilites response is not WMS compliant To be fully compliant with WMS 1.3.0 standard, I propose to add : * SLD namespace for GetLegendGraphic element * schemaExtension.xsd distributed with QGIS-Server for GetStyles and GetPrint * GetSchemaExtension to retrieve schemaExtension.xsd like MapServer The solution was inspired by http://demo.mapserver.org/cgi-bin/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities And the standard description Styled Layer Descriptor profile of the Web Map Service Implementation Specification http://portal.opengeospatial.org/files/?artifact_id=22364 Bernhard Ströbl 2014-12-04 [processing] [feature] split lines with lines Nyall Dawson 2014-12-04 Change some spin boxes in symbology to QgsDoubleSpinBox Adds the handy 'clear' buttons to these spin boxes, such as offsets and rotation. Also standardises the display of some widgets in symbology. Denis Rouzaud 2014-12-04 define the special text directly with the clear value Nyall Dawson 2014-12-04 Correctly set band number for pseudocolor renderer widget Previously the band was always reset to the first band when opening the raster layer properties. Nyall Dawson 2014-09-24 [FEATURE] Port new memory layer plugin to core Nyall Dawson 2014-12-01 Add support for generating coverage statistics for tests Build option ENABLE_COVERAGE must be set. There's also a secondary option GENERATE_COVERAGE_DOCS which requires lcov and will generate html docs of unit test coverage. To generate coverage, first enable the cmake options, then build QGIS. From the build directory, run "make qgis_coverage". You can also add command line arguments to "make qgis_coverage" which are forwarded on to ctest. This allows for skipping failing tests which prevent generation of coverage docs. This is done by adding the command line argument CMD_ARGS= to the "make qgis_coverage" command. Eg, make qgis_coverage CMD_ARGS="-E \"PalLabeling|LocalServer|AppStartup\" will skip tests which match the listed expressions. Denis Rouzaud 2014-10-03 advanced digitizing tools this integrates advanced digitizing tools aka CAD tools in QGIS application and basically a port of CADinput plugin * new class QgsMapToolAdvancedDigitizing shall be subsclassed if adv. digit. tools could be used in a map tool * QgsAdvancedDigitizingDockWidget handles the interaction with the user and also perform the constraints (filters events) * QgsAdvancedDigitizingCanvasItem paints construction lines on the canvas Juergen E. Fischer 2014-12-03 db_manager: fix error message on table vacuum volaya 2014-12-03 [processing] show layers in alphabetical order in dropdown menu Denis Rouzaud 2014-12-03 allow defining custom clear value for Qgs(Double)SpinBox Salvatore Larosa 2014-08-28 [custom crs ui] adds scrollarea to dialog and done some minor changes Salvatore Larosa 2014-08-28 [custom crs ui] adds collapsible groupbox Nyall Dawson 2014-12-03 Add some atlas reference images for precise (part 2) Nyall Dawson 2014-12-03 Add some atlas reference images for precise (part 1) Matthias Kuhn 2014-12-03 CTest retry submit to dashboard when failed Nyall Dawson 2014-12-03 Try increasing color tolerance for composer tests slightly Nyall Dawson 2014-12-03 Fix some compiler warnings Martin Dobias 2014-12-03 API: Added support for bulk loading of spatial index This is much faster way of initializing a spatial index. From python it is as simple as >>> index = QgsSpatialIndex( layer.getFeatures() ) From a simple test with 50K points in a memory layer: - bulk loading ~ 100 ms - inserting features ~ 600 ms The index tree should be in theory also better constructed and may result in faster lookups. Matthias Kuhn 2014-12-03 Revert "Let travis compile debug binaries so ASSERTS are also considered" This reverts commit b1de41ca49d44eb5068d60c29f7960d363aadd75. Led to unstable test results for no reason See https://travis-ci.org/qgis/QGIS/builds/42811273 Different results for the very same commit: http://dash.orfeo-toolbox.org/buildSummary.php?buildid=165433 http://dash.orfeo-toolbox.org/buildSummary.php?buildid=165427 Merge: b1de41c f94b800 Matthias Kuhn 2014-12-03 Merge pull request #1482 from serialc/patch-1 Checkbox for sub index was missing tooltip text Matthias Kuhn 2014-12-02 Let travis compile debug binaries so ASSERTS are also considered Matthias Kuhn 2014-12-02 MapTip: ParagraphSeparator to \n to support multiline expressions This allows to properly use multiline expressions in the expression builder when the map tip HTML definition contains newlines (which are formatted as ParagraphSeparators in QTextCursor) See http://qt-project.org/doc/qt-4.8/qtextcursor.html#selectedText Merge: d034a66 81895f9 Jürgen Fischer 2014-12-02 Merge pull request #1717 from manisandro/int_ogrwkbgeometrytype Store result of OGR_FD_GetGeomType into a OGRwkbGeometryType, not in an int, ... Sandro Mani 2014-12-02 Store result of OGR_FD_GetGeomType into a QGis::WkbType, not in an int, which causes an integer overflow Salvatore Larosa 2014-12-02 [labeling] use QgsColorButtonV2 for label property dialog Salvatore Larosa 2014-12-02 [codeeditor] set case insensitive for SQL Lexer: followup #1686 Nyall Dawson 2014-12-02 Fix calculation of smart breaks when html has transparent background Should finally fix troublesome composer html tests Merge: 974511f 29d0166 Matthias Kuhn 2014-12-01 Merge pull request #1714 from manisandro/intsafe_doublesafe Fix isIntSafe and isDoubleSafe not considering some QVariant types Sandro Mani 2014-12-01 Fix isIntSafe and isDoubleSafe not considering QVariant::UInt, QVariant::LongLong, QVariant::ULongLong (Funded by Sourcepole) Merge: 6da0058 cb32d31 alexbruy 2014-12-01 Merge pull request #1710 from mach0/master fix typo in processing description Nathan Woodrow 2014-12-01 Swap expression and custom function box in expression widget Nyall Dawson 2014-12-01 Try to fix some more intermittent composer tests Nyall Dawson 2014-12-01 Add some missing exitQgis() calls to unit tests Also ensure that compositions are deleted before exiting Qgis during tests. Radim Blazek 2014-12-01 Fixed crash in browser startup on Mac Nyall Dawson 2014-12-01 Hopefully fix intermittently failing composer html test Nathan Woodrow 2014-12-01 Layout expression widget as horizontal. Fits better on screens and means less dialog resizing. Werner Macho 2014-11-30 fix typo in processing description Signed-off-by: Werner Macho Radim Blazek 2014-11-30 Revert "Followup to d897aa5; fix crash on Mac" This reverts commit 9837f430b313eceeee246f966fc60115df3ee722. Radim Blazek 2014-11-30 QgsBrowserWatcher made QFutureWatcher descendant Juergen E. Fischer 2014-11-30 debian packaging fix Alexander Bruy 2014-11-30 [processing] fix GRASS output parser (fix #10660) Alexander Bruy 2014-11-30 [processing] fix Convex hull algorithm (fix #11725) Matthias Kuhn 2014-11-27 Change unary minus test --1 to -(-1) See http://lists.osgeo.org/pipermail/qgis-developer/2014-November/035835.html Matthias Kuhn 2014-11-26 Add line comments to QgsExpression Delimited by double-minus and EOL/EOF Example: $id -- This is the feature id Matthias Kuhn 2014-11-26 QgsExpression: some const fixes Matthias Kuhn 2014-11-26 Preserve expression formatting Matthias Kuhn 2014-11-26 Add block comment tests Matthias Kuhn 2014-11-24 [FEATURE] Add comment functionality to QgsExpression Juergen E. Fischer 2014-11-30 indentation update [ci skip] Nathan Woodrow 2014-11-30 [Feature] Allow custom expression functions in expression widget Juergen E. Fischer 2014-11-30 update scripts/fix_allows_to.sh and run it Juergen E. Fischer 2014-11-29 travis: irc notification if build status changes Nathan Woodrow 2014-11-30 [Expression] Don't unregister function if not registering Nathan Woodrow 2014-11-29 Remove qgsfunction from qgis.utils. Import from qgis.core so we don't break API Nathan Woodrow 2014-11-29 Reform qgis.uitls file Alexander Bruy 2014-11-29 [processing] use extent instead of width, height and center in Create Grid algorithm (fix #11481) Nathan Woodrow 2014-11-29 Move qgsfunction to qgis.core. Add new register_function method when not using decorator Wrap function call in try block to catch and report errors Nyall Dawson 2014-11-29 Add some test images and tweak test tolerances for utopic Nyall Dawson 2014-11-29 [composer] Make html tests text-free Minimises cross platform rendering differences Juergen E. Fischer 2014-11-28 debian packaging update for python server plugins Juergen E. Fischer 2014-11-28 * fix server plugin build on windows * move src/mapserver to src/server (IMHO better name and in sync with python/server) * rename cmake option WITH_MAPSERVER to WITH_SERVER * rename define MAPSERVER_HAVE_PYTHON_PLUGINS to HAVE_SERVER_PYTHON_PLUGINS Juergen E. Fischer 2014-11-28 don't build server plugins if server isn't built volaya 2014-11-28 [proccesing] added compiled ui files This will make it easier to test new versions of processing for some users volaya 2014-11-28 [processing] fixed handling of parent algorihtms in modeler Fixes #11750 Juergen E. Fischer 2014-11-28 don't build server plugins if server isn't built Marcel Dancak 2014-11-28 db_manager: do not display index tables when browsing SpatiaLite databases Nyall Dawson 2014-11-28 Fix map unit scale for simple line width not restored (fix #11181) Nyall Dawson 2014-11-28 Fix size scaling ignored for line symbology (fix #11751) Merge: 9491851 a790f7f mhugent 2014-11-27 Merge pull request #1701 from elpaso/serverpython2 [feature] Serverpython2 elpaso 2014-11-27 Fix double QT4_WRAP_CPP Funded by ItOpen - http://www.itopen.it Nyall Dawson 2014-11-27 [composer] Fix refresh HTML item always using cached copy (fix #11747) elpaso 2014-11-26 Removed SIP Transfer Funded by ItOpen - http://www.itopen.it elpaso 2014-11-26 body() now return QByteArray Funded by ItOpen - http://www.itopen.it elpaso 2014-11-26 body() now return QByteArray Funded by ItOpen - http://www.itopen.it elpaso 2014-11-26 Enabled by default and removed linked qgispython Funded by ItOpen - http://www.itopen.it elpaso 2014-11-16 Mergeable on master Funded by ItOpen - http://www.itopen.it elpaso 2014-11-16 Removed trailing spaces elpaso 2014-11-16 Fixed compilation without python Funded by ItOpen - http://www.itopen.it elpaso 2014-11-16 Fixed header comments elpaso 2014-11-06 Comment typo Funded by ItOpen - http://www.itopen.it elpaso 2014-11-05 Astyle formatting elpaso 2014-11-05 Renamed plugin hook responseReady to responseComplete added sendResponse hook and passed pluginFilters to request handler elpaso 2014-11-05 Working implementation Funded by ItOpen - http://www.itopen.it elpaso 2014-10-26 Set exception moved to public elpaso 2014-10-26 Allow body clear elpaso 2014-10-10 Expose response body and infoFormat elpaso 2014-10-10 Added comments for bindings. elpaso 2014-10-10 Fixes wrong number of bytes logged when debug activated. Funded by ItOpen - QGIS Borg - Resistance Is Futile elpaso 2014-10-10 Comments added elpaso 2014-10-10 ASTYLE Formatted elpaso 2014-10-09 Added getEnv to plugins API elpaso 2014-10-09 Added serve python plugins elpaso 2014-10-09 Added serve python plugins elpaso 2014-10-09 Added python server plugins elpaso 2014-10-09 Added define for conditional server plugins compilation elpaso 2014-10-09 Added env var for custom plugin directory elpaso 2014-10-09 Add plugin files and define elpaso 2014-10-09 Removed python plugins define elpaso 2014-10-09 Http request/response handler refactoring. HTTP Request handler now manages HTTP request and response. * added methods to manage HTTP response headers * added methods to manage response body * added accessors API methods for request parameters and response headers and body Matthias Kuhn 2014-11-26 Fix Qt5 build Alexander Bruy 2014-11-26 [processing] fix parameter names in TauDEM algorithms Alexander Bruy 2014-11-25 [processing] fix help file generator Tom Kralidis 2014-11-25 Delete utils.py Tom Kralidis 2014-11-25 Delete __init__.py Matthias Kuhn 2014-11-25 Don't enforce singleton behavior with Q_ASSERT Fix #11726 Sandro Santilli 2014-11-25 Remove useless statement Merge: 9cf3e7f 03faafa alexbruy 2014-11-25 Merge pull request #1698 from jdugge/MergetoolEmptyGeometries Make the Merge shapefiles tool correctly handle features without geometries Nyall Dawson 2014-11-25 Fix slight offset in heatmap renderer Juergen E. Fischer 2014-11-25 fix script permissions Juergen E. Fischer 2014-11-25 fix windows build Juergen E. Fischer 2014-11-24 translation script update: * TRANSLATORS stats also needs lupdate run * support numerus forms in python translation strings Tom Kralidis 2014-11-24 backport adjust pluralization backport https://github.com/geopython/MetaSearch/commit/83b88f67abb679501a238e4ab4ee344c3cdbf55d Nyall Dawson 2014-11-25 Regenerate incorrect test images and reenable atlas tests for travis Nyall Dawson 2014-11-25 Fix calculation of atlas map extent when set to fixed scale mode Credit to m-kuhn for discovering the fix Juergen E. Fischer 2014-11-24 INSTALL: update required flex version to 2.5.6 and links to windows version Matthias Kuhn 2014-11-24 Streamline singleton behavior in a class QgsSingleton, take two delete provider registry after map layer registry to avoid crashes Matthias Kuhn 2014-11-24 Revert "Streamline singleton behavior in a class QgsSingleton" This reverts commit e1f6edbd55122e6d2206daf4a0b55e3e9207cf80 as it breaks tests Matthias Kuhn 2014-11-24 Streamline singleton behavior in a class QgsSingleton If a singleton is unused in an application, it's not going to be created just to be deleted instantanously on app exit. QgsCoordinateTransformCache will also be cleaned on exit. Nyall Dawson 2014-11-24 [symbology] Add method for retrieving symbol layers as list Nyall Dawson 2014-11-24 Fix incorrect warning dialog appearing when creating new ramp Previously a "not available" warning dialog would appear when attempting to create a new color ramp using the categorised renderer. Nyall Dawson 2014-11-24 [FEATURE] Support drag and drop of python scripts onto QGIS window Nyall Dawson 2014-11-24 Fix grammar Nyall Dawson 2014-11-24 Fix potential crash in random color ramp Badly choosen values (eg max < min) could cause a crash. Now, values are sanitised prior to generating the ramp colors. Nyall Dawson 2014-11-24 Add toolbar icon and shortcut for python console Nathan Woodrow 2014-11-24 Fix #10727 - Add update selected button to field calc bar Matthias Kuhn 2014-11-24 Remove help button from symbollevelv2 dialog There is no help text available for this dialog and the button does nothing at all at the moment Matthias Kuhn 2014-11-24 Fix crash on exit: Close all cached sqlite connections Gillian Milani 2014-11-18 remove repaint when layer is not modified Gillian Milani 2014-11-14 clean code style with prepare-commit.sh Gillian Milani 2014-11-12 add a save button for subform (1-n relations) Merge: 484e162 e7a8994 Matthias Kuhn 2014-11-23 Merge pull request #1697 from mbernasocchi/patch-1 deactivate qgis_wcsprovidertest on travis It depends on an unreliable external service and therefore produces false alarms. volaya 2014-11-23 [processing] fixed help in models Nyall Dawson 2014-11-23 Add support for weighting points by expression to heatmap renderer Juernjakob Dugge 2014-11-23 Make the "Merge shapefiles" tool correctly handle features without geometries. Juergen E. Fischer 2014-11-22 getProjectSettings response: return 'maptip' instead of tooltip template as displayField layer attribute Juergen E. Fischer 2014-11-22 better fix for b99ab0a Juergen E. Fischer 2014-11-22 update INSTALL (fixes #11715) - remove outdate "practical case" section - include pointer to GDAL formats for build instructions for proprietary formats in overview - cosmetics Juergen E. Fischer 2014-11-22 restore setting of scene to map canvas items (followup 78c51954) Juergen E. Fischer 2014-11-22 travis: disable qgis_wcsprovidertest due to unreliable server Nathan Woodrow 2014-11-22 Fix #9604 - New icon for delete selected features Alexander Bruy 2014-11-22 [processing] redirect output from command line tools to Info tab (fix #5618) Alexander Bruy 2014-11-22 [processing] fix Field calculator algorthm (fix #11488) Juergen E. Fischer 2014-11-22 fix windows build Nyall Dawson 2014-11-22 Add an invert checkbox for heatmap renderer Nyall Dawson 2014-11-22 [FEATURE] Live heatmap renderer Allows for live, dynamic heatmaps for point layers. Options include specifying heatmap radius in pixels, mm or map units, choice of color ramp, and a slider for selecting a tradeoff between render speed and quality. Werner Macho 2014-11-21 fix typo in tx config Signed-off-by: Werner Macho Werner Macho 2014-11-21 adding new translations files Signed-off-by: Werner Macho Werner Macho 2014-11-21 update if txconfig for new translations Larry Shaffer 2014-11-21 Followup to 2261999; fix import of QgsCodeEditorSQL for DB Manager Marco Bernasocchi 2014-11-21 deactivate qgis_wcsprovidertest Disabling on behalf of @m-kuhn since the wcs server used in qgis_wcsprovidertest is not really reliable. Often the test fails due to server problem. We should use a more solid server or make the test handle connections problems volaya 2014-11-21 [processing] patch for issues with delimited text layers Still won't work when using delimited text layers in parameters of type MultipleInput Matthias Kuhn 2014-11-21 dualview: autoselect first item volaya 2014-11-21 [processing] Added missing field type to vector tools volaya 2014-11-21 [processing] Add snippet collection to script editor The list of snippets is still very short, but the snippet management logic is added in this commit volaya 2014-11-21 [processing] better output logging for gdal/org calls Fixes #11501 volaya 2014-11-21 [processing] clean unused line Marco Hugentobler 2014-11-21 Remove code no longer needed in QgsConfigCache Matthias Kuhn 2014-11-21 Return non-zero status from cmake script when build or test fails Matthias Kuhn 2014-11-21 Formatting of tests Matthias Kuhn 2014-11-21 Fix some race condition segfaults of tests on exit Matthias Kuhn 2014-11-07 Add Qt5 support Giovanni Manghi 2014-11-05 [Processing] A new tool to import data in PostGIS based on ogr2ogr and a few other ogr related fixes Merge: 6c836f0 d663599 mhugent 2014-11-21 Merge pull request #1689 from rldhont/server_cache_project_config [QGIS-Server] Enhance config cache Juergen E. Fischer 2014-11-21 fix nightly build (followup a57066a48d) volaya 2014-11-21 [processing] remember last output folder in batch interface volaya 2014-11-21 [processing] better behaviour for fields calculator custom dialog volaya 2014-11-21 [processing] fixed fields calculator algorithm It's not a complete fix, as it just comments out a line that was causing a 'underlying C/C++ object was deleted' error Should revisit is later. For now, this allows the algorithm to run correctly and not crash qgis volaya 2014-11-21 [processing]removed unused code volaya 2014-11-21 [processing] fixed handling of tables in models Fixes #11694 volaya 2014-11-21 [processing] provide non-random default ordering of parameters in models Fixes #11702 Larry Shaffer 2014-11-20 Followup to d897aa5; fix crash on Mac Juergen E. Fischer 2014-11-21 sip sync Merge: afd32fd 631341b Nyall Dawson 2014-11-21 Merge pull request #1681 from nyalldawson/sort_api Sort members in api docs Radim Blazek 2014-11-20 browser restore favourites fix Radim Blazek 2014-11-20 browser remove favourite fix Radim Blazek 2014-11-20 browser favourites fix Merge: a57066a d80b660 Radim Blazek 2014-11-20 Merge pull request #1583 from slarosa/qdockwidget_browser [browser] small ui reworking for consistency Juergen E. Fischer 2014-11-20 * fix cppcheck warnings * some sip updates * [API] fix spelling QgsMultiRenderChecker::drawBackround * [API] fix spelling QgsSymbolLayerV2Utils::drawStippledBackround * [API] fix spelling QgsMapSettings::layerTransfrom Radim Blazek 2014-11-20 browser refresh and restore fixes and improvements rldhont 2014-11-19 Update cache Nyall Dawson 2014-11-20 Add hasDefaultValues method to QgsDataDefined, add some tests Juergen E. Fischer 2014-11-20 widgetParametersPanel.ui: fix header [ci skip] dassau 2014-11-19 update translation Nyall Dawson 2014-11-19 Boost coverage of raster fill unit tests Also add missing sip bindings for GUI widget Alexander Bruy 2014-11-19 [processing] repair non-working random extract algorithms (fix #11571) Alexander Bruy 2014-11-19 [processing] correctly handle editable and non-editable fixed tables (fix #11602) Alexander Bruy 2014-11-19 [processing] add open script action to script editor Alexander Bruy 2014-11-19 [processing] add hypsometric curves calculation algorithm Werner Macho 2014-11-19 more cleaning of redundant and same shortcuts Juergen E. Fischer 2014-11-19 fix warnings Merge: 256b265 c8ad99b Jürgen Fischer 2014-11-19 Merge pull request #1695 from nyalldawson/fix_api Fix incorrect cast to double in shapeburst fill header Nyall Dawson 2014-11-19 Fix incorrect cast to double in shapeburst fill header Matthias Kuhn 2014-11-19 Fix some warnings Merge: edd8d9b 0a5c3cc mhugent 2014-11-19 Merge pull request #1691 from m-kuhn/slv Enable PyQgsSymbolLayerV2 test. Followup 5957b0a Merge: d66c927 36869f0 Paolo Cavallini 2014-11-19 Merge pull request #1692 from neteler/patch-4 Delete r.average.txt Merge: 5215985 9c2a113 Paolo Cavallini 2014-11-19 Merge pull request #1693 from neteler/patch-5 Update and rename r.bilinear.txt to r.resamp.interp.txt Nyall Dawson 2014-11-17 [FEATURE] Raster image symbol fill type Allows for filling polygons with a tiled raster image. Options include (data defined) file name, opacity, image size (in pixels, mm or map units), coordinate mode (feature or view) and rotation. Markus Neteler 2014-11-18 Update and rename r.bilinear.txt to r.resamp.interp.txt r.bilinear: merged into r.resamp.interp, see http://trac.osgeo.org/grass/wiki/Grass7/NewFeatures#Renamedmodules Markus Neteler 2014-11-18 Delete r.average.txt Superseded by r.statistics, see http://trac.osgeo.org/grass/wiki/Grass7/NewFeatures#Removedmodules Matthias Kuhn 2014-11-18 Enable PyQgsSymbolLayerV2 test. Followup 5957b0a Matthias Kuhn 2014-11-18 Run build within ctest script and add some information for the dashboard Marco Hugentobler 2014-11-18 Hopefully fix sld test Merge: eef435e da91a9e volaya 2014-11-18 Merge pull request #1614 from radosuav/small_fixes Small fixes for Processing radosuav 2014-11-18 Revert "Fix translations in Processing.py" This reverts commit 81089a1fa258feb86a52db9bba1fd0708b5f70a7. Radim Blazek 2014-11-18 [GRASS] data item fix Matthias Kuhn 2014-11-18 Add tolerance to shapeburst test Fixes it on ubuntu trusty Nyall Dawson 2014-11-18 [composer] Fix overview tooltips (fix #11655) Merge: 1f41364 b2494fd alexbruy 2014-11-18 Merge pull request #1605 from ghtmtt/patch-1 Update geometricfigures.rst Matthias Kuhn 2014-11-18 Update link to qt homepage Alexander Bruy 2014-11-15 [processing] handle ints and floats in range parameter panel Alexander Bruy 2014-11-12 [processing] refactor batch processing dialog and update related parameters widgets Alexander Bruy 2014-11-12 [processing] refactor algortim dialog Now we have base class AlgorithmDialogBase for all algortims. Dialogs for algorithms and batch processes should be created by subclassing this base dialog and adding to it corresponding parameters panel. ParametersPanel for single algorthm already updated to this approach. Alexander Bruy 2014-11-09 [processing] update layer selector widget Alexander Bruy 2014-11-09 [processing] update fixed table widget and dialog Alexander Bruy 2014-11-08 [processing] fix typo Alexander Bruy 2014-11-08 [processing] rename number selector to keep consistency Alexander Bruy 2014-11-08 [processing] update range input widget Alexander Bruy 2014-11-08 [processing] don't override default selection mode in ui file Alexander Bruy 2014-11-06 [processing] update MultipleFileInputDialog Alexander Bruy 2014-11-06 [processing] remove MultipleFileInputPanel as it duplicates MultipleInputPanel homogenize UI in FileSelectionPanel and RenderinStylePanel, remove inused imports Alexander Bruy 2014-11-06 [processing] remove similar widgets (use generic one instead) Alexander Bruy 2014-10-04 [processing] update extent selection widget Alexander Bruy 2014-10-04 [processing] update projection selector widget Alexander Bruy 2014-10-04 [processing] replace two similar dialogs with generic one Alexander Bruy 2014-11-11 [processing] remove compiled ui files Alexander Bruy 2014-11-17 add shortcuts to some Processing actions Matthias Kuhn 2014-11-17 Fix CPack path to README.md Alexander Bruy 2014-11-17 homogenize icons related to managing project and global scale lists Matthias Kuhn 2014-11-17 More README to README.md And add travis build status Merge: 150aa53 ad88108 alexbruy 2014-11-17 Merge pull request #1686 from alexbruy/dbmanager-sqleditor switch DB Manager's SQL editor to QgsCodeEditorSQL Juergen E. Fischer 2014-11-17 add missing ts files (fixes #11662) Werner Macho 2014-11-16 [TRANSUP] some fixes and improvements for transifex including renamed and deleted ts files Signed-off-by: Werner Macho rldhont 2014-11-05 [QGIS-Server] Enhance config cache Add xmlDocument and server config in cache xmlDocument and server config will be opened once for every requested W*S Every requested W*S will point to the same server config and xmlDocument Martin Dobias 2014-11-15 Add note about QgsMapCanvas::refresh() behavior Merge: b28cc14 40c5ae4 Martin Dobias 2014-11-15 Merge remote-tracking branch 'rldhont/filter_legend_displacement_point2' Conflicts: src/core/qgsmaphittest.cpp Matthias Kuhn 2014-11-14 [travis] Do some steps in install step Matthias Kuhn 2014-11-14 [travis] Disable PyQgsPalLabelingServer tests for now Matthias Kuhn 2014-11-14 [travis] Disable SymbolLayerV2 test There is a pull request to properly fix the issue. When this PR is dealt with this test will be re-enabled. https://github.com/qgis/QGIS/pull/1672 Matthias Kuhn 2014-11-14 Fix atlas tests * Recreates composition for every test and therefore removes internal dependency * Reorders method calls to make the test pass * Disable the test until https://github.com/qgis/QGIS/pull/1688 Matthias Kuhn 2014-11-14 Exclude PyQgsPalLabelingCanvas test because of Segfault on test server It seems that there is still a thread running when QgsApplication exits. Error message: QThreadStorage: Thread 0x16e29f0 exited after QThreadStorage 6 destroyed Matthias Kuhn 2014-11-14 Disable geometry simplify check This test mixes different effects and is very unprecise in what it tests and what it expects as result. Matthias Kuhn 2014-11-14 Add QgsDartMeasurement Matthias Kuhn 2014-11-14 Switch QgsCompositionChecker to MultiRenderChecker Nyall Dawson 2014-11-14 Switch to RGB32 images for composition checker Nyall Dawson 2014-11-14 Use a non-transparent background for composition checker Fix composerhtml tests on precise Matthias Kuhn 2014-11-13 Cleanup atlas composition tests * Don't try to cache on 0-sized image * Use qDebug instead of qWarning Matthias Kuhn 2014-11-07 Fix shapeburst test Move to multirenderchecker Matthias Kuhn 2014-11-04 [unit tests] Make qgis_rendererstest pass Replace control image Matthias Kuhn 2014-11-13 Fix PalLabelingComposer test Switch to QgsMultiRenderChecker and add control images for Ubuntu precise where required. Matthias Kuhn 2014-11-07 Fix inverted polygon renderer test Matthias Kuhn 2014-11-12 [unit tests] Fix blend modes test * Switched to QgsMultiRenderChecker and added control images for precise * Add a minimal color tolerance for slight render inconsistencies Matthias Kuhn 2014-11-08 Compositionchecker: Default color tolerance of 1 Matthias Kuhn 2014-11-06 [unit tests] Add multirenderchecker The multirenderchecker allows to have several images, each with its own set of anomalies distributed in several subdirectories. With the help of multiple reference images, it is possible to apply a color tolerance to each of these Matthias Kuhn 2014-11-13 Add .travis.yml for automated testing Matthias Kuhn 2014-11-14 Initialize some uninitialized variables Alexander Bruy 2014-11-14 case insensitive autocompletion Radim Blazek 2014-11-14 avoid use of QIcon in data items in threads Juergen E. Fischer 2014-11-14 pull_ts.sh: verify lrelease is available Merge: d4f64d9 3e3f1fb Paolo Cavallini 2014-11-14 Merge pull request #1687 from gioman/master fixes r.watershed parameter description for GRASS 6.4 Juergen E. Fischer 2014-11-13 indentation update and typo fixes Giovanni Manghi 2014-11-13 fixes r.watershed parameter description for GRASS 6.4 Juergen E. Fischer 2014-11-13 prepare-commit.sh: fix script directory detection rldhont 2014-11-07 [FIXED] #11572 Filter Legend By Map Content doesn't maintain point displacement legend The fix from https://github.com/qgis/QGIS/pull/1673 has to be enhance to have something more generic. This fix add methods to QgsPointDisplacementRenderer: * capabilities * symbolForFeature * originalSymbolForFeature * symbolsForFeature * originalSymbolsForFeature * willRenderFeature Alexander Bruy 2014-11-13 switch DB Manager's SQL editor to QgsCodeEditorSQL Radim Blazek 2014-11-13 re-enabled init expand to last expanded in browser Merge: 9cb157a 4254d4e Nyall Dawson 2014-11-13 Merge pull request #1684 from manisandro/armbuild Add casts to double to fix compilation on ARM Juergen E. Fischer 2014-11-13 prepare-commit.sh: remove executable bit from source files and exit successfully if nothing modified Sandro Mani 2014-11-13 Add casts to double to fix compilation on ARM Juergen E. Fischer 2014-11-13 update debian dependencies in INSTALL (scripts/scandeps.pl run) Juergen E. Fischer 2014-11-12 fix source permissions Consider using 'git config core.filemode false' on Windows find . \( -name "*.cpp" -o -name "*.h" \) -perm /111 -exec chmod a-x {} \; Juergen E. Fischer 2014-11-12 i18n: script updates Juergen E. Fischer 2014-11-12 postgres provider: fix layer detection Radim Blazek 2014-11-12 expand browser items in threads Radim Blazek 2014-11-12 loading icon from qt-everywhere-opensource-src-4.6.3/demos/browser/data/loading.gif Juergen E. Fischer 2014-11-12 fix PyQgsAppStartup test on windows Juergen E. Fischer 2014-11-12 fix PyQgsLogger test (fixes b5f6d2ce, but also the failure on windows) Juergen E. Fischer 2014-11-12 fix tim dot linfiniti at com Juergen E. Fischer 2014-11-12 i18n: move to transifex * deprecate update_ts_files.sh * use pull_ts.sh to pull updates from transifex * use push_ts.sh to pull qgis_en.ts from transifex, update it and push it back Matthias Kuhn 2014-11-04 Fix qgis_legendrenderertest Changed control image that fails on every platform Juergen E. Fischer 2014-11-12 parse embedded project only once (speedups loading of multiple embedded layers from the same project) Juergen E. Fischer 2014-11-12 refactor QgsLogger and add duration and thread id Juergen E. Fischer 2014-11-11 fix german translations (fixes #11617) Juergen E. Fischer 2014-11-11 vector file writer: scan shape file geometries instead of just assuming multi geometry types (followup 528c4cacb, refs #10584, fixes #11542, fixes #11597) Nyall Dawson 2014-11-11 Sort members in api docs Matthias Kuhn 2014-11-07 Fix maprenderertest By introducing some color tolerance Radim Blazek 2014-11-10 use browser objectName in settings key to distinguish browser2 Radim Blazek 2014-11-10 use connection name in wms,wfs,wcs data item path instead of uri, group ows servers by connection name instead of uri Radim Blazek 2014-11-10 [GRASS] autorefresh vector layers Takayuki Mizutani 2014-11-09 fix Empty console Output on R under processing. refs #7643 Alexander Bruy 2014-11-08 fix regex for getting layer name Matthias Kuhn 2014-11-08 Fix occasional crash on exit because of statis network access manager see https://bugreports.qt-project.org/browse/QTBUG-25789 Juergen E. Fischer 2014-11-08 fix PyQgsVectorLayer test Matthias Kuhn 2014-11-05 Fix dual view test * References commit 51e01d6 * And issue #11529 Matthias Kuhn 2014-11-05 Fix expression test make sure the style file with the color ramp can be copied to the settings path Juergen E. Fischer 2014-11-07 debian packaging update (fixes for tests) Martin Dobias 2014-11-08 Revert "Doxygen: do not add "Definition at line N of XYZ.cpp" to each method" This reverts commit 7ee05afd366cebf3c8f44354067c34223346f835. Merge: 2417a82 b4824ab Paolo Cavallini 2014-11-07 Merge pull request #1678 from ghtmtt/patch-2 Update gridcalculator.rst ghtmtt 2014-11-07 Update gridcalculator.rst change **x** and **y** with **a** and **b** Alexander Bruy 2014-11-07 [processing] add method in OGR algorithms for getting layer name from source Radim Blazek 2014-11-07 browser last expanded better rldhont 2014-11-05 [FIXED] #11572 ilter Legend By Map Content doesn't maintain point displacement legend For point vector layer render with 'displacement point', when 'Filter Legend By Map Content' is activated, the legend is not rendered even if it has to be. It's due to QgsPointDisplacementRenderer that embedded the real renderer. The solution proposed in this patch is to get the embedded renderer for QgsPointDisplacementRenderer. Nyall Dawson 2014-11-07 [composer] Don't save hide bounding box setting between sessions In practice the workflow is better if this setting is only temporarily applied to a composer. Nyall Dawson 2014-11-05 [FEATURE][composer] Vertical descending direction for annotations This change adds a new descending vertical direction mode for map grid annotations. Previously only ascending text was supported for vertical annotations. Nyall Dawson 2014-11-05 [composer] Use intersection rather than clip for transformed grids Previous behaviour was to clip transformed grid lines to the visible map extent. This caused problems if a map item had no border (a solid line would be shown along the map extent), and also meant that reprojected lines which crossed out of the map extent and back in again did not have annotations or grid frame markings shown. Also implement an improved logic for detecting the map frame side for annotations. Radim Blazek 2014-11-06 remember browser last expanded item Radim Blazek 2014-11-06 GRASS: show layers non expandable Radim Blazek 2014-11-06 GRASS: points removed from topo in GRASS 7 Radim Blazek 2014-11-06 GRASS: fixed crash when opening vector without topo Radim Blazek 2014-11-06 add GRASS vector layers from browser with map + layer name Werner Macho 2014-11-06 [TRANSUP] preparing transition to transifex DEFAULT Compared translations manually with source and transifex and uploaded every translation with more strings in source to transifex. From now on only transifex will be pulled and only english source will be updated. Signed-off-by: Werner Macho Radim Blazek 2014-11-06 GRASS 7.1 fixes Martin Dobias 2014-11-04 Fix a crash in layer node after removal of layer from registry. A crash may occur when using custom layer tree in composer legend and layer from that tree is removed from registry. This would happen only in some code paths. Nyall Dawson 2014-11-06 Add methods to QgsGeometry to convert to/from QPointF and QPolygonF Nyall Dawson 2014-11-06 Add methods for converting QgsPoint to and from QPointF and QPoint Also add some more basic unit tests for QgsPoint Nyall Dawson 2014-11-06 Fix encoding of QgsPoint source files Allows editing these files in QtCreator. Matthias Kuhn 2014-11-05 Fix feature request with Fid Filter working on the edit buffer The following snippet did not take attribut changes that have not been commited into account. layer.getFeatures( QgsFeatureRequest( fid ) ).next() Fixes the VectorLayer test Tom Kralidis 2014-11-05 merge OWSLib 0.8.10 CSW fix https://github.com/geopython/OWSLib/commit/4e5e24840372028be2858c5c6897818bf6059282 Merge: 47e3dc9 7976d94 volaya 2014-11-05 Merge pull request #1670 from gioman/saga_fixes1 fix several SAGA 2.1.2 modules, take1 Juergen E. Fischer 2014-11-05 fix build error Matthias Kuhn 2014-11-04 Fix app startup test Merge: 1d3f8a7 a4fb2a1 mhugent 2014-11-04 Merge pull request #1671 from elpaso/requesthandler-refactoring2 Requesthandler refactoring2 elpaso 2014-11-04 Restored streaming capabilities, added mHeadersSent flag and accessor Funded by ItOpen - http://www.itopen.it elpaso 2014-10-10 ASTYLE formatting Funded by ItOpen - http://www.itopen.it elpaso 2014-10-09 Removed python plugins define Funded by ItOpen - http://www.itopen.it elpaso 2014-10-09 Http request/response handler refactoring. HTTP Request handler now manages HTTP request and response. * added methods to manage HTTP response headers * added methods to manage response body * added accessors API methods for request parameters and response headers and body Conflicts: src/mapserver/qgswmsserver.cpp Funded by ItOpen - http://www.itopen.it Juergen E. Fischer 2014-11-04 server: stop processing after 'no REQUEST' exception (fixes #11543) Juergen E. Fischer 2014-11-04 fix typo Werner Macho 2014-11-04 [TRANSUP] translation update Signed-off-by: Werner Macho Werner Macho 2014-11-04 Adding back shortcut and avoid double assign Matthias Kuhn 2014-08-05 Switch tests to automoc Required for Qt5 compatibility Raises minimum CMake version to 2.8.6 Werner Macho 2014-11-04 remove redundant shortcut for Open and Open recent Signed-off-by: Werner Macho Nyall Dawson 2014-11-04 [FEATURE][composer] Finer control of frame and annotation display Previously, for rotated maps or reprojected grids, the composer would draw all coordinates for every map side. This resulted in a mix of latitude/y and longitude/x coordinates showing on a side. This change allows users to control whether they want all coordinates, latitude only or longitude only for each map frame side. Similar options have also been added for controlling how a map grid frame is divided. In related news... the composer map dialog is now the ugliest, most cluttered and un-user friendly dialog in all of QGIS. I'd love suggestions/mockups from the UX team for ways this could be improved. Juergen E. Fischer 2014-11-03 oracle provider: * if a no spatial index is found try sdo_filter (fixes #11358) * allow specifing connection parameters (eg. OCI_ATTR_PREFETCH_ROWS=10000) Juergen E. Fischer 2014-11-03 QgsDataSourceURI: add parameters to uri Juergen E. Fischer 2014-11-04 fix feature action from identify menu (fixes #11533) Werner Macho 2014-11-03 [TRANSUP] adding hindi from transifex Signed-off-by: Werner Macho Juergen E. Fischer 2014-11-02 browser: register editor widgets (fixes #11529) Juergen E. Fischer 2014-11-02 add QScintilla2 include directory to python bindings and oracle provider (fixes #11528) Werner Macho 2014-11-02 [TRANSUP] transifex and string update Signed-off-by: Werner Macho Juergen E. Fischer 2014-11-02 german translation update Giovanni Manghi 2014-11-02 fix several SAGA 2.1.2 modules, take1 Alexander Bruy 2014-11-01 fix directory layout Alexander Bruy 2014-09-19 [processing] add Vector grid algorithm (addresses #5953) Alexander Bruy 2014-09-19 [processing] add Vector split algorithm (addresses #5953) Alexander Bruy 2014-09-19 [processing] fix Join by location alg Alexander Bruy 2014-09-18 [processing] add Symetrical difference algorithm (addresses #5953) Alexander Bruy 2014-09-15 [processing] add Regular points algorithm (addresses #5953) Juergen E. Fischer 2014-10-31 add link to 2.6 doxymentation to master version Nyall Dawson 2014-10-20 [FEATURE][composer] New action for toggling visibility of panels This change adds a new action to the composer which hides or shows all panels from the window. It's useful for maximising the space available to interact with a composition. A shortcut (F10) and menu item can be used to toggle this option, or via pressing 'tab' while the main composer view is focused. Nyall Dawson 2014-10-20 [FEATURE][composer] Full screen mode for composer This change adds a full screen mode for the composer. Full screen mode can be enabled via a shortcut key (F11) or via a menu action. Nyall Dawson 2014-10-14 [FEATURE][composer] Add view menu option to hide bounding boxes This allows users to hide the bounding boxes for selected items within a composition. It's a handy feature for allowing interaction with items while previewing exactly how they will look when the composition is exported, without large boxes blocking the view. Nyall Dawson 2014-10-14 [FEATURE][composer] Allow negative margins for label items If negative margins are set for a label, the label contents will begin outside the bounds of the label. This is desirable for aligning label items with other items while allowing for optical margin alignment for the label type. Nyall Dawson 2014-10-14 [FEATURE][composer] Allow control of hoz and vert margins for labels Previously only a single margin setting would apply to both horizontal and vertical margins. This change allows users to specify different horizontal and vertical margins. Denis Rouzaud 2014-09-29 support icons in map layer actions Juergen E. Fischer 2014-10-31 Bump version to 2.7 Juergen E. Fischer 2014-10-31 update changelog for 2.6 release Martin Dobias 2014-10-31 Less verbose debug output in layer tree model Juergen E. Fischer 2014-10-31 invert back toggle editing button in relation editor widget (fixes #11524, followup b1a2bef1) Werner Macho 2014-10-31 [TRANSUP] transifex translation updates Signed-off-by: Werner Macho Juergen E. Fischer 2014-10-31 fix more graduate renderer crashes (followup d99d2fd97) Merge: d99d2fd 9024bad alexbruy 2014-10-31 Merge pull request #1669 from gioman/tmp_fix_modeller_saga fix modeller with saga tools Giovanni Manghi 2014-10-31 fix modeller with saga tools Juergen E. Fischer 2014-10-31 fix graduated renderer crash (followup 6de53e51b) Juergen E. Fischer 2014-10-30 ftools: field uniqueness fix (fixes #11523) Juergen E. Fischer 2014-10-30 also restore style for file based layers (followup dfff717a0) and use file name for GeoJSON layers (fixes #10711) Juergen E. Fischer 2014-10-30 when manually loading layers defer loading default style until the layers is added to the registry so that the readCustomSymbology signal can be processed by the edit widget registry (fixes #11516) Werner Macho 2014-10-30 [TRANSUP] transifex update Signed-off-by: Werner Macho Juergen E. Fischer 2014-10-30 attribute dialog: really keep cloned feature until destruction (feature action also need it and crash otherwise) This reverts revert commit f618cae5e8a9c893038101db54f5ddecb5087cdf. Denis Rouzaud 2014-10-30 remove "added" notes for 1.x and 2.0 versions Juergen E. Fischer 2014-10-29 GDAL tools: put tif back to top for save file dialog formats (fixes #11507) Werner Macho 2014-10-29 [TRANSUP] transifex update excluding locations Signed-off-by: Werner Macho Werner Macho 2014-10-29 adjust update_ts_files to exclude location Signed-off-by: Werner Macho Merge: 4cf08c5 a7f889d Jürgen Fischer 2014-10-29 Merge pull request #1668 from m-kuhn/action-menu-crash Alternative approach to f9fcee9 Matthias Kuhn 2014-10-29 Use a copy of the feature for the action menu in the attribute dialog Matthias Kuhn 2014-10-29 Revert "attribute dialog: keep clone feature until destruction (fixes crash from action" This reverts commit f9fcee980ec7fb721187080f853f86dfbf453918. Sandro Santilli 2014-10-29 Avoid unneeded geometry cloning in QgsGeometry::nodeGeometries Affects splitGeometry and reshapeGeometry public functions Larry Shaffer 2014-10-29 Fix missing show/hide selected layers icons Juergen E. Fischer 2014-10-29 attribute dialog: keep clone feature until destruction (fixes crash from action menu) Sandro Santilli 2014-10-29 Drop execute flag from .cpp file Juergen E. Fischer 2014-10-29 german translation update Martin Dobias 2014-10-28 Fix a crash after adding favourites to browser when the item is not yet populated The model was getting broken due to list of children being overwritten and it was sometimes crashing in the proxy model implementation. Juergen E. Fischer 2014-10-28 db manager: show error message in bar when adding a layer fails (fixes #8148) Merge: 4bc4636 6de53e5 Nathan Woodrow 2014-10-28 Merge pull request #1667 from elpaso/bugfix11510 Fix #11510 graduated renderer causes crash: added check for geometry Juergen E. Fischer 2014-10-28 fix typos elpaso 2014-10-28 Fix #11510 graduated renderer causes crash: added check for geometry needed Funded by ItOpen - http://www.itopen.it Merge: c6d37c1 efc7921 Nathan Woodrow 2014-10-28 Merge pull request #1666 from elpaso/bugfix11510 Fix #11510 graduated renderer causes crash Werner Macho 2014-10-28 [TRANSUP] transifex update Signed-off-by: Werner Macho Werner Macho 2014-10-28 more typos in tooltip elpaso 2014-10-28 Fix #11510 graduated renderer causes crash Werner Macho 2014-10-28 fixing typo in tooltip Merge: c7c107e 4781f58 Werner Macho 2014-10-28 Merge pull request #1608 from yjacolin/newTips new tips in tipfactory Merge: 8617143 3ff1985 Werner Macho 2014-10-28 Merge pull request #1657 from DelazJ/MeasureTools Update MeasureTools context help Nyall Dawson 2014-10-28 Hide borders from status bar items under Windows These aren't required and just clutter the interface. Merge: cad3d2b 4f1e6b9 Werner Macho 2014-10-27 Merge pull request #1664 from Cracert/master [TRANSUP] pl: varia Merge: c21edd0 eef8032 Werner Macho 2014-10-27 Merge pull request #1658 from DelazJ/AttributeTableContextHelp Attribute table context help Robert Szczepanek 2014-10-27 [TRANSUP] pl: varia Merge: 83d070e 531474d Tim Sutton 2014-10-27 Merge pull request #1663 from timlinux/papercuts Add missing sip bindings for fill and border colours of rubber band. Merge: 84c429d 83d070e Tim Sutton 2014-10-27 Merge remote-tracking branch 'origin/master' into papercuts Tim Sutton 2014-10-27 Added setFillColor and setBorderColor for rubber band to the python API Martin Dobias 2014-10-27 Fix #11489 (crash with force point inside polygon in centroid fill style) This isn't actually a very good fix. The issue in the "maptopixel" simplification is still there, it is just less obvious, while sacrificing a bit of QgsGeometry correctness (like the fact that linear ring should have >= 4 points) Along the way I have added some comments that may help others decode why the code does things it does. Merge: 362d69c 0fa4ce3 Tim Sutton 2014-10-27 Merge pull request #1662 from timlinux/papercuts Mark old rubber band ctor as deprecated in python API Merge: 1932390 362d69c Tim Sutton 2014-10-27 Merge remote-tracking branch 'origin/master' Werner Macho 2014-10-27 [TRANSUP] more translations and string fix Signed-off-by: Werner Macho Nyall Dawson 2014-10-27 [composer] Don't shrink scalebar height when updating Previously any update of a scalebar would reset it's height to the minimum height allowed. Now, if the user has set a height greater than this minimum than that height is kept. (fix #10466) Nyall Dawson 2014-10-27 [composer] Fix incorrect calculation of scale for tick scale bars QPainter::drawLine(x1,y1,x2,y2) takes int values, so coordinates were being rounded to the nearest mm. Consequently scale was way off. Also fixes horizontal line for tick styles being drawn incorrectly with multiple overlapping segments. (fix #10685) Nyall Dawson 2014-10-27 Cleanup identify tooltip strings Nyall Dawson 2014-10-27 [processing] Ignore geom for non geom tables for ImportIntoPostGIS This fixes an error where trying to import non geometry tables using the "Import Into PostGIS" algorithm results in a database error. Juergen E. Fischer 2014-10-27 german translation update Larry Shaffer 2014-10-26 Fix #9359; set default WCS caching to Prefer Network - This is noted in the tool tip, but was not set. Always Cache was the default, which caused the cache to never be updated on upstream changes. Caveat: this does not fix projects with existing WCS layers. Richard Duivenvoorde 2014-10-26 fix for #11504 RotateFeature tool prerotation Juergen E. Fischer 2014-10-26 delete ring: consider reprojection when search for clicked ring (fixes #11502) Tim Sutton 2014-10-26 Properly mark old qgsrubberband ctor as deprecated Juergen E. Fischer 2014-10-26 vector file writer: avoid duplicate destruction of coordinate transform in case of exceptions (fixes #9993) Juergen E. Fischer 2014-10-26 Remove unsupported append import/export option from db_manager (refs #10569) Juergen E. Fischer 2014-10-26 support relative paths for gpx datasources (fixes #11131) Juergen E. Fischer 2014-10-26 support ogc binary operation with more than two operands (fixes #10053) Alexander Bruy 2014-10-26 move TODO.txt to root folder to avoid attempts to parse it as algorithm description Alexander Bruy 2014-10-26 [processing] fix broken TauDEM support Werner Macho 2014-10-26 [TRANSUP]transifex and lv update Signed-off-by: Werner Macho Merge: 6402864 edbf265 Werner Macho 2014-10-26 Merge pull request #1659 from Cracert/master [TRANSUP] pl: log, color, composer Juergen E. Fischer 2014-10-26 doxygen: add/replace some occurences of \verbatim with \code Robert Szczepanek 2014-10-25 [TRANSUP] pl: log, color, composer DelazJ 2014-10-25 Adding text about field calculator bar Adds text about field calculator bar and other stuffs DelazJ 2014-10-25 Update QgsMeasureDialog DelazJ 2014-10-25 Update Measure Tools description Adding text about angle tools and how tools behave. Juergen E. Fischer 2014-10-24 dxf export: export layers only once and in drawing order DelazJ 2014-10-24 Add text about measuring angle Since QGIS 2.0, it is possible to also measure angles but this is not mentioned in the context help. Merge: 444bea5 d64525c rldhont 2014-10-24 Merge pull request #1655 from rldhont/server_embedded_layers [BUGFIX] #11484 QGIS server: embedded layers are not published (GetCapabilities, GetMap, etc) In QgsServerProjectParser::createLayerFromElement, we need to generate a QgsServerProjectParser of the parent project to return the mapLayer for embedded layers. To do it, I use QgsCacheConfig to get the QgsServerProjectParser for the parent project. Funded by 3Liz. Werner Macho 2014-10-24 [TRANSUP] fix hu Signed-off-by: Werner Macho Werner Macho 2014-10-24 [TRANSUP] transifex update Signed-off-by: Werner Macho Martin Dobias 2014-10-24 Support for reading composer legend configuration for projects <= 2.4 The list of layers/groups is now restored (previously the configuration would be omitted). rldhont 2014-10-24 [BUGFIX] #11484 QGIS server: embedded layers are not published (GetCapabilities, GetMap, etc) Issue #1072 QGIS server: embedded groups do not render in GetMap requests if leave layers are requested has been fixed 40d91457f6f069886c5ba1c28db1efb2ff4ccac7 But another fix about embedded layers lacks. A fixme annotation is in the QgsServerProjectParser::createLayerFromElement. This one is about return the layer if it is embedded. In QgsServerProjectParser::createLayerFromElement, we need to generate a QgsServerProjectParser of the parent project to return the mapLayer for embedded layers. To do it, I use QgsCacheConfig to get the QgsServerProjectParser for the parent project. Funded by 3Liz. Martin Dobias 2014-10-24 Do not show in composer legend unused layers if filtering by map is enabled This resolves #11457 and partially #11293 Alexander Bruy 2014-10-24 bump Processing version Salvatore Larosa 2014-10-24 [pyqgis-console] update prepared API file Salvatore Larosa 2014-10-24 [pyqgis-console] small fix Alexander Bruy 2014-10-24 [processing] fix issues with Create Grid algortihm Martin Dobias 2014-10-24 Fix Andreas' problem with checkboxes in legend + update SIP bindings The problem was that rule-based renderer allowed cloned rules to have the same unique rule key. That in turn created the confusion with checkboxes in legend. Now rules always have new rule key when cloned. The only exception is when the whole renderer is cloned - in such case we preserve their rule keys, so that other components (legend / visibility presets) can still keep using the original rule keys. Projects where this problem appears need to be fixed - the easiest way is to select all rules, copy&paste them and remove the previous rules. DelazJ 2014-10-24 Update QgsAttributeTableDialog Nathan Woodrow 2014-10-24 Fix #11208 - Error when saving MSSQL layer when using DSN Nyall Dawson 2014-10-24 [composer] Negative position values should be allowed Juergen E. Fischer 2014-10-23 update changelog for brighton release Juergen E. Fischer 2014-10-23 expressions: keep brackets (fix #11475) Juergen E. Fischer 2014-10-23 dxf export: fixes for text support (text width, underline/overline/strikeout and line direction symbols) Merge: 2c19543 5c9fee5 Werner Macho 2014-10-23 Merge pull request #1654 from Cracert/master [TRANSUP] pl: processing Robert Szczepanek 2014-10-23 [TRANSUP] pl: processing Merge: cc30609 a41a9a3 Martin Dobias 2014-10-23 Merge pull request #1653 from 3nids/fixidentmenurubber delete rubber bands when exiting identify menu Denis Rouzaud 2014-10-23 delete rubber bands when exiting identify menu Martin Dobias 2014-10-23 Fix #11474 (cannot move layers in layer tree anymore) I have managed to break that with implementation of #11369. Obviously it is a bad idea to change selection in a slot connected to model's rowsInserted signals because the drag'n'drop does not work properly anymore. Now registry bridge will emit a signal after new layers have been added, so the selection change at that point should be safe. Merge: aeb9d93 6f30ab9 alexbruy 2014-10-23 Merge pull request #1652 from gioman/processing_count_points result field in Processing 'count points in polygon' must be integer Giovanni Manghi 2014-10-23 result field in Processing 'count points in polygon' must be integer Martin Dobias 2014-10-23 Fix QgsRasterInterface bindings again (fixes PyQgsRasterFileWriter test) Martin Dobias 2014-10-23 Fix #11455 take two (raster crashes) Thanks to Nyall for pointing this out Juergen E. Fischer 2014-10-22 fix interpretation of numeric constants in scientic notation (fixes #10939) Juergen E. Fischer 2014-10-22 osgeo4w: package pdbs in nightly build Martin Dobias 2014-10-22 Fix #9319 (copy of QgsExpression crashes) Disabled the copy constructor for now (later we may introduce implicit sharing) Werner Macho 2014-10-22 [TRANSUP] transifex update Signed-off-by: Werner Macho Martin Dobias 2014-10-22 Fix #11369 (New layers are not active with new legend) Martin Dobias 2014-10-22 Fix #11455 (Crash when setting transparency for WMS layer) Layer transparency instance was not copied when renderers were cloned. Martin Dobias 2014-10-22 Fixed SIP wrapper for conversion to QgsRasterInterface subclasses Matthias Kuhn 2014-10-21 Self referencing relations: do not repeatedly embed dual view Nyall Dawson 2014-10-22 [composer] Avoid hang when adding columns to table on Win (fix ##11462) Merge: 47f5873 17626b8 alexbruy 2014-10-22 Merge pull request #1646 from gioman/saga_shapesmodules_fixes1 fixes for 2 shapes tools for SAGA 2.1.2 Merge: abf816b 80c1dda alexbruy 2014-10-22 Merge pull request #1649 from gioman/ogr_clip add Processing clip using ogr2ogr to compensate for the bad Clip perform... borys 2014-10-22 [TRANSUP] pl: the layers panel toolbar and color dialogs Nyall Dawson 2014-10-22 [composer] Catch CRS exceptions when drawing grid lines Prevents bad grid parameters for a transformed grid flooding the user with hundreds of unclosable error message boxes. Juergen E. Fischer 2014-10-22 vector file writer: assume shapefiles contain multitype data (fixes #10584) Merge: a4f2084 d9b1638 alexbruy 2014-10-22 Merge pull request #1650 from gioman/gdal_rasterize_writeover fix processing gdal_rasterize to allow write vector values in a existing raster layer Nyall Dawson 2014-10-22 Tweak data defined button icons so they align to pixel grid Martin Dobias 2014-10-22 Fix #11074 (raster save as broken) Now the rows/cols edit boxes are prepopulated when the dialog is created which solves the problem Martin Dobias 2014-10-22 Fix #10999 (reshape tool throws GEOS exceptions) Exceptions fixed earlier by @mkuhn in 37f1a1 Numerical problems found by @arnaud-morvan, corrected by @jef-n Juergen E. Fischer 2014-10-22 handle unset setting values in processing (fixes #11340) Juergen E. Fischer 2014-10-22 keep add feature action until non-modal attribute form is closed (fixes #11461) Merge: 3bdb104 f1ce372 Werner Macho 2014-10-22 Merge pull request #1651 from Cracert/master [TRANSUP] pl: menu and toolbars Robert Szczepanek 2014-10-21 [TRANSUP] pl: menu and toolbars Giovanni Manghi 2014-10-21 added detail about the output Juergen E. Fischer 2014-10-21 use QgsCredentials to request wms/ows credentials on demand and wms cleanups (fixes #11184) Giovanni Manghi 2014-10-21 fix processing gdal_rasterize to allow write vector values in a existing raster layer Werner Macho 2014-10-21 [TRANSUP] transifex update Signed-off-by: Werner Macho Giovanni Manghi 2014-10-21 add Processing clip using ogr2ogr to compensate for the bad Clip performances of the native QGIS Clip tool Merge: b24572a a7b3fcc Werner Macho 2014-10-21 Merge pull request #1647 from Cracert/master [TRANSUP] pl: GDAL, heatmap Merge: 338e138 eea6c6b alexbruy 2014-10-21 Merge pull request #1648 from gioman/processing_gdal_output_type Add raster data type output option to some Processing/GDAL tools otherwise output is always Float64 Matthias Kuhn 2014-10-21 SIP update: expose QgsAttributeAction icon, iconPath and name Fix #11458 Nyall Dawson 2014-10-21 [composer] Respect reference point when resizing scalebar and legend Previously, the reference point (and data defined position/size) were ignored when scalebars or legends resized themselves. Fix #11321, #11380 Giovanni Manghi 2014-10-21 Add raster data type output option to some Processing/GDAL tools otherewise output is always Float64 Giovanni Manghi 2014-10-21 Add raster data type output option to some Processing/GDAL tools otherewise output is always Float64 Martin Dobias 2014-10-21 Fix #11456 (canvas not refreshed anymore after adding a new feature) Resorted to a "minimalist" fix - other solutions would potentially break even more stuff. The handling of non-modal dialogs for add/edit feature attributes + handling of isModified() should be addressed at some point. Martin Dobias 2014-10-21 Fix one memory leak + add note to show() calls as they will delete the dialog Sandro Santilli 2014-10-21 Remove workaround for layergroup bug #6938, now fixed Matthias Kuhn 2014-10-21 Catch GEOS exceptions when reshape tool is used on non-closed-linestring And use qWarning() instead of QgsDebugMsg() to make tracing GEOS errors easier because a stack trace is printed. Nyall Dawson 2014-10-21 [composer] Default to setting a map for new legend items It's friendlier for users, who may not realise they need to set a map before they can filter legends. Nyall Dawson 2014-10-21 Follow up 0bda714 Ensure that mLegendFilterByMap is set before setting the map when reading legend xml Martin Dobias 2014-10-21 [composer] Fixed assignment of map to legend + no updates when legend is removed Thanks to Nyall for his help! Martin Dobias 2014-10-21 Fix #11330 (Composer legend can be smaller than its content) Martin Dobias 2014-10-21 Fix #11382 (keep check state of the moved layer) Cloning of the existing node will preserve the check state, in addition it will keep other custom properties that would be lost prevously. Merge: 42d915e 20b0d12 Jürgen Fischer 2014-10-21 Merge pull request #1616 from ahuarte47/Issue_11243 Fix #11243: Data corruption with feature simplification Juergen E. Fischer 2014-10-21 skip primary key column when pasting to spatialite layers (fixes #11322) Juergen E. Fischer 2014-10-20 german translation update Juergen E. Fischer 2014-10-20 cosmetic cleanups, typo fixes, formatting Robert Szczepanek 2014-10-20 [TRANSUP] pl: GDAL, heatmap Nyall Dawson 2014-10-21 Improve wording of string Nyall Dawson 2014-10-20 [composer] Fix page orientation and size ignored when printing Turns out QPrinter::setPaperSize silently flips the width and height of a page if the printer orientation is set to landscape. So, make sure we manually set the orientation to portrait before setting the page size so that we can be sure the QPrinter is set to the correct page size. This also restores the 2.4 behaviour where users could override printed page size in the printer properties dialog (but only if no data defined page size settings are active). (fix #11352) Giovanni Manghi 2014-10-20 fixes for 2 shapes tools for SAGA 2.1.2 Martin Dobias 2014-10-21 Fix #10819 (simple/marker line with offset on the wrong side of inner rings) Martin Dobias 2014-10-20 Fix #10956 (QgsSnapper crash/freeze/issues) QgsMapSettings instance of QgsMapCanvas may have been prematurely deleted by SIP. The KeepReference annotation will force QgsMapCanvas wrapper to keep one more ref to it, so its reference count will not go to zero while map canvas is still alive. Matthias Kuhn 2014-10-20 Repack() shapefiles on unload whenever they have been modified Previous preconditions that would only repack them when features have been deleted seems to not have covered everything. Fix #11007 Matthias Kuhn 2014-10-20 SIP update for QgsFilterLineEdit events have not been defined in the sip file, therefore QgsFilterLineEdits created in python did not receive the events, leading to visual glitches. Fix #11372 Martin Dobias 2014-10-20 Fix #11361 (Cannot open menu for vector layer in TOC when its table of attributes is open) Dual view's attribute form was triggering canvas refresh which in turn caused the popup menu to be closed again. (at least in KDE) Nyall Dawson 2014-10-20 [composer] Improved fix for tab order in item widgets Setting the focus policy to strong for QgsCollapsibleGroupBoxes in Qt designer allows for the tab order to be correctly set. Nyall Dawson 2014-10-20 Also show focus rect for QgsCollapsibleGroupBoxes Martin Dobias 2014-10-20 Fix #11426 (Right click cause crash when digitizing polygon inner ring) Also fixed the same crash for add part and fill ring map tools. Martin Dobias 2014-10-20 Fix #11420 (Quick calculation bar updates wrong column when using aliases) Nyall Dawson 2014-10-20 [composer] Follow up da5766c, fix picture rotation calculation Previous commit failed to address the issue for non-squareish images. Nyall Dawson 2014-10-20 Hide color picker tab in color dialog for OSX builds. Qt on OSX does not support the required QWidget::grabMouse method. Instead of showing a broken tab, just hide it under this platform. Revisit when we switch to Qt5 builds to see if there's a solution to this. Werner Macho 2014-10-20 [TRANSUP] transifex and string updates Signed-off-by: Werner Macho Nyall Dawson 2014-10-20 [composer] Fix tab order in some item widgets Nyall Dawson 2014-10-20 Show focus rect around focused QgsDataDefinedButtons Helps with user interaction via the keyboard. Martin Dobias 2014-10-20 Fix #11331 (hidden group still occupies space in composer legend) Merge: 7876a78 afc60e1 alexbruy 2014-10-20 Merge pull request #1642 from timlinux/processing Papercut fix for inconsistent spelling of Raster Layer vs Vector layer Merge: 9f8beb0 34d0796 Werner Macho 2014-10-20 Merge pull request #1638 from Cracert/master [TRANSUP] pl: first run Merge: 1eefed2 a0a546f volaya 2014-10-20 Merge pull request #1640 from gioman/saga_mosaick_fix small fix for SAGA module Merge: f3e7a3e 6a33e27 volaya 2014-10-20 Merge pull request #1639 from gioman/saga_transpose_grids Add SAGA 2.1.2 Transpose Grids tool Merge: 9bc7eca 3c24615 volaya 2014-10-20 Merge pull request #1643 from gioman/gdal_rasterize_type Add option to allow choose raster type output to gdal_rasterize Nyall Dawson 2014-10-20 Cleanup action text Make sure all actions use standard capitalization and ... suffixes when required. Add missing menu key shortcuts to composer actions. Giovanni Manghi 2014-10-19 Add option to allow choose raster type output to gdal_rasterize Tim Sutton 2014-10-20 Papercut fix for inconsistent spelling of Raster Layer vs Vector layer Juergen E. Fischer 2014-10-20 don't set relevant fields for VRT data sources when filtering for a rectangle. OGR might need attributes otherwise considered irrelevant to construct the geometry to filter against (fixes #11223) Juergen E. Fischer 2014-10-19 german translation update Juergen E. Fischer 2014-10-19 indentation update Merge: a548d1f e1dedee volaya 2014-10-19 Merge pull request #1641 from gioman/gdal_rasterize better gdal rasterize defaults Giovanni Manghi 2014-10-19 better gdal rasterize defaults Giovanni Manghi 2014-10-19 small fix for SAGA module Giovanni Manghi 2014-10-19 Add SAGA 2.1.2 Transpose Grids tool Merge: f35fb5e 7e40811 volaya 2014-10-19 Merge pull request #1637 from gioman/saga_grid_cell_index fix SAGA 2.1.2 Sort Grid module: name and parameters changed Merge: db0f423 af1fe9e volaya 2014-10-19 Merge pull request #1636 from gioman/saga_mosaick fixes SAGA 2.1.2 merge raster layers module as it changed name (now "mosaick") and parameters Robert Szczepanek 2014-10-19 [TRANSUP] pl: first run volaya 2014-10-19 [processing] disabled editing modeler item with double click (was causing crash) volaya 2014-10-19 [processing] removed repeated algorithms from simplified mode Giovanni Manghi 2014-10-19 fix SAGA 2.1.2 Sort Grid module: name and parameters changed volaya 2014-10-19 [processing] fixed table export volaya 2014-10-19 [processing] removed redundant saga algorithm volaya 2014-10-19 [processing] remember min/max value in number params in modeler Giovanni Manghi 2014-10-19 fixes SAGA 2.1.2 merge raster layers module as it changed name and parameters Nyall Dawson 2014-10-19 [composer] Allow rotation for pictures set to "zoom & resize" mode Previously rotation was only allowed for pictures set to "Zoom" mode, which causes pictures to change size when the rotation changes (frame size is constant). This change allows pictures set to "Zoom and resize" mode to have rotation set. Altering the rotation when in this mode keeps the picture size constant and changes the frame size to suit. (fix #10640) Nyall Dawson 2014-10-19 [composer] Prevent renaming to duplicate name in manager (fix #11051) Nyall Dawson 2014-10-19 [composer] Don't rasterise svg arrow heads Nyall Dawson 2014-10-19 Fix warning Nyall Dawson 2014-10-19 [composer] Fix placement of coordinates in map corners (fix #8827) Merge: 7798bd8 359a3d8 Chris Crook 2014-10-19 Merge pull request #1630 from ccrook/GraduatedRendererUnitTests2 Graduated renderer unit tests2 Nyall Dawson 2014-10-19 [composer] Fix crash caused by 7773d4e Don't set the parent object of a composition to a composer view, as we manage deletion of compositions manually and don't always want the composition deleted when a view a deleted. Nyall Dawson 2014-10-19 Fix Qt warning caused by destructor of QgsNetworkContentFetcher Nyall Dawson 2014-10-19 Minor code cleanups for composer attribute table widget Nyall Dawson 2014-10-19 [composer] Ensure that composers are deleted before compositions Fixes some rare crashes when loading projects. Nyall Dawson 2014-10-19 Expand composer item group test suite Nyall Dawson 2014-10-19 [composer] Move ungrouping logic from composer view to composition As per previous commit, this is useful for plugin authors. It also fixes a potential bad crash (itemRemoved emitted for group item after the group item was already deleted) and adds unit tests. Nyall Dawson 2014-10-19 [composer] Move code for creating groups to QgsComposition Previously this code was located in QgsComposerView. Moving it to QgsComposition simplifies grouping items for plugins. Also start a new unit test for QgsComposerItemGroup. Nyall Dawson 2014-10-19 [composer] Fixes to composer item sip bindings - Added some missing /TransferThis/ arguments - Ensure that correct item type is returned for all item types Nyall Dawson 2014-10-19 Add missing #infndef to qgscomposeritemgroup.h Nyall Dawson 2014-10-19 [composer] Fix a memory leak when destroying compositions Nyall Dawson 2014-10-19 [composer] Allow removing svg markers for arrows (fix #11220) Previous behaviour was that if the start or end marker was cleared than the old marker was drawn. This made it impossible to remove an svg marker from the start or end of the line after one had been assigned. Also fix a Qt warning caused by trying to draw markers if the marker size is set to 0. Nyall Dawson 2014-10-19 [composer] Don't evaluate expression for label display name Nyall Dawson 2014-10-19 [composer] Fix area calculation in expressions with OTF (fix #9791) Adds an argument to QgsExpression::replaceExpressionText to allow passing an optional QgsDistanceArea to use during calculations. Ensure that html and label composer items correctly specify this argument. volaya 2014-10-19 [processing] fixed autofill in batch processing interface Fixes #11435 Nyall Dawson 2014-10-19 Fix some compiler/doxygen warnings Merge: d77e0f0 28f3f46 Paolo Cavallini 2014-10-18 Merge pull request #1635 from gioman/saga_slope Fixes SAGA slope,aspect,curvature for SAGA 2.1.x Giovanni Manghi 2014-10-18 fixed SAGA Slope,Aspect,Curvature module for SAGA 2.1.x Giovanni Manghi 2014-10-18 fixed SAGA Slope,Aspect,Curvature module for SAGA 2.1.x Paolo 2014-10-18 Typo fixed in r.series borys 2014-10-18 [TRANSUP] [pl] Typo fix volaya 2014-10-18 [processing] removed border in table in batch processing dialog volaya 2014-10-18 [processing] better handling of wrong models volaya 2014-10-18 [processing] fixed issue when running models in a batch process Fixes #11438 Alexander Bruy 2014-10-18 [processing] more robust layer sorting in multiple selection widget (fixes #11429) Werner Macho 2014-10-17 [TRANSUP] transifex update Signed-off-by: Werner Macho Merge: bb95a0f c575fa5 Paolo Cavallini 2014-10-17 Merge pull request #1633 from gioman/saga_split_shapes_new_option add new parameter to SAGA split shapes tool, fixes #11427 Giovanni Manghi 2014-10-17 add new parameter to SAGA split shapes tool Juergen E. Fischer 2014-10-16 use layer title instead of name in server getlegendgraphic response (fixes #11406) Juergen E. Fischer 2014-10-16 combine layer type and edit icon when editing (fixes #11411) Juergen E. Fischer 2014-10-16 avoid creating a histogram without range (fixes #11217) Juergen E. Fischer 2014-10-16 restore active window after requesting credentials (fixes #11355) Chris Crook 2014-10-16 Fix render state not restored from QDomElement Chris Crook 2014-10-09 Further unit tests Chris Crook 2014-10-06 Adding python unit tests for graduated renderer - part 1 Juergen E. Fischer 2014-10-16 fix geography detection (fixes #11375) Juergen E. Fischer 2014-10-16 avoid creating a histogram without range (fixes #10832) Juergen E. Fischer 2014-10-15 allow setting visiblity of selected layers (fixes #10835) Juergen E. Fischer 2014-10-15 fix where clase when multiple features are filtered by id (fixes #11336, fixes #11408) Juergen E. Fischer 2014-10-15 fix deprecation warnings Matthias Kuhn 2014-10-15 [editwidgets] text color for r/o line edits matches disabled color Line edits are set to readonly to make it possible to copy values from disabled forms. Unfortunately Qt uses a style that makes them look editable even though they are not. This patches the text color to have the appearance that hints an uneditable widget. Fix #11413 Denis Rouzaud 2014-10-15 use layer's displayExpression in relation reference widget line edit Denis Rouzaud 2014-10-15 use default button action instead of adding a new one (relation reference and editor widgets) Nyall Dawson 2014-10-15 [composer] Avoid crash when using redo on multiframe (fix #11351) Since multiframe changes can remove and create new frame items, it's not safe to directly manipulate frame items in QgsComposerItemCommand. Now, commands which apply to a frame always fetch a reference to the correct frame item directly from the parent multiframe. Also added unit tests for this crash. Sandro Santilli 2014-10-14 [TopoViewer] fix layer visibility after QgsLegendInterface API changes It was broken with 2.4, whereas QgsLegendInterface::moveLayer started forcing layer visibility on (undocumented behaviour). Fixes #11382 Werner Macho 2014-10-14 [TRANSUP] transifex update Signed-off-by: Werner Macho Juergen E. Fischer 2014-10-14 remove get from QgsProviderRegistry::getProviderCapabilities() (followup 2e943c93) Merge: 89b0d7a 2e943c9 Jürgen Fischer 2014-10-14 Merge pull request #1621 from manisandro/bad_layer_improvements Bad layer dialog improvements Merge: 1cb22c0 a47764d Werner Macho 2014-10-14 Merge pull request #1484 from serialc/master CSV acronym added for consistency with other file type names Nyall Dawson 2014-10-14 [composer] Seperate draw empty rows option from empty table behaviour Now "draw empty rows" is a seperate checkbox (fix #11392) Matthias Kuhn 2014-10-14 Edit widget properties dialog: Improve window title Includes the field name and layer name in the window title. Nyall Dawson 2014-10-14 [composer] Fix incorrect calculation of frame thickness for labels Previously entire frame width was considered when calculating the margin for the label item. Only half the frame width should be used, since half is drawn outside the item rect. Juergen E. Fischer 2014-10-14 use qIsNaN instead of isnan (fixes windows build) Matthias Kuhn 2014-10-14 Field calculator: Move virtual field to the top. Followup 0c4a501 Matthias Kuhn 2014-10-14 Address some GUI issues on the field calculator * Info labels for edit mode turn on was not shown * Ok button was active when opening the field calculator even with no input (Fix #11403) Nyall Dawson 2014-10-13 [composer] Fix possible crash in scale bar update (refs #11394) Nyall Dawson 2014-10-13 Fix calculation of random colors following 4d72d72 Merge: 4d72d72 3d2747c Nathan Woodrow 2014-10-13 Merge pull request #1627 from slarosa/categorized_style_crash Fix crash when choosing a null field for categorized style Juergen E. Fischer 2014-10-13 dxf export: use half width texts and support transparent colors Matthias Kuhn 2014-10-13 Fix selection after focus-in by mouse in QgsFilterLineEdit After focusing a QgsFilterLineEdit with the mouse, the end of the selection was "attached" to the end of the content. This was caused by overwriting Qt's mousePressEvent, that is responsible for handling the selection without handing back the responsibility after the focus in event was finished. Fix #11373 Matthias Kuhn 2014-10-13 Virtual fields definition moved to field calculator This place is more appropriate than the add attributes dialog. See also http://osgeo-org.1560.x6.nabble.com/Virtual-Fields-Allow-adding-fields-out-of-edit-mode-td5166223.html for a related discussion. Fix #11342 Merge: 62ad5ae 823b57e Nathan Woodrow 2014-10-13 Merge pull request #1618 from ccrook/GraduatedRendererBugFix11366 Fix #11366 Customised graduated renderer labels ignored Salvatore Larosa 2014-10-12 Fix crash when choosing a null field for categorized style Werner Macho 2014-10-12 [TRANSUP] transifex update Signed-off-by: Werner Macho Merge: 25333c5 0ed701e Nyall Dawson 2014-10-13 Merge pull request #1623 from manisandro/initially_unsorted_attributes Show attributes dialog with initially unsorted attributes Merge: d1f84fd e0e6204 Nyall Dawson 2014-10-13 Merge pull request #1622 from manisandro/spatialite_dialog_border Fix scrollarea border style and tab order in new spatialite layer dialog volaya 2014-10-12 [processing] fixed wrong import in parameters classç Fixes #11393 Sandro Mani 2014-10-09 Fix scrollarea border style and tab order in new spatialite layer dialog (Funded by Sourcepole) Nyall Dawson 2014-10-12 Fix a potential crash when closing projects with html composer items Nyall Dawson 2014-10-12 Add some padding to identify panel to match browse and layers panel Salvatore Larosa 2014-10-11 [processing] Fixes #11388 - save vector file dialog does not show file ext Nathan Woodrow 2014-10-11 Escape backslash for mime data. Fix MS SQL drag and drop Nathan Woodrow 2014-10-07 Fix crash with SQL Server driver Merge: 3d8a034 ac5622a Jürgen Fischer 2014-10-11 Merge pull request #1617 from ahuarte47/Issue_9777_missing-labels Fix #11368: Simplification of a dataset leaves some polygons unlabelled Merge: 34ccc81 94b2e7c Jürgen Fischer 2014-10-11 Merge pull request #1625 from giohappy/master Fixes error in Multipoints with Z rendering giohappy 2014-10-10 Fixes error in Multipoints with Z rendering Merge: 738e0be f1577f1 Jürgen Fischer 2014-10-10 Merge pull request #1615 from ccrook/PostgresSaveStyleFix Fix #11329 Graduated renderer style not saved in postgres Werner Macho 2014-10-09 [TRANSUP] some update for processing and transifex Signed-off-by: Werner Macho Sandro Mani 2014-10-09 Show attributes dialog with initially unsorted attributes (Funded by Sourcepole) Sandro Mani 2014-10-09 Bad layer dialog improvements (Funded by Sourcepole) Alexander Bruy 2014-10-09 [processing] fix handling of boolean parameters in modeller Alexander Bruy 2014-10-09 [processing] more fixes for i18n support Denis Rouzaud 2014-10-09 more names for the map tools Nyall Dawson 2014-10-09 [composer] Fix calculation of height of HTML content (fix #11353) Nyall Dawson 2014-10-09 Cancel running requests when loading content in QgsNetworkContentFetcher (fix #11332) Nyall Dawson 2014-10-09 Followup cc94578 rldhont 2014-10-01 [Composer] Fix ComposerMapWidget's label is not explicit The user can only know the ComposerMap's label with it's tooltip. This commit proposes to update the ComposerMapWidget'label to be more explicit and to be the same as the ComposerMap's tooltip. rldhont 2014-10-01 [Composer] Fix The ComposerMap's tooltip is not updated after readXML The ComposerMap's tooltip is only set in the private init method. This method is only used in the ComposerMap constructor. The result is that the tooltip is not updated after reading the id from the XML. The solution could be to add a private method updateToolTip used when the id is changed : * constructor * assignFreeId * readXML Merge: 174c2f3 4a639ad alexbruy 2014-10-09 Merge pull request #1619 from anitagraser/patch-4 [processing] fixed value used before assignment error Anita Graser 2014-10-09 fixed value used before assignment error Nyall Dawson 2014-10-09 Use QgsColorButtonV2 for editor widgets Nyall Dawson 2014-10-09 [composer] Fix new frames not inheriting outline color, clean up item api a bit Alexander Bruy 2014-10-09 [processing] fix i18n support Chris Crook 2014-10-09 Fix for bug 11366 Salvatore Larosa 2014-10-08 [processing] Fixes #11363 - help file is created but not shown in the Help tab Alvaro Huarte 2014-10-08 #9777-ML: Indentation update Juergen E. Fischer 2014-10-08 german translation update Alvaro Huarte 2014-10-08 #9777-ML: Avoid Fill invalid geometries to GEOSGeometry Salvatore Larosa 2014-10-08 [pyqgis-console] restore previously loaded scripts only when editor is instanced Marco Hugentobler 2014-10-08 Postgres connection: limit user/pw queries to 5 (avoids blocking server instances if a db does not exist anymore) Nyall Dawson 2014-10-08 Add some tolerance to atlas tests Nyall Dawson 2014-10-08 Use color name to compare colors when adding new recent color, prevents duplicate colors in recent color list Nyall Dawson 2014-10-08 Fix offset is ignored for simple line symbology Nyall Dawson 2014-10-08 [composer] Ensure that QgsComposerMap::mapPolygon returns a closed polygon, fixes rare crash when using map overviews (fix #11305) Salvatore Larosa 2014-10-08 Fixes #11349 - field calculator broke on qgis master Salvatore Larosa 2014-10-07 [processing] set autoRaise to True for toolbutton in script and modeler dialog Salvatore Larosa 2014-10-07 [processing] Fixes #11345 - Python error while using Get script from online scripts collection Matthias Kuhn 2014-10-07 Allow QWebView for photo widget Fix #11306 Nyall Dawson 2014-10-07 [composer] Ensure that all maps are refreshed when atlas feature changes, in case they rely on atlas dependant symbology Nyall Dawson 2014-10-07 Fix crashes when using atlas and expressions which rely on specialcolumns. Bring on context based expressions so we can remove this hack! Nyall Dawson 2014-10-07 Followup 8a0e1ef volaya 2014-10-07 [processing] minor code cleaning volaya 2014-10-07 [processing] fixed wrong call to self.tr from static method Werner Macho 2014-10-07 [TRANSUP] transifex update Signed-off-by: Werner Macho Chris Crook 2014-10-07 Adding comments explaining code changes ahuarte47 2014-10-07 #11243: Disable simplification when OTFR transform fails Chris Crook 2014-10-07 Fix saving styles in postgres where style definition includes %1 etc strings radosuav 2014-10-06 [Processing] Add GDAL build virtual raster alg - part 2. radosuav 2014-10-06 [Processing] Add GDAL build virtual raster alg. radosuav 2014-10-06 [Processing] Fix advanced parameter handling in OTB algorithms. radosuav 2014-10-06 [Processing] Inform listeners when all algorithms have been loaded. radosuav 2014-10-06 Fix translations in Processing.py Nathan Woodrow 2014-10-06 Fix #10858 - Set relative path to QLR save folder. Load relative to QLR file Nyall Dawson 2014-10-06 [composer] Remove a bunch of duplicate render calls to map items during atlas previews Nyall Dawson 2014-10-06 Indicate current color in color button swatch menus Nyall Dawson 2014-10-06 [composer] More shortcuts for composer map tools Nyall Dawson 2014-10-06 [composer] Clean up label item widget Nyall Dawson 2014-10-06 [composer] Update label items immediately after changing color Nyall Dawson 2014-10-06 [composer] Remove duplicate canvas refreshes Nyall Dawson 2014-10-06 Use standard test font for QgsComposerHtml test Matthias Kuhn 2014-09-25 Allow usage of virtual fields also for layer w/o add attribute support Fix #11168 Matthias Kuhn 2014-10-06 Convert values to target field format For the field calculator and virtual fields. Fix #11000 Fix #10995 Fix #10993 volaya 2014-10-06 [processing] fixed #11327 volaya 2014-09-28 [processing] fixed string representation of outputs volaya 2014-09-28 [processing] fixed list of algorithms in simplified mode volaya 2014-09-28 [processing]removed debug print lines volaya 2014-09-26 [processing] enable non-tif outputs in gdaldem algorithms volaya 2014-09-26 [processing] enabled more gdal output extensions Merge: b2e7e6e 6c2c6e2 Nathan Woodrow 2014-10-06 Merge pull request #1612 from ccrook/GraduatedRendererBugFixes1 Two bug fixes for graduated renderer Chris Crook 2014-10-06 Two bug fixes for graduated renderer Juergen E. Fischer 2014-10-05 followup 3c95b5b9 Merge: 3c95b5b fa15784 Jürgen Fischer 2014-10-05 Merge pull request #1611 from manisandro/readlink Use readlink -f to determine source directory in scripts/prepare-commit.sh Juergen E. Fischer 2014-10-05 only include reasonable complete translations Sandro Mani 2014-10-05 Use readlink -f to determine source directory Nyall Dawson 2014-10-05 [composer] Add missing degree symbol for 'Decimal with suffix' format when using a geographic crs Nyall Dawson 2014-10-05 [composer] Don't use directional suffixes for annotations when in geographic coordinate system and direction is ambiguous (eg 0 degrees latitude) and format is set to 'Decimal with suffix' Salvatore Larosa 2014-10-05 save geometry for style DB dialogs Yves Jacolin 2014-10-05 @ccrook text review Werner Macho 2014-10-05 [TRANSUP] transifex update Signed-off-by: Werner Macho Werner Macho 2014-10-05 fix typo Signed-off-by: Werner Macho Alexander Bruy 2014-10-05 [processing] show layers sorted only for single selection widget and use legend order for multiple selection Merge: 6922e45 ec64e1d Yves Jacolin 2014-10-04 Merge remote-tracking branch 'upstream/master' into newTips Yves Jacolin 2014-10-04 A lot of missing letter and typo corrected thanks to @ccrook Merge: b8c558c c17957f mhugent 2014-10-04 Merge pull request #1598 from marcel-dancak/getfeatureinfo-raster Mapserver: fixed GetFeatureInfo request on raster layers (GML format) Yves Jacolin 2014-10-04 Removing easter eggs tips Werner Macho 2014-10-04 [TRANSUP] fix for some typos and processing Signed-off-by: Werner Macho Werner Macho 2014-10-04 another typo fix Yves Jacolin 2014-10-04 new tips Alexander Bruy 2014-10-04 [processing] always pass number of cores as integer (fix #10894) Werner Macho 2014-10-04 typo fix Merge: 7fce897 76ff1a6 alexbruy 2014-10-04 Merge pull request #1607 from gioman/v_kernel fix for v.kernel module in GRASS plugin Werner Macho 2014-10-04 [TRANSUP] fix source typos Signed-off-by: Werner Macho Nathan Woodrow 2014-10-04 Fix #11308 - Add missing IN operator Nathan Woodrow 2014-10-04 Fix #11302 - Move view selection for identify dock Salvatore Larosa 2014-10-04 Fixes #11061 see http://hub.qgis.org/issues/11061 Alexander Bruy 2014-10-04 fix typos in strings Alexander Bruy 2014-10-04 [processing] fix algorithm execution Giovanni Manghi 2014-10-04 fix for v.kernel module in GRASS plugin Matthias Kuhn 2014-10-03 Attribute dialog: Show layer name in title bar Matthias Kuhn 2014-10-03 sip bindings: QgsAttributeDialog inherits from QDialog - Sponsored by QGIS HF Essen 2014 and everybody who helped to organize and finance this event Fixes a strange bug that prevented child widgets to be enabled when they originally have not been enabled. Werner Macho 2014-10-04 [TRANSUP] adding processing for translation, thanks Alex Signed-off-by: Werner Macho Alexander Bruy 2014-10-03 [processing] make bunch of strings translatable (sorry translators) Alexander Bruy 2014-10-03 [processing] add full i18n support (still needs some work to mark all strings as translatable) volaya 2014-10-04 [processing] better-looking params ui (removed widget border) volaya 2014-10-04 [processing] fixed crs checking before running alg Juergen E. Fischer 2014-10-04 german translation update Alexander Bruy 2014-09-26 move raster thumbnails from General tab to Style (fix #7946) Denis Rouzaud 2014-10-03 remove useless code volaya 2014-10-03 fixed #10986 volaya 2014-10-03 [processing] fixed minor typos in GeometryConvert algorithm Merge: 6ec751f 0075bde Denis Rouzaud 2014-10-03 Merge pull request #1606 from arnaud-morvan/selectioncolor_alphachannel Fix #11307. Apply user selection alpha channel to mapsettings on newfile. arnaud.morvan@camptocamp.com 2014-10-03 Apply default selection color alpha channel to mapsettings on newfile. Fix #11307 Nyall Dawson 2014-10-03 [composer] Cache transformed grid lines and intersections to slightly speed up grid drawing Nyall Dawson 2014-10-03 [composer] Fix transformed map grids not drawn if set to Tick or Marker style (slow) Nyall Dawson 2014-10-03 Workaround issue in Qt detection of encoding for html QByteArrays Alexander Bruy 2014-10-03 [processing] disable GRASS 7 algorithm provider by default Alexander Bruy 2014-10-03 fix file permissions Alexander Bruy 2014-10-03 [processing] put all qgis algs in single directory ghtmtt 2014-10-03 Update geometricfigures.rst Martin Dobias 2014-10-03 Skip some work if no data-defined properties are applied 8% speedup with 1m polygons in memory layer Martin Dobias 2014-10-03 Optimize simple line drawing when without data-defined properties 20% speed improvement when drawing 1m linestrings (4points each) from memory layer Martin Dobias 2014-10-03 Optimize simple marker: do not construct/destruct "size" all the time 13% speedup when rendering 1m points from memory provider Martin Dobias 2014-10-03 Optimize QgsVectorLayerFeatureIterator a bit 11% speedup when rendering 1 million points from memory provider Juergen E. Fischer 2014-10-03 dxf export: (re-)enable linetype generation for pen styles Merge: f5054a1 c9e0328 Jürgen Fischer 2014-10-03 Merge pull request #1603 from luipir/master [GdalTools] fix blocker bug https://hub.qgis.org/issues/11275 Merge: ac54c8e 59ec15b volaya 2014-10-03 Merge pull request #1604 from elpaso/processing [processing] Avoid python hangs when run in headless mode from FCGI volaya 2014-10-03 [processing] updated freq analysis alg Alexander Bruy 2014-10-03 update Grid alg to avoid some coordinate precision issues Alexander Bruy 2014-10-03 remove old code Alexander Bruy 2014-10-03 refactor Geometry convert alg Alexander Bruy 2014-10-03 refactor Merge alg Alexander Bruy 2014-10-03 refactor Hub lines alg Alexander Bruy 2014-10-03 refactor Hub distance alg Alexander Bruy 2014-10-03 refactor Gridify alg. fix license headers Alexander Bruy 2014-10-03 refactor Grid algorithm Alexander Bruy 2014-10-03 refactor Select by attribute alg Alexander Bruy 2014-10-02 refactor Extract by attribute alg Alexander Bruy 2014-10-02 refactor Text to float alg Alexander Bruy 2014-10-02 start refactoring of the Processing mmqgis backend: Delete column and Delete duplicate geometries Alexander Bruy 2014-08-06 cleanup in vector utils elpaso 2014-10-03 [processing] Avoid python hangs when run in headless mode from FCGI Merge: 10d75c0 ba0f9d4 Nathan Woodrow 2014-10-03 Merge pull request #1599 from ccrook/CategorizedRendererFixes Categorized renderer fixes Chris Crook 2014-10-03 Reverting to preferred QgsRenderRangeV2LabelFormat Nyall Dawson 2014-10-03 [composer] Fix display name for attribute table frames Nyall Dawson 2014-10-03 [composer] Fix table background extending beyond table rows (fix #11272). It was necessary to add a new 'table background' color option to prevent regressions when loading old compositions, since users may desire the old behaviour where the entire frame is filled. Nyall Dawson 2014-10-03 [composer] Copy hide background if empty setting when adding new frame to existing multiframe Nyall Dawson 2014-10-03 [composer] Default to no background for new frame items Chris Crook 2014-10-03 Adding missing elements from SIP volaya 2014-10-02 [processing] do not log algorithms when not run from the gui Martin Dobias 2014-10-02 Fix #11285 (improve symbol levels dialog for long symbol labels) - by Salvatore Larosa Denis Rouzaud 2014-10-02 [fix #11300] make edit form non modal on feature creation too Alexander Bruy 2014-10-02 [processing] remove undefined variable (fix #11118) Luigi Pirelli 2014-10-02 fix blocker bug https://hub.qgis.org/issues/11275 Denis Rouzaud 2014-09-30 update mac install documentation and fix GSL include Nathan Woodrow 2014-10-02 [Python Console] Don't set custom background for editor toolbar Nathan Woodrow 2014-10-02 [Expression] Don't show folding Martin Dobias 2014-10-02 Fixed renaming of composer legend nodes for raster layers Nyall Dawson 2014-10-02 [composer] Fix placement of grid annotations when map has no frame set Nyall Dawson 2014-10-01 Add argument to QgsCoordinateTransform::transformBoundingBox to flag that handling of a bounding box which crosses the 180 degree longitude line is required. Fix composer map reprojected grids which cross 180 degree line. Nyall Dawson 2014-10-01 [composer] Remove 'new from template' action from composer, following UI list discussions Nyall Dawson 2014-10-01 Add some shortcut keys for composer Nyall Dawson 2014-10-01 [composer] Item widget layout tweaks for windows Nyall Dawson 2014-10-01 Fix more warnings for QgsColorButtonV2 with invalid size Chris Crook 2014-10-01 API fixes to use Legend instead of Label where it makes more sense Chris Crook 2014-10-01 Changing decimal places to precision, allowing negative precision, improving rounding for locales with , instead of . for decimal point Chris Crook 2014-10-01 Using QString.replace instead of .arg to ensure that %1 and %2 are unambiguously replaced with lower and upper value. Also moving legend template to more sensible location, and adding tooltip for legend template Chris Crook 2014-10-01 Fix handling of link category boundaries with sorting of rows Nyall Dawson 2014-09-30 [composer] Correctly handle encoded HTML source (fix #11287) Nyall Dawson 2014-09-30 [composer] Use spin boxes for item position and size Nyall Dawson 2014-09-30 [composer] Don't snap to hidden items Nyall Dawson 2014-09-30 [color picker] Clicking the previous color should reset to that color Nyall Dawson 2014-09-30 [composer] Refresh refetches atlas feature from provider, more removal of duplicate map redraws Nyall Dawson 2014-09-30 [composer] Prevent multiple calculation of data defined properties Nyall Dawson 2014-09-30 Disable radio buttons in color dialog if not using first tab Marcel Dancak 2014-09-30 Mapserver: fixed GetFeatureInfo request on raster layers Nyall Dawson 2014-09-29 [composer] Simplify text used for item name for labels Denis Rouzaud 2014-09-29 use identify icons in the identify menu Denis Rouzaud 2014-09-29 fix feature title Nyall Dawson 2014-09-29 [composer] Fix pages are added but never removed with multiframe resizing Nyall Dawson 2014-09-29 [composer] Prevent more Qt warnings for html item Denis Rouzaud 2014-09-29 set icon of feature actions in the action menu Merge: 1c03067 04becdc volaya 2014-09-29 Merge pull request #1595 from giohappy/master [Processing] HTML output for r.sum Nyall Dawson 2014-09-29 [composer] Add a basic test suite for QgsComposerModel Nyall Dawson 2014-09-29 [composer] Default to 30 visible rows for table items, increase maximum number of rows to 99999 (fix #11284) Nyall Dawson 2014-09-29 [composer] Don't disable widgets accompanying data defined controls when there's no need to Nyall Dawson 2014-09-29 [composer] Ignore null field values or expressions which result in null when evaluating data defined settings Nyall Dawson 2014-09-29 [composer] Fix ctrl modifier not applying to wheel events when in move item content mode, add missing undo merge command for item zoom (refs #7974) Nyall Dawson 2014-09-29 [composer] Ignore locked items when using move item content tool. Keeps a consistent behaviour with the move/resize item tool, and allows for moving item content for maps which are stacked below locked items. Werner Macho 2014-09-29 [TRANSUP] transifex update Signed-off-by: Werner Macho Juergen E. Fischer 2014-09-28 migrate old renderer ranges (followup fcfafa0a) Nathan Woodrow 2014-09-28 Use a single format string using Qt format for renderer label Nathan Woodrow 2014-09-28 Don't crash with no attribute set in graduated renderer Nathan Woodrow 2014-09-28 Fix #10747 - Don't force multi type on point features Ref #10672 - Commited fix to force multitypes on shapefiles Nyall Dawson 2014-09-27 Follow up 27abd208 Larry Shaffer 2014-09-26 Followup to da3516c; find custom prefix QScintilla include directories Juergen E. Fischer 2014-09-26 german translation update Juergen E. Fischer 2014-09-26 indentation update Juergen E. Fischer 2014-09-26 dxf improvements: * save/restore dxf export dialog geometry * reduce debugging noise * output dxf in windows-1252 encoding * fix label layer assignment Salvatore Larosa 2014-09-26 change to messagebar some messageboxes in mainapp Juergen E. Fischer 2014-09-26 fix tabstops in graduate symbol renderer widget (followup 25a7be2) Martin Dobias 2014-09-26 How did GIS look like in 1990? Apologies to fellow developers for being silly Juergen E. Fischer 2014-09-26 remove unused ramp Juergen E. Fischer 2014-09-08 DXF export improvements: * tree view and attribute selection for layer assigment in dialog * support fill polygons/HATCH * represent texts as MTEXT instead of TEXT (including font, slant and weight) * support for RGB colors when there's no exact color match * use AutoCAD 2000 DXF (R15) instead of R12 * remove R18 test methods Funded-By: City of Uster Funded-By: Ville de Morges Funded-By: SIGE Merge: eaacb12 7c1efea alexbruy 2014-09-26 Merge pull request #1596 from anitagraser/patch-3 use "change" instead of "browse" for CRS selection Anita Graser 2014-09-26 use "change" instead of "browse" for CRS selection as described in http://hub.qgis.org/issues/11273 giohappy 2014-09-26 [Processing] HTML output for r.sum Merge: 6fcfb97 b07660a Martin Dobias 2014-09-26 Merge pull request #1509 from ahuarte47/Issue_10767 Fix bug #10767: Simplified rendering causing boxes to appear instead Merge: 0c6576c 251a8a4 mhugent 2014-09-26 Merge pull request #1593 from rldhont/qgis-server-print-legend [FEATURE][QGIS-Server] Legend filtering based on map in GetPrint Request Merge: b734e87 b558c08 Nathan Woodrow 2014-09-26 Merge pull request #1587 from ccrook/CategorizedRendererUpdate Categorized and graduated renderer enhancements rldhont 2014-09-06 [FEATURE][QGIS-Server] Legend filtering based on map in GetPrint Request Feature funded by Tecnostudi Ambiente, Faunalia and Andromede-oceanologie. The legend in composition was fixed and did not represent the layers in the map. With the work made by @wonder-sk on layer-tree and QgsComposerLegend users will be able to configure composer legend as based on all the project layer tree with auto-update model or filtered by map. This commit reused these two QgsComposerLegend's properties to filter it based on map in GetPrint Request The issue #4003 qgis_mapserver getPrint legend options can be closed. Denis Rouzaud 2014-09-26 remove old message boxes from map tools Nyall Dawson 2014-09-26 [composer] Add a checkbox to prevent drawing border and background for empty frame items Chris Crook 2014-09-26 Fixing null pointer on ramp bug Nyall Dawson 2014-09-26 [FEATURE][composer] Add checkbox and data defined button for controlling whether an item is excluded from composer exports/printouts. Chris Crook 2014-09-26 Modified labelling to include prefix, separator, suffix. Nyall Dawson 2014-09-26 [FEATURE][composer] Allow data defined control of atlas margin for maps Nyall Dawson 2014-09-26 dbManager - remove more 'Sorry' strings Salvatore Larosa 2014-09-25 [dbmanager] again replacement box->bar stuff....hopefully the last :-) Salvatore Larosa 2014-09-25 [dbmanager] followp 1646f67: fixes some string and changes more messageboxes Salvatore Larosa 2014-09-17 [dbmanager] messagebox => messagebar Martin Dobias 2014-09-25 Make QgsExpression parser reentrant. Fixes crashes when expressions are parsed in multiple threads. Sponsored by a big dose of caffeine. Nyall Dawson 2014-09-26 [composer] Switch attribute table column dialog over to QgsDoubleSpinBox Nyall Dawson 2014-09-26 [FEATURE][composer] Add checkbox to frame items for preventing export of page containing frame when frame is empty. This change allows users to create multiple pages containing extra frames for multiframe items (currently HTML and Attribute Table items), which are then only printed/exported if required. Sponsored by the City of Uster, Switzerland. Denis Rouzaud 2014-09-25 fix #11251 (embed form dual view icons) Denis Rouzaud 2014-09-25 [custom widgets] add missing date time widget plugin Denis Rouzaud 2014-09-25 add Qgs(Double)SpinBox to custom widgets Denis Rouzaud 2014-09-25 add Qgs(Double)SpinBox to SIP Denis Rouzaud 2014-09-25 add support for NULL values in range widget (new Qgs(Double)SpinBox classes to show the clear button) Merge: e37a5ad a4515f1 Nyall Dawson 2014-09-25 Merge pull request #1548 from manisandro/typo Fix typo in QgsVectorFileWriter::fileFilterString Martin Dobias 2014-09-25 [FEATURE] Legend filtering based on map content (in main window, composer, WMS) There is new "filter" button in layers panel that toggles this functionality and in composer legend widget. Related feature is that layer tree now shows symbols in map units with correct size (even when filtering is not enabled) so as the map view changes the legend node icons are updated too (if they use map units). GetLegendGraphics in WMS server ------------------------------- This is an extension of standard GetLegendGraphics request according to MapServer RFC 101. See the document for more details: http://mapserver.org/development/rfc/ms-rfc-101.html In summary, clients need to add BBOX and CRS/SRS parameters to get appropriate legend based on the given map view. Parameters WIDTH and HEIGHT are also taken into account as they specify map view image size for correct calculation of size of legend symbols (if they are based on map units). -- This software has been commissioned by Tuscany Region (Italy), co-funded by the European Commission and developed under the project LIFE12 ENV/IT/001054 LIFE + IMAGINE. The software has been realized by Gis3W s.a.s. Questo software è stato commissionato da Regione Toscana (Italia), cofinanziato dalla Commissione Europea e sviluppato nell'ambito del progetto LIFE12 ENV/IT/001054 LIFE + IMAGINE. Il software è stato realizzato da Gis3W s.a.s. Merge: f1de497 da3516c Nyall Dawson 2014-09-25 Merge pull request #1590 from slarosa/query_builder_enhanchements [query builder] editor enhancements: QTextEdit => QgsCodeEditorSQL Nyall Dawson 2014-09-25 Allow copying selected palette colors in color picker dialog Nyall Dawson 2014-09-14 Improved method for selecting random colors for categorised renderer, which should result in more visually distinct color choices Chris Crook 2014-09-25 Reverting class editor patch Merge: a5911e7 3f8a860 Chris Crook 2014-09-25 Merge remote-tracking branch 'upstream/master' into CategorizedRendererUpdate Matthias Kuhn 2014-09-24 Editor widgets: Show NULL value on numeric line edit Nyall Dawson 2014-09-24 Add tooltips for form/table switcher buttons in attribute dialog Nyall Dawson 2014-09-24 Add option for unscaled values for heatmaps rasters, set as default Nyall Dawson 2014-09-24 Clean up and modernise heatmap dialog using QgsMapLayerComboBox and QgsFieldComboBox. Nyall Dawson 2014-09-24 Fix heatmap failing for multipoint tables, fix incorrect calculation of heatmap input layer. Alexander Bruy 2014-09-12 [processing] use checkbox for boolean parameters Alexander Bruy 2014-09-14 [processing] add "Save as" functionality to History dialog (fix #10086) Denis Rouzaud 2014-09-24 use right-click for extended menu in identify map tool (to be removed when a true contextual menu is implemented) Chris Crook 2014-09-24 Implementation of graduated renderer breakpoint editor, minus SIP for editor volaya 2014-09-24 [processing] moved initialization to initGui() method volaya 2014-09-23 [processing] fixed how models read help info Werner Macho 2014-09-24 [TRANSUP] transifex and string update Signed-off-by: Werner Macho Denis Rouzaud 2014-09-24 setReadOnly will call paintEvent, followup ce486da41ea29f54406934d366c1bf00a205278d Denis Rouzaud 2014-09-24 line edit: do not display clear icon when read only Chris Crook 2014-09-24 Refactoring ready for manual update dialog. Also improves labelling of StdDev classifications and better determination of decimal places to use Merge: e0b9afb e194423 Chris Crook 2014-09-24 Merge branch 'master' into CategorizedRendererUpdate Denis Rouzaud 2014-09-23 followup 443fa8cc920216bb0ac470babf1709e1242d169c Matthias Kuhn 2014-09-23 Sip update and const correctness Denis Rouzaud 2014-09-23 add invalid label inly once ahuarte47 2014-07-18 #10767: No replace the simplified geometry by its BBOX when there are 'long' segments Nyall Dawson 2014-09-23 Followup bad94e0 Nyall Dawson 2014-09-23 [FEATURE][composer] Add checkbox for showing unique records only in composer attribute tables. (Sponsored by my OCD) Salvatore Larosa 2014-09-23 [query builder] editor enhancements: QTextEdit => QgsCodeEditorSQL Merge: 72a33ea bad94e0 Nathan Woodrow 2014-09-23 Merge pull request #1589 from slarosa/fix11247 [expression builder] fixes #11247 Salvatore Larosa 2014-09-23 [expression builder] fixes #11247 Matthias Kuhn 2014-09-23 QgsFilterLineEdit: Hide clear button when read only Matthias Kuhn 2014-09-22 Fix re-initialization of dual view Matthias Kuhn 2014-09-22 [FEATURE] Add suffix support for range widget Matthias Kuhn 2014-09-22 Update sip bindings Matthias Kuhn 2014-09-22 Better QgsFilterLineEdit support for several edit widgets Matthias Kuhn 2014-09-22 Add better Null support to QgsFilterLineEdit Matthias Kuhn 2014-09-22 Attribute form: do not try to edit non-editable fields Matthias Kuhn 2014-09-22 Make operations on the feature selection more memory friendly Nyall Dawson 2014-09-22 [FEATURE][composer] Add a checkbox to filter attribute tables to features which intersect the current atlas feature. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-09-22 [FEATURE][composer] Add choice of display style for empty tables. Options include hiding the entire table, showing empty cells, or displaying a set message in the table body. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-09-22 [FEATURE][composer] Add option for showing child features from a relation for attribute tables in the composer. If selected, the attribute table will show all related features to the current atlas feature within the table body. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-09-22 [FEATURE][composer] Option for current atlas feature as source for attribute tables. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-09-22 Allow creation of new color palettes in color dialog Nyall Dawson 2014-09-22 [composer] Avoid Qt warnings with composer html item Nyall Dawson 2014-09-22 [composer] Use a transparent background for HTML items Nyall Dawson 2014-09-22 Fix incorrectly failing composer html test Matthias Kuhn 2014-09-22 Followup 96e39f7 Matthias Kuhn 2014-09-22 Fix performance issues with moving selection on canvas (Funded by good will) Fix #11197 Matthias Kuhn 2014-09-22 Re-initialize relation editor on setRelationFeature Fix #11236 Merge: 86cbc2e 788575e Nyall Dawson 2014-09-22 Merge pull request #1540 from manisandro/composer_html_fixes Recompute webpage viewport dimensions when resizing html frames Merge: bb3ead3 4e3510e Nyall Dawson 2014-09-22 Merge pull request #1582 from nyalldawson/db_manager_fixes Usability improvements for db manager Matthias Kuhn 2014-09-22 Transfer ownership of drag-and-drop layout elements in sip Fix #11207 Nyall Dawson 2014-09-22 [FEATURE][composer] Allow manual control of column widths for attribute table items. Nyall Dawson 2014-09-22 Fix doxygen and build warnings Marco Hugentobler 2014-09-22 WFS server: insert/update/delete are only dependent on wfs publish property. Funded by Sourcepole QGIS Enterprise Matthias Kuhn 2014-09-22 Proper handling of NULL values for edit widgets * Photo widget preserves NULL value * Web widget preserves NULL value * Attribute table can distinguish between 0 and NULL (Fix #11235) Matthias Kuhn 2014-09-22 Restore buttonbox visibility after attribute form reload Followup febe37de Fix #11229 Fix #11194 Juergen E. Fischer 2014-09-22 german translation update Juergen E. Fischer 2014-09-22 fix doxygen warnings Matthias Kuhn 2014-09-21 Cleanup button box when reinitializing attribute form Nyall Dawson 2014-09-21 Some fixes to TestQgsComposerTableV2 Nyall Dawson 2014-09-21 [composer] Fix failing QgsAtlasComposition python test Nyall Dawson 2014-09-21 [composer] Add some missing Transfer/TransferThis methods to sip bindings Nyall Dawson 2014-09-21 Fix failing atlas tests Nyall Dawson 2014-09-21 Rebuild composer test images at 96 dpi to speed up unit tests Nyall Dawson 2014-09-21 Fix warning Denis Rouzaud 2014-09-19 create a relationsChanged signal for relation manager Nyall Dawson 2014-09-21 Split composer map overview tests off into their own test suite Nyall Dawson 2014-09-21 [composer] Clean up QgsComposerMap api, add docs and missing sip bindings for composer overviews Nyall Dawson 2014-09-20 Don't try to draw icon for hidden color buttons Nyall Dawson 2014-09-20 Add a changed signal to QgsRelationManager Chris Crook 2014-09-20 Removing compiler warnings Merge: abd9e3c 808464f Chris Crook 2014-09-20 Merge branch 'master' into CategorizedRendererUpdate Chris Crook 2014-09-20 Numerous enhancements to graduated and categorized symbol renderers Nyall Dawson 2014-09-20 [composer] Disable atlas if coverage layer is removed from project Nyall Dawson 2014-09-18 Add support for removing user palettes from color picker Larry Shaffer 2014-09-19 Fix 'geos_c.h not found' build error on Mac for browser app Merge: 9ae648b c945eec alexbruy 2014-09-19 Merge pull request #1531 from ccrook/DistanceMatrixFix [processing] Distance matrix fixes Merge: a809dcc 8ec82a3 alexbruy 2014-09-19 Merge pull request #1585 from cayetanobv/master [processing] fix column name in Zonal statistics alg Alexander Bruy 2014-09-19 use native GDAL functions Alexander Bruy 2014-09-19 [processing] fix script algorithm provider Alexander Bruy 2014-09-19 [processing] avoid division by zero in random points alg (fix #11215) Nathan Woodrow 2014-09-19 Add asImage method for QgsSymbol Merge: acae80e 11be64d Chris Crook 2014-09-19 Merge branch 'master' into CategorizedRendererUpdate Chris Crook 2014-09-19 WIP Denis Rouzaud 2014-09-18 more public methods, fix delete map tool Denis Rouzaud 2014-09-18 followup faf4b7f49ba67d0e6e110632bf85145ed570583e Denis Rouzaud 2014-09-18 fix crash in identify menu when closing a project with map layer actions Cayetano Benavent 2014-09-18 Zonal statistics: changed variance names (variable and field name; CV > var) Denis Rouzaud 2014-09-18 add missing Q_PROPERTYs to color button V2 Denis Rouzaud 2014-09-17 do not raise canvas but window (fix hiding message bar) Denis Rouzaud 2014-09-17 followup 0181df555378eabbf58a29b76e687c54178ca5f1 Denis Rouzaud 2014-09-17 fix enum in sip Denis Rouzaud 2014-09-17 disable maptool if editing stopped or dialog closed + fix deactivated map tool Nyall Dawson 2014-09-17 [composer] Remove gui controls for adding deprecated table item (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-17 [composer] API docs and python bindings for QgsComposerTableV2 (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-16 [FEATURE][composer] New composer item for multi frame attribute tables. Allows table content to be spread over multiple frames. Note: existing table items are not automatically upgraded to multiframe tables (to avoid API breaks with plugins), so only newly added tables gain these new options. QgsComposerTable is effectively deprecated and will be removed at the next API break. This work was sponsored by the City of Uster, Switzerland. Nyall Dawson 2014-09-16 [composer] Tweak calculation of total height of table (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-16 [composer] Fix crash on extend mode for multiframes (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-15 [composer] Initial test suite for QgsComposerTableV2 (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-12 [composer] Implement total height mechanisms for QgsComposerTableV2 (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-11 [composer] Fix calculation of visible row ranges in QgsComposerTableV2 (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-10 [composer] Implement saving/loading of QgsComposerTableV2 items (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-10 [composer] Don't consider border width in table if border is disabled (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-16 [composer] Fix update of gui controls when table and HTML properties change (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-09 [FEATURE][composer] Add option to table item to show headers on first frame, all frames, or no frames (fix #11136) (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-05 [composer] Implement min size method for frames. Minimum height for first frame in tables is set so that headers are always shown. (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-03 [composer] Begin work on calculating rows for QgsComposerTableV2 (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-03 [composer] Option for fixed frame sizes set by multi frame (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-07-31 [composer] Initial groundwork for multiframe table item (Sponsored by City of Uster, Switzerland) Nyall Dawson 2014-09-17 Option in color picker dialog to import a gpl palette to a new user scheme Nathan Woodrow 2014-09-18 Add timing for plugin loading Nyall Dawson 2014-09-17 Be a bit more forgiving when reading gpl files which don't exactly follow the specifications Nyall Dawson 2014-09-17 Fix height of color icon on color buttons in windows Nyall Dawson 2014-09-17 Add flags for controlling behaviour of color schemes Nyall Dawson 2014-09-17 Load gpl files from user folder to schemes Matthias Kuhn 2014-09-17 Save edit widgets also to QML style information. Fix #11123 Fix #10752 Nyall Dawson 2014-09-17 Follow up 21c81d6 Denis Rouzaud 2014-09-17 [SIP] add QgsIdentifyMenu Denis Rouzaud 2014-09-17 [Identify Menu] do not show the layer level if there is a single layer identified Denis Rouzaud 2014-09-17 fix QgsMapLayerAction SIP + do not copy features in identify menu (followup 21c81d6f512fa59f4bb4545c087a2bf5154008dd) Denis Rouzaud 2014-09-16 [QgsRelationReferenceWidget] correctly enable/disable set null button, do not disable line edit (already read only), make openForm and mapIdentification public, more documentation Matthias Kuhn 2014-09-17 Fix sip for QgsMapLayerActionRegistry Matthias Kuhn 2014-09-16 Pass attribute editor context for widgets on the attribute table Fixes relation reference widget in attribute table Denis Rouzaud 2014-09-16 Fix widget registry (SIP), few fixes for relation reference widget Nyall Dawson 2014-09-11 [FEATURE] New custom QGIS color picker dialog. Basically it's a Frankenstein's monster of the best bits of lots of other color picker implementations. Features include: - Sliders for hue, saturation, value, red, green, blue color components - Alpha slider - Option to copy/paste html color codes (in a variety of formats) - Before/after color preview, with alpha preview - Interactive 2D color ramp widget - Hue wheel/triangle widget - Editable color swatch lists - Live color sampler with option to sample over a set radius - Supports interaction with other apps via drag and drop of colors (OS support dependant) - Option to disable the dialog and use the native picker dialog instead (TODO: make the dialog so awesome that even @dakcarto switches across...) Credit for icons goes to 3nids! Denis Rouzaud 2014-09-16 [SIP] add missing argument in QgsEditorWidgetRegistry::QgsEditorWidgetWrapper Denis Rouzaud 2014-08-13 improved identify menu with a dedicated class Denis Rouzaud 2014-09-11 [QgsActionMenu] fix return feature Denis Rouzaud 2014-08-28 [QgsActionMenu] use ActionData to trigger actions Denis Rouzaud 2014-08-27 [QgsActionMenu] use correct level of actions Matthias Kuhn 2014-08-13 Add user data to identify actions to actionmenu Matthias Kuhn 2014-08-13 Add icon support to actions Matthias Kuhn 2014-08-11 Add action menu to attribute dialog Nyall Dawson 2014-09-16 Fix loss of hue information with slider widgets Nyall Dawson 2014-09-16 Allow setting color button to invalid color resulting in a blank button. Default to invalid color for new buttons. Nyall Dawson 2014-09-16 Add options for color buttons, allowing them to be used in a swatch type mode. Denis Rouzaud 2014-09-16 [QgsRelationReferenceWidget] make error label multiline Denis Rouzaud 2014-09-16 [QgsMapToolIdentifyFeature] allow initializing without any layer Juergen E. Fischer 2014-09-16 followup ui rename (followup 13eb726d) Martin Dobias 2014-09-16 Followup #10912 - detect cycles in joins and reject joins that would create cycle Cycle would otherwise cause infinite loop when updating fields and it does not make sense Martin Dobias 2014-09-15 Return to previous state of vector joins if the vector props dialog was cancelled Denis Rouzaud 2014-09-15 add RelationReferenceWidgetWrapper to SIP + complete RelationReferenceWidget Denis Rouzaud 2014-09-15 [Relation Reference Widget] allow removing open form button (option not available in QGIS) Matthias Kuhn 2014-09-15 Fix doxygen warning Matthias Kuhn 2014-09-15 Use unique value widget doxymentation to appropriate place Matthias Kuhn 2014-09-15 Doxymentation for relation manager Matthias Kuhn 2014-09-15 Even more Doxymentation Matthias Kuhn 2014-09-15 More Doxymentation Matthias Kuhn 2014-09-15 Doxymentation for QgsEditorWidgetV2 Nyall Dawson 2014-09-15 Use copy mode for drag and drop of colors from QgsColorSchemeList, prevent addition of duplicate colors Nyall Dawson 2014-09-15 Add a colorSelected signal to QgsColorSchemeList Nyall Dawson 2014-09-15 Remove colors from scheme list on delete/backspace press Nyall Dawson 2014-09-15 Add an isDirty method to QgsColorSchemeList Salvatore Larosa 2014-09-15 [browser] fix margin to toolbar Werner Macho 2014-09-15 [TRANSUP] transifex string update Signed-off-by: Werner Macho Salvatore Larosa 2014-09-15 [browser] small ui reworking for consistency Denis Rouzaud 2014-09-15 rename relreference...to relationreference Denis Rouzaud 2014-09-15 [Releation reference widget] use separate button for remove action Denis Rouzaud 2014-09-15 [Releation reference widget] more coherent method names Denis Rouzaud 2014-09-15 add relation reference widget to SIP Alexander Bruy 2014-09-15 [processing] remove selection before running Select by location algorithm (fix #10873) Juergen E. Fischer 2014-09-15 german translation update Juergen E. Fischer 2014-09-15 remove unused variable Martin Dobias 2014-09-15 Renamed visibility "groups" to "presets" to avoid confusion with ordinary groups If you have a project file using this functionality, you may need to run a simple replace of "visibility-group" to "visibility-preset" Martin Dobias 2014-09-15 Revert change of rule-based renderer identifier as it breaks project files Martin Dobias 2014-09-15 Show active visibility group in menu also in map composer map widget Martin Dobias 2014-09-15 Fix build error with SIP (4.15.5) Nyall 2014-09-15 [dbmanager] Try to set sensible default column choice for sql window Nyall 2014-09-15 [dbmanager] Don't trip up when loading a sql layer if sql ends with a ; Nyall 2014-09-15 [dbmanager] Don't set parent for dbmanager window, allows for minimising window. Unminimise window when activating dbmanager. Juergen E. Fischer 2014-09-15 indent multiline messages in log Juergen E. Fischer 2014-09-14 doxymentation fix Juergen E. Fischer 2014-09-14 fix build on PyQt <4.9.5 Nathan Woodrow 2014-09-14 Remove unused variable Nathan Woodrow 2014-09-14 Set auto raise for identify toolbar icons Nathan Woodrow 2014-09-14 Keep log button in status bar. Removing UI elements under the user isn't good UX Nathan Woodrow 2014-09-14 Use QPlainTextEdit for message log. Less memory and much much faster then QTableWidget Martin Dobias 2014-09-14 Fix #11200 (Symbology changes of a layer aren't reflected in overview panel) Merge: fbea7d4 a53bf7e Martin Dobias 2014-09-14 Merge remote-tracking branch 'origin/master' Martin Dobias 2014-09-14 Real name of @leyan instead of pseudonym Martin Dobias 2014-09-14 GEOS context accessor for PAL Martin Dobias 2014-09-14 Use _r GEOS API in geometry import test Nathan Woodrow 2014-09-14 Move identify toolbar to top to match other docks with toolbars Merge: e4f68b1 c5f2f7e Nathan Woodrow 2014-09-14 Merge pull request #1304 from manisandro/replace_lineedit_with_combobox_snappingdialog Use a spinbox instead of a lineedit for the snapping tolerance Merge: e52c123 8b98942 Nathan Woodrow 2014-09-14 Merge pull request #1571 from slarosa/context-help [context-help] set heading to 3 for heatmap plugin and python console help file Merge: f214a01 340d417 Nathan Woodrow 2014-09-14 Merge pull request #1576 from leyan/graduatedRenderer Automatic update of label and neighboring ranges boundaries in graduated renderer. Fix #9312. Fix #9900, Fix #10203 Merge: e46aa62 7fdaf08 Nathan Woodrow 2014-09-14 Merge pull request #1570 from slarosa/heatmap-plugin [heatmap-plugin] replace messagebar to messagebox Merge: e46aa62 6354dd3 Martin Dobias 2014-09-13 Merge remote-tracking branch 'rouault/use_geos_reentrant_api' Conflicts: src/core/pal/layer.cpp src/core/qgsgeometry.cpp src/core/qgspallabeling.cpp Martin Dobias 2014-09-13 Added @leyan to contributors Merge: 2313be9 ced5ae4 Martin Dobias 2014-09-13 Merge pull request #1556 from leyan/convertToRuleBasedSymbology [FEATURE] Keep renderer settings when changing renderer type (where it is possible) Marco Hugentobler 2014-09-02 Fix check of allowed wfst capabilities in project. Funded by Sourcepole QGIS Enterprise Juergen E. Fischer 2014-09-13 fix and sync QgsAttributeEditorContext sip bindings Martin Dobias 2014-09-13 [FEATURE] Joins: optionally use just a subset of fields from the joined layer Martin Dobias 2014-09-13 Joins: optionally use just a subset of fields from joined layer Martin Dobias 2014-09-12 Support for setSubsetString() in memory provider Nyall Dawson 2014-09-13 Default names for colors when adding to schemes Nathan Woodrow 2014-09-12 Restore canvas colour for overview window Nathan Woodrow 2014-09-12 Simplify python console init text Matthias Kuhn 2014-09-12 Use wait cursor when loading forms Matthias Kuhn 2014-09-01 [relation widgets] General update * Improve speed (lazy loading) * Loop detection for circular dependencies (Fix #10850) * Some memory leaks fixed * More const-correctness * Fix the attribute editor context Denis Rouzaud 2014-08-25 [relation reference widget] minimize feature request, do not fill combobox if not shown, button to remove related feature Matthias Kuhn 2014-09-09 Update to strings in add postgis layer dialog Martin Dobias 2014-09-12 [FEATURE] display rule-based renderer legend in a pseudo-tree (in layer tree model/view) Juergen E. Fischer 2014-09-10 debian packaging update Martin Dobias 2014-09-11 Move triggerRepaint() to QgsMapLayer, use it instead of deprecated clearCacheImage() Martin Dobias 2014-09-11 Make sure to refresh canvas when layer's CRS is changed Nathan Woodrow 2014-09-11 Fix toolbar order with add and new buttons Nathan Woodrow 2014-09-11 Reduce margins on bookmarks dialog Denis Rouzaud 2014-09-11 fix signal in QgsDateTimeEdit Nyall Dawson 2014-09-11 Support dragging colors from QgsColorPreviewWidget Nyall Dawson 2014-09-11 Accept dropped colors on color widgets Nyall Dawson 2014-09-11 Non editable color schemes should not be editable in QgsColorSchemeList Nyall Dawson 2014-09-11 Retain alpha if entering colors with no explicit alpha into QgsColorTextWidget Denis Rouzaud 2014-09-11 [SIP] add missing activated/deactivated signals for map tools Nathan Woodrow 2014-09-11 Set auto raise for attribute table buttons to match reset of UI Merge: 890f921 79b3a8f Jürgen Fischer 2014-09-10 Merge pull request #1577 from RossGammon/master Description: Fix qreal VS double issues. Juergen E. Fischer 2014-09-10 fix #11110 Juergen E. Fischer 2014-09-10 fix spanish translation error Nathan Woodrow 2014-09-10 Move remove layer/group to legend dock. Remove from toolbar Nathan Woodrow 2014-09-10 Resize snapping column widths. Reduce dialog margins Nyall Dawson 2014-09-10 Support #RRGGBBAA style color codes in QgsSymbolLayerV2Utils color parsing Leyan 2014-09-10 update Martin Dobias 2014-09-10 Do not use partially checked state of legend nodes when layer is not visible This is slightly confusing, moreover in some styles the items are not immediately updated, producing a weird effect when hovering mouse over legend nodes. http://www.youtube.com/watch?v=HNDE1Xp5UZA&feature=youtu.be Martin Dobias 2014-09-10 Fix #11169 (toggling symbol visibility does not trigger refresh) This could have happened when the same project was reloaded, then map canvas failed to clear itself and some connections to repaintRequested were broken Martin Dobias 2014-09-10 Make rule-based renderer rule keys persistent So they can be used for visibility groups - before they got assigned new keys on every instantiation of Rule Martin Dobias 2014-09-10 Fix #11143 take 3 (cannot remove visibility groups) Now we also handle rules that are not valid anymore Martin Dobias 2014-09-10 Fix emitting of currentLayerChanged() signal Use layer ID instead of persistent index to remember last layer. Persistent index will get invalid during removal of layers and the signal was not emitted when current index got invalid (none). This was causing a crash in GPS information widget Juergen E. Fischer 2014-09-09 mssql provider: fix filter type interpretation (fixes #11076) Martin Dobias 2014-09-09 Fix #10912 (joined attributes are not correctly propagated in nested joins) This commit makes QgsVectorLayerJoinBuffer listen to changes in fields of joined vector layers in order to update the cache and inform parent layer Juergen E. Fischer 2014-09-09 german translation update Leyan 2014-08-30 refactor to a more general convertFromRenderer function Merge: b9fc2b5 e037697 Jürgen Fischer 2014-09-09 Merge pull request #1578 from alexbruy/layer-submenu move all "Add Layer" actions to submenu Leyan 2014-08-25 Add factory annotation and use clone for rule based renderer Leyan 2014-08-24 use previous renderer if possible, instead of last applied renderer Leyan 2014-08-24 add sip Leyan 2014-08-24 creation of a convertToRuleBasedRenderer() function Nyall Dawson 2014-09-09 Add a bunch of useful interactive color widgets to GUI, including color wheels, ramps, boxes, and text edits. Martin Dobias 2014-09-08 Fix #11143 (cannot remove visibility group) take two Martin Dobias 2014-09-08 Getting closer to the perfection: a bit of spacing for 'layers' toolbar (like browser) Nyall Dawson 2014-09-08 [composer] Fix flip of N/S and E/W coordinates when using reprojected grids Nyall Dawson 2014-09-08 [composer] Use proper prime and double prime symbols for grid annotations (because good typography and cartography go hand in hand..!) Martin Dobias 2014-09-08 Doxygen: do not add "Definition at line N of XYZ.cpp" to each method This is another tweak meant to declutter the generated documentation Martin Dobias 2014-09-08 Doxygen: Do not show private members, referenced by/references relations This change should help to make the API docs less cluttered. The above mentioned pieces of information are not very useful for people reading docs - and core developers have their IDEs for checking references. Martin Dobias 2014-09-07 Fix #11146 (rule check state not saved) Alexander Bruy 2014-09-06 put Oracle GeoRaster plugin button to new submenu Alexander Bruy 2014-09-06 move "Add Layer..." buttons to submenu Juergen E. Fischer 2014-09-06 german translation update Juergen E. Fischer 2014-09-06 fix metasearch typo (followup 5cb7d357) Juergen E. Fischer 2014-09-06 fix metasearch syntax error Martin Dobias 2014-09-06 Remove some superfluous empty vertical space from browser dock widget Martin Dobias 2014-09-06 Fix yesterday's changes to currentGroupNode() (fixes addition of groups) Martin Dobias 2014-09-06 Do not create collaboration diagrams in doxygen docs The diagrams do not really add much value and do not highlight the important concepts of classes, confusing the user and making things looks more complicated than they are Martin Dobias 2014-09-06 Start of doxygen page about API breaks Ross Gammon 2014-09-05 Description: Fix qreal VS double issues. This patch tries to fix qreal VS double issues for ARM There are two seperate issues, the first is trivial just a typecast on a const. The second is however less-trivial and needs to be checked before merging. sip doesn't seem to like the type QVector on platforms where qreal is float but changing the type to qreal may have knock-on impacts on the native code. QGIS Issue: http://hub.qgis.org/issues/11148 Debian Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760535 Author: Peter Michael Green Merge: 0a7ddfa 3eb6e7c Tom Kralidis 2014-09-05 Merge pull request #1575 from geopython/MetaSearch-0.3.1 Meta search 0.3.1 Martin Dobias 2014-09-05 Fix potential crash when adding a group Martin Dobias 2014-09-05 Fix QgsLayerTreeModel naming conventions and update Python bindings I was using a mixture of terms 'symbology items' and 'legend nodes' for the same thing which was confusing Martin Dobias 2014-09-05 Fix #11126 (Make up/down buttons work also for layer tree nodes) Martin Dobias 2014-09-05 Respect the overridden layer name in composer legend also in rendered legend Martin Dobias 2014-09-05 If layer is in editing mode, show the pencil icon instead of embedded legend icon Martin Dobias 2014-09-05 Keep a bit of spacing in layer tree dock widget Martin Dobias 2014-09-05 Fix #11143 (remove visibility groups after removal of a layer) Martin Dobias 2014-09-05 [FEATURE] Toolbar for layer tree specific actions Martin Dobias 2014-09-05 Visibility groups: also record visibility states of renderer categories (legend nodes) into groups Visibility of a layer is not stored within the map layer, but visibility of renderer categories (which turn into legend nodes) is stored inside renderer and that one in turn inside map layer. This fact may result in surprising behavior when change of visibility group for a composer map will affect other composer maps (and main canvas). The only way to overcome the problem would be to have the possibility to use multiple renderers with one layer. Nyall Dawson 2014-09-05 Fix crash when trying to edit color ramp with black start/end colors Larry Shaffer 2014-09-04 Fix Mac build Juergen E. Fischer 2014-09-04 postgres provider: don't warn, when queries return 'numeric' constants Juergen E. Fischer 2014-09-04 fix warnings Leyan 2014-09-01 Automatic update of label and neighboring ranges boundaries Martin Dobias 2014-09-04 [FEATURE] Access to visibility groups in map composer Martin Dobias 2014-09-04 [FEATURE] Visibility groups of map layers in layer tree New toolbar button allows quick changes between the groups of layers that should be visible. Also features a simple way for management of the groups (add/remove) Sandro Santilli 2014-09-04 Allow loading pgraster tables with non-default raster field name Before this change you could only load tables where the raster field was named "rast". Sandro Santilli 2014-09-04 Allow loading PostGIS Rasters from partially configured connections Partially configured connection are those for which an hostname or username or port etc. are not specified, relying on libpq defaults. It was already fixed for geometries but rasters needed more love. See #9037. Nyall Dawson 2014-09-04 [composer] Add some missing sync groups for group boxes Nyall Dawson 2014-09-04 Ensure top of QgsCollapsibleGroupBox is visible after expand. Previous behaviour was to scroll to center of group box for long group boxes, which is confusing for users. Juergen E. Fischer 2014-09-04 fix windows build Tom Kralidis 2014-09-03 merge back ef0e7d09168d43b0529a1f819108a4741c7e9e75 Marco Hugentobler 2014-09-03 Add unit tests for geometry import (wkt,wkb,geos) Tom Kralidis 2014-09-03 remove code Tom Kralidis 2014-09-03 update MetaSearch to 0.3.1 Nyall Dawson 2014-09-03 [composer] Fix failing grid tests Nyall Dawson 2014-09-03 [composer] Add some python tests for QgsComposerMapGrid (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Update sip bindings, add missing sip bindings for QgsComposerMapGrid (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Clean up map grid API, fix bug with grids not rearranging correctly (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Deprecate a bunch of map grid calls (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Improvements to grid annotation string formatting (sponsored by NIWA, New Zealand): - Don't show directional suffix for 0 or 180 latitudes or 180 longitudes - Add padded coordinate modes - Fix precision errors causing minutes/seconds > 60 - Wraparound longitudes to restrict them to the -180 to 180 degree range Nyall Dawson 2014-09-03 [composer] Fix N/S and E/W are reversed in grid annotation strings (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Add simple line border frame style for composer map grids (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Some small tweaks to grid defaults and ui (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [FEATURE][composer] Add tick styles for frames. Options include drawing ticks only inside the map frame, drawing ticks outside the frame, or drawing ticks both inside and outside the frame. (fix #6954) (Sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Add tests for grids on specific sides (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Remove raster layer from composer grid tests (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [FEATURE][composer] Add options for controlling which sides of the map a grid frame is drawn (sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [FEATURE][composer] New frame/annotations only grid style. Selecting this style causes only the frame and annotations to be drawn, with no grid lines or other markings over the map. (Sponsored by NIWA, New Zealand) Nyall Dawson 2014-09-03 [composer] Split composer map grid tests from composer map tests (sponsored by NIWA, New Zealand) Juergen E. Fischer 2014-09-01 german translation update Merge: f97d5e3 dab5ff9 Jürgen Fischer 2014-09-02 Merge pull request #1574 from mhugent/getFeatureExpression Get feature expression Marco Hugentobler 2014-09-02 Add function help for getFeature Denis Rouzaud 2014-09-02 [custom widgets] adds filter line edit Marco Hugentobler 2014-09-02 [FEATURE]: Add getFeature function in Expression Nyall Dawson 2014-09-02 More const correctness, fix crash with atlas Merge: 368755a 6d4dee9 Nyall Dawson 2014-09-02 Merge pull request #1572 from jef-n/store-blend-mode Save blendmode/composition mode in project file Juergen E. Fischer 2014-09-02 Save blendmode/composition mode in project file Denis Rouzaud 2014-09-02 fix sorting of map layer combo box and more const correctness Salvatore Larosa 2014-09-01 [context-help] set heading to 3 for heatmap plugin and python console help file Salvatore Larosa 2014-09-01 [heatmap-plugin] replace messagebar to messagebox Denis Rouzaud 2014-09-01 more const correctness Denis Rouzaud 2014-09-01 SIP file for new date time edit Denis Rouzaud 2014-09-01 added new QgsDateTimeEdit to custom widgets Denis Rouzaud 2014-08-28 new edit widget for date/time capable of setting null dates Nyall Dawson 2014-09-01 [composer] Support drag and drop restacking of items via item panel (fix #11058) Denis Rouzaud 2014-09-01 more flag operators declaration in SIP, better use of flags in data defined button Denis Rouzaud 2014-09-01 [SIP] add missing operator for flags Juergen E. Fischer 2014-09-01 german translation update Juergen E. Fischer 2014-09-01 indentation update, Q_FOREACH support in astyle, doxygen fix Denis Rouzaud 2014-08-27 [map layer actions] action for group of features, rename availability to target (flags), only emit signal for defined target" Conflicts: src/gui/qgsmaplayeractionregistry.cpp src/gui/qgsmaplayeractionregistry.h Nyall Dawson 2014-09-01 [composer] Add zoomToExtent for QgsComposerMap, allows easily fitting a set extent into the map item without altering the item's shape Martin Dobias 2014-09-01 Fix doxygen warnings, fix missing bindings Martin Dobias 2014-08-26 Followup fix for #11006 (spotted by Nyall - thanks) Martin Dobias 2014-08-25 Fix #11006 (wrong size of symbols in print composer legend if map units are used) Martin Dobias 2014-08-22 Added header to new files Martin Dobias 2014-08-22 More Python wrapper updates + fixes Martin Dobias 2014-08-22 Revert previous changes to QgsLegendModel and its items Martin Dobias 2014-08-22 API fixes, added missing python wrappers Martin Dobias 2014-08-20 Update Python bindings Martin Dobias 2014-08-20 Improve docs for QgsLegendSymbolItemV2 Martin Dobias 2014-08-20 Introduce scale-based filtering of legend nodes (in WMS) Martin Dobias 2014-08-20 Fix WMS with custom rule / no labels Martin Dobias 2014-08-19 Legend customization via layer node's custom properties This allows for reordering, renaming and removal of legend nodes. Composer either uses default project layer tree (auto-update on) or customized layer tree (auto-update off). Martin Dobias 2014-08-12 Work in progress: Make composer legend widget work with QgsLayerTreeModel Martin Dobias 2014-08-12 Layer tree model support replacement of layer tree + layer node handles removal of layer cleanly Martin Dobias 2014-08-12 New flag to disable checkboxes for legend nodes in layer tree model Martin Dobias 2014-08-12 Support for custom labels in symbol-v2 legend node Martin Dobias 2014-08-12 Moved QgsLayerTreeModelLegendNode (+derived classes) to a new file Martin Dobias 2014-08-11 Use QgsLayerTreeModel as a source of data for legend rendering instead of QgsLegendModel This is work in progress, customization of legend is not working yet Martin Dobias 2014-08-08 Fixed bugs with feature count, maintenance of QgsLegendSymbolItemV2 Martin Dobias 2014-08-07 Make WMS server use QgsLegendRenderer Martin Dobias 2014-08-07 Force vector output for preview icon so it avoids cached pixmaps Martin Dobias 2014-08-07 Fix nested WMS layer data items Martin Dobias 2014-08-06 Fix rendering of WMS Legend Graphics Martin Dobias 2014-08-06 Fix crash in WMS GetLegendGraphics Martin Dobias 2014-08-06 Added support for check states to rule-based renderer Martin Dobias 2014-08-06 Identify renderer's categories/rules by key instead of index Martin Dobias 2014-08-06 Scale range supported by symbol in QgsLegendSymbolItemV2 Martin Dobias 2014-08-06 Creation of legend items for map layers moved to QgsMapLayerLegend Martin Dobias 2014-08-04 Automatic creation of composer legend symbol item icon Martin Dobias 2014-07-21 Move bits of legend rendering code into item classes + add rendering test Juergen E. Fischer 2014-08-31 debian packaging update Juergen E. Fischer 2014-08-31 german translation update Merge: acf1f70 793db5f Jürgen Fischer 2014-08-30 Merge pull request #1569 from nyalldawson/measure_undo Allow removing last point while measuring Nyall Dawson 2014-08-30 Allow removing last point while measuring via del/backspace keys (fix #10176) Juergen E. Fischer 2014-08-30 Fix #11092: * fix crash when invalid shapefile layer is repacked * error out if vector file writer is invoke with an empty filename * don't allow "Save as..." without a given filename Juergen E. Fischer 2014-08-30 grass provider: catch unavailable mapserver (fixes #11025) Juergen E. Fischer 2014-08-30 Fix GEOS dev detection (fixes #11081) Juergen E. Fischer 2014-08-30 fix doxygen warnings Werner Macho 2014-08-29 [TRANSUP] transifex and string update Signed-off-by: Werner Macho Merge: f92fd58 8c7b394 mhugent 2014-08-29 Merge pull request #1547 from marcel-dancak/bbox-bugfix Mapserver: fixed bounding box of points features collection returned in GetFeatureInfo request Alexander Bruy 2014-08-29 fix layout of the New Vector Layer dialog Martin Dobias 2014-08-29 Added Michael Douchin to contributors Merge: 99ff44c 092b7fc Martin Dobias 2014-08-29 Merge pull request #1566 from mdouchin/debug_project_path_embedded_items Fix #11109 (Write relative path in project XML for embedded groups and layers) Merge: 6130505 75b3464 alexbruy 2014-08-28 Merge pull request #1564 from anitagraser/patch-2 [processing] check if value is None before trying to cast float Michael Douchin 2014-08-28 [BUGFIX] Issue #11109 - Write relative path in project XML for embedded groups and layers when needed anitagraser 2014-08-28 check if value is None before trying to cast float the tool used to fail when there were NULL values in the fields Alexander Bruy 2014-08-28 [processing] fix vector functions definitions Matthias Kuhn 2014-07-29 Add icon size 48 and 64 To make life easier on touch devices Fix #9527 Juergen E. Fischer 2014-08-27 allow reactivation of measurement after deactivation Matthias Kuhn 2014-08-27 Followup 1bdef80: Fix crash when layer not in edit mode Matthias Kuhn 2014-08-27 QgsVectorLayer::uniqueValues() also returns uncommitted values Denis Rouzaud 2014-08-22 [custom widgets] add relation reference Denis Rouzaud 2014-08-20 relation editor: use a public constructor, remove UI file rename file according to class name Matthias Kuhn 2014-08-26 openFeatureForm: Update attributes on provided when used modal Fix #11099 Matthias Kuhn 2014-08-26 CollapsibleGroupBox: hide content when collapsed Denis Rouzaud 2014-08-19 editor widgets: rename to wrapper to distinguish from the real widgets Sandro Mani 2014-08-24 Update sip bindings, add method documentation Sandro Mani 2014-08-24 Call renderCachedImage after viewport has been computed Sandro Mani 2014-08-14 Recompute webpage viewport dimensions when resizing html frames (Funded by Sourcepole QGIS Enterprise) Juergen E. Fischer 2014-08-25 german translation update Juergen E. Fischer 2014-08-25 indentation update Merge: 7b84ccc 6cd8e4f Tim Sutton 2014-08-25 Merge pull request #1561 from DelazJ/ProjSelector Activate the help button in select projection Dialog DelazJ 2014-08-25 Add slot on ContextHelp button DelazJ 2014-08-25 Referencing Help button function Nyall Dawson 2014-08-25 [composer] Don't draw handles around locked items (fix #11059) Matthias Kuhn 2014-08-25 Fix tab order in add relation dialog Merge: d70235f 0bfd5fb Tim Sutton 2014-08-25 Merge pull request #1549 from DelazJ/TableManager_GUI Set 0 as default value of srid in DB_Manager dialogs (issue #7083) Nyall Dawson 2014-08-25 [composer] Show selected items in bold in items tree panel (fix #11057) Merge: f1aafe0 6cfb6e6 Tim Sutton 2014-08-25 Merge pull request #1552 from DelazJ/SaveAsDialog Put by default to on the "Add layer to map canvas" option when saving new file (issue #6642) Merge: ae25009 937a97d Tim Sutton 2014-08-25 Merge pull request #1557 from DelazJ/VectorSymbolselector fix #10472 : Enlarge btnSaveSymbol so it shows fully its text in all languages Merge: 4d1595c 23eff1f Tim Sutton 2014-08-25 Merge pull request #1551 from DelazJ/FToolsAddNewLayerToMapCanvas Put by default to on the "Add result layer to the map canvas" option when using fTools functions (issue #6642) Nyall Dawson 2014-08-25 [composer] Remove destructive 'Load from template' action, replace with non-destructive 'Add items from template' action Nyall Dawson 2014-08-25 Add an edit button for shapeburst and gradient color ramps Nyall Dawson 2014-08-25 Fix unit choice for ellipse symbol layer type Nyall Dawson 2014-08-25 Add a platform-specific size hint for QgsColorButtonV2 (refs #11060) Nyall Dawson 2014-08-25 Fix some alignment and tab issues with symbol dialogs (refs #11060) DelazJ 2014-08-25 Enlarge btnSaveSymbol so it shows fully its text The btnSaveSymbol has his width increased from 50 to 70 when horizontalSpacer has its width decreased from 40 to 20 Matthias Kuhn 2014-08-25 Range Widget: Only enable for supported data types And some doxymentation Juergen E. Fischer 2014-08-24 german translation update Juergen E. Fischer 2014-08-24 osgeo4w: fix plugin install, add more error checking and include latest updates also in package.cmd Nyall Dawson 2014-08-24 [composer] Fix regression in locked map layers (fix #11089) Nyall Dawson 2014-08-24 Standardise to 6 decimal places for controls which can be set to map units in symbology (fix #11064) Nyall Dawson 2014-08-24 Where possible, maintain properties of symbol layer when changing symbol layer type (fix #8389) Nyall Dawson 2014-08-24 Fix warning Salvatore Larosa 2014-08-23 set scrollarea to no frame for settings in plugin manager rldhont 2014-08-22 Bug #10974 QGIS WFS Server provides too much precision PR #1520 UI Add a cell in the WFS vector layer table to specify the coordinate precision by layer elpaso 2014-08-11 Fixed ui conflict and Fixed UI options rldhont 2014-08-09 Bug #9797 Add a precision setting for GetFeatureInfo geometry attributes Add precision to QgsGeometry method exportToWKT and use it in GetFeatureInfo rldhont 2014-07-29 Bug #10974 QGIS WFS Server provides too much precision In the GetFeature request QGIS WFS Server uses the static method: QgsDoubleToString. This method returns double with a precision fixed to 17. We do not need that much precision for coordinates. Firstly because we are not able to measure a position on earth with a lower micron precision. Secondly because it unnecessarily overload response. I propose to add the ability to specify the precision in the QgsDoubleToString method. Matthias Kuhn 2014-08-21 Fix memory alignment issues on ARM Matthias Kuhn 2014-07-11 Fix QgsFieldModel on ARM volaya 2014-08-22 [processing] fixed bug in ModelerScene when position of output is not defined volaya 2014-08-22 [processing] fixed parameter definition parsing for parameters of type integer volaya 2014-08-22 [processing] added support for old model file format Juergen E. Fischer 2014-08-22 add missing file from 72e779c3e DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map canvas DelazJ 2014-08-21 Add by default the result file to the map DelazJ 2014-08-21 Update frmEliminate.ui DelazJ 2014-08-21 Add saved file to map canvas by default DelazJ 2014-08-21 Default srid value to use in new geom column : 0 DelazJ 2014-08-21 Default srid value to 0 in new table geom column DelazJ 2014-08-21 set default srid value to 0 in new geom column Sandro Mani 2014-08-21 Fix typo in QgsVectorFileWriter::fileFilterString Marcel Dancak 2014-08-21 Mapserver: fixed bounding box of points features collection returned in GetFeatureInfo request Juergen E. Fischer 2014-08-21 include pyqt uic module for custom widgets in debian package Juergen E. Fischer 2014-08-21 fix windows build Juergen E. Fischer 2014-08-20 osgeo4w: also move pyqt4 uic module for custom widgets (followup 72e779c3e) Juergen E. Fischer 2014-08-20 osgeo4w: move Qt plugins (sql and designer) into qgis directory Juergen E. Fischer 2014-08-19 make some rendering errors translatable Denis Rouzaud 2014-08-20 custom widget lib: include resources to show icons in designer Juergen E. Fischer 2014-08-20 make custom widget tooltips translatable Denis Rouzaud 2014-08-20 relation reference: correctly initialize and set properties for widget Denis Rouzaud 2014-08-20 add new custom widgets to Qt Designer plugin Denis Rouzaud 2014-08-20 can create relation reference in a widget (for custom UI forms) Nyall Dawson 2014-08-19 [composer] Holding alt while pressing arrow keys results in moving items 1 pixel Nyall Dawson 2014-08-19 [FEATURE][composer] Allow remote urls to be entered as picture path for picture items, and automatically fetch them. Sponsored by the City of Uster, Switzerland. Nyall Dawson 2014-07-29 Add a simplified class for fetching HTTP network content Merge: 1b205be 4cfe24a Denis Rouzaud 2014-08-19 Merge pull request #1516 from 3nids/vr_geom_relation map identification for relations Denis Rouzaud 2014-08-18 custom widget for relation reference widget Denis Rouzaud 2014-08-18 select related feature on the canvas from the relation reference widget (in the attribute form) Denis Rouzaud 2014-05-22 use a specific class for the widget (to be used as a custom widget), rename old _widget to _wrapper Denis Rouzaud 2014-08-18 identify shows a non-modal feature form Denis Rouzaud 2014-05-22 new map tool to select single feature Matthias Kuhn 2014-08-18 Fix python bindings for QgsRelation.fieldPairs() Nathan Woodrow 2014-08-18 Allow + for string concat in QgsExpression Nyall Dawson 2014-08-18 [composer] Fix crash when loading project Matthias Kuhn 2014-08-18 Doxymentation Merge: 8d822c4 f267791 mhugent 2014-08-18 Merge pull request #1533 from manisandro/multilabeling_datadefined Fix multilabeling with datadefined value Merge: 621edef ff172b2 mhugent 2014-08-18 Merge pull request #1541 from marcel-dancak/master Mapserver: enhancements of searching with GetFeatureInfo request Juergen E. Fischer 2014-08-18 make QgsMapLayerRegistry ctor private (it's a singleton) Matthias Kuhn 2014-08-18 QgisInterface::getFeatureForm() returns a QgsAttributeDialog And some API comments Marcel Dancak 2014-08-18 wmsprovider: store tileWidth and tileHeight values in properties of wms provider Merge: 8888c5f 8105545 Marcel Dancak 2014-08-18 Merge remote-tracking branch 'upstream/master' Denis Rouzaud 2014-08-18 custom widget for new color button Denis Rouzaud 2014-08-18 fix tool tip Juergen E. Fischer 2014-08-17 rename other canbeGeneralizedByMapBoundingBox methods to isGeneralizableByMapBoundingBox Juergen E. Fischer 2014-08-17 fix polygon generalization artifacts, if last ring segment is one of two segments exceeding the tolerance plus some cleanups Juergen E. Fischer 2014-08-17 doxygen fixes Juergen E. Fischer 2014-08-17 indentation update Nyall Dawson 2014-08-17 Fix typo Nyall Dawson 2014-08-17 Allow importing and exporting to GIMP palette file (gpl) from color list Nyall Dawson 2014-08-17 Improvements to color list: - Cleanup code - Support copying and pasting multiple colors to list - Support additional color list mime formats Nyall Dawson 2014-08-16 Support dropping multiple colors into a color list widget Juergen E. Fischer 2014-08-17 revert german part of 62200eb55 Werner Macho 2014-08-17 [TRANSUP] next update transifex and source Signed-off-by: Werner Macho Juergen E. Fischer 2014-08-17 german translation update Juergen E. Fischer 2014-08-17 indentation update Juergen E. Fischer 2014-08-17 fix windows build Nyall Dawson 2014-08-16 [FEATURE] Project specific color scheme, set through default styles tab in project properties Nyall Dawson 2014-08-16 New GUI control for an editable list of colors from a color scheme. Supports drag and drop reordering, drag and drop colors from external apps (on supported OS). Nyall Dawson 2014-08-16 Add method for finding matching schemes from a color scheme registry Nyall Dawson 2014-08-16 Add method for editing color scheme colors Nyall Dawson 2014-08-16 Add set of default colors for custom color palette Matthias Kuhn 2014-08-15 Fix margins for expressionbuilder on gnome Marcel Dancak 2014-08-15 Mapserver: enhancements of searching with GetFeatureInfo request Sylvain Maillard 2014-08-14 fix typos: extra spaces Werner Macho 2014-08-14 [TRANSUP] fix compile errors with it and de Signed-off-by: Werner Macho Werner Macho 2014-08-14 [TRANSUP] transifex update and switch of km to transifex Signed-off-by: Werner Macho Nyall Dawson 2014-08-14 Show checkboard pattern behind semi-transparent colors in swatch grid volaya 2014-08-14 [processing] renamed Input and Output classes in modeler, to avoid confusion volaya 2014-08-12 [processing] fixed saga supervised classification when using saga 208 volaya 2014-08-03 [processing] allow definition of vector fields with plain names and types Nyall Dawson 2014-08-14 Rename custom colors to standard colors Nyall Dawson 2014-08-14 Allow setting alpha channel for custom color palette Nyall Dawson 2014-08-14 Hide color schemes from color button menu if they contain no colors Nyall Dawson 2014-08-14 Fix typo in docs Nyall Dawson 2014-08-14 [composer] Fix docs for composer arrow Denis Rouzaud 2014-08-14 missing Q_DECLARE_OPERATORS_FOR_FLAGS Denis Rouzaud 2014-08-14 use flag instead of enum Juergen E. Fischer 2014-08-13 german translation update Juergen E. Fischer 2014-08-10 optionally use layer ids for wms Juergen E. Fischer 2014-08-09 doxygen fixes Merge: d42c24f 1d736da Jürgen Fischer 2014-08-13 Merge pull request #1536 from Ecologeek/bugfix fix typo in variable name (extra space) Sylvain Maillard 2014-08-13 fix typo in variable name (extra space) Nathan Woodrow 2014-08-13 Restore tabs on Python console load Denis Rouzaud 2014-08-13 availibilty definition for map layer actions Nyall Dawson 2014-08-13 [FEATURE] Predefined custom color palette in QGIS options and color scheme Nyall Dawson 2014-08-13 [composer] Prevent atlas crash when layer has bad features (refs #11037) Nyall Dawson 2014-08-13 Flip more colors buttons to QgsColorButtonV2 Werner Macho 2014-08-12 [TRANSUP] string and transifex update Signed-off-by: Werner Macho Sandro Mani 2014-08-12 Fix multilabeling with datadefined value Nyall Dawson 2014-08-12 [composer] Ensure that data defined page size and orientation is correctly set when printing directly from an atlas. (Note that mixed orientation prints are unsupported on some platforms/print drivers) Denis Rouzaud 2014-08-12 also handle UI when manually applying filter Nyall Dawson 2014-08-12 Port some more color buttons to QgsColorButtonV2 Nyall Dawson 2014-08-12 Flip all symbology color buttons to QgsColorButtonV2 Nyall Dawson 2014-08-12 Use rounded rectangles for preview icons in QgsColorButtonV2 Denis Rouzaud 2014-08-11 more const-correctness and avoid ambiguity in overloaded function Nyall Dawson 2014-08-11 [composer] Flip all color buttons to QgsColorButtonV2 Nyall Dawson 2014-08-11 [composer] Prevent data defined size of scalebar from being less than calculated minimum size Nyall Dawson 2014-08-11 [composer] Tweak logic for data defined map extents Nyall Dawson 2014-08-11 [FEATURE] New version of color button (QgsColorButtonV2) based off QToolButton. Features: - context menu items have been moved to the attached menu button - new gui widget QgsColorSwatchGrid, which displays a grid of colors - new class for QgsColorScheme, which generates colors to show in a color swatch grid - new class QgsColorSchemeRegistry, with a global instance containing default color schemes. QgsColorButtonV2 accepts a color scheme registry, to control which schemes to show in the popup menu as color swatch grids. - color button can have a default color - color button can also be quickly set to a totally transparent color - c++ and python unit tests for all core components Chris Crook 2014-08-11 Fixing several errors in generation of NxT distance matrix Chris Crook 2014-08-11 Fixing field name used for target field in ftools DistanceMatrix algorithm Merge: fe4e552 26587af Nathan Woodrow 2014-08-11 Merge pull request #1481 from giohappy/alias_remove_when_empty Remove alias from vector layer if it's an empty string. Fix #10437 Werner Macho 2014-08-08 [TRANSUP] update sv, some context help fixes Signed-off-by: Werner Macho Werner Macho 2014-08-08 typo fix in string Signed-off-by: Werner Macho Werner Macho 2014-08-08 [TRANSUP] common string update Signed-off-by: Werner Macho Juergen E. Fischer 2014-08-08 server: fix absolute path conversion on windows Juergen E. Fischer 2014-08-08 raster layer properties: add data url label Matthias Kuhn 2014-08-07 Don't set field value to NULL if multiline text edit has not been edited Matthias Kuhn 2014-08-07 Let user change form layout in fields properties if .ui is not empty Merge: 2c12a0d aeed122 Jürgen Fischer 2014-08-06 Merge pull request #1458 from rouault/ogr_unknown25d OGR provider: deal with wkbUnknown25D (wkbUnknown | wkb25DBit) Merge: 24e89a4 04bb461 Jürgen Fischer 2014-08-06 Merge pull request #1527 from jarl-dk/build_fix Finding python library on Ubuntu 14.04 64bit Alexander Bruy 2014-08-06 [processing] don't warn about different CRS's if algorithm has only one input (fix #10964) Alexander Bruy 2014-08-06 follow up 4fb28987ba Jarl Friis 2014-08-06 Finding python library on Ubuntu 14.04 64bit Alexander Bruy 2014-08-06 [processing] convert strings to numbers when initializing parameters from description file (fix #11011) Nyall Dawson 2014-08-06 [FEATURE][composer] Allow more control over appearance of composer arrows: - Line can be styled using line symbol style dialog - Arrow head fill and outline colors can be specified - Arrow head outline width can be specified Juergen E. Fischer 2014-08-06 fix zooming to layers when there are empty layers Denis Rouzaud 2014-08-05 respect restrictions when calling identify with layer selection mode Matthias Kuhn 2014-08-03 Fix memory leak and pass ownership of py editor widgets to C++ Matthias Kuhn 2014-08-03 Attribute table cache size 0 is represented as "All" in the options Merge: 1b94afe ed52cb2 Matthias Kuhn 2014-08-03 Merge pull request #1524 from SrNetoChan/master Fixed Legacy date widget default format Fix #10988 Juergen E. Fischer 2014-08-01 debian packaging update Alexander Bruy 2014-07-31 [processing] fix loading of output rasters with wrong CRS Alexander Bruy 2014-07-30 [processing] replace str() with unicode() to avoid possible issues with non-ASCII characters (work in progress) Nyall Dawson 2014-07-31 [composer] Some tweaks to label display name, add display name for legends Nyall Dawson 2014-07-31 [composer] Don't deselect items when unlocking them from the items panel SrNetoChan 2014-07-25 Fixed Legacy date widget default format Denis Rouzaud 2014-07-30 fix editing of NULL values (fixes 0 to NULL, and fixes setting of NULL values in postgres) Nyall Dawson 2014-07-30 [composer] Decrease default snap tolerance to 5 pixels Nyall Dawson 2014-07-30 [composer] Deselect items when they are locked from the items panel Nyall Dawson 2014-07-30 [composer] Locked items can't be selected by clicking them in the canvas. Nyall Dawson 2014-07-30 [composer] Remove right-click to lock for composer items (fix #5592), now that locked items can be unlocked from the items panel this is no longer required, and frees up right clicks for a composer context menu Matthias Kuhn 2014-07-30 Don't double add features Fix #10969 Nyall Dawson 2014-07-28 [FEATURE][composer] Implement an item tree panel for composer windows (fix #4358). Allows for selection of items, hiding/showing items, toggling lock status of items and double-clicking to edit item id. Denis Rouzaud 2014-07-30 do not transform toString to quote values (NULL integer becomes 0 otherwise) Marco Hugentobler 2014-07-30 Apply pull request #1502 provided by bstroebl: Add ntv2 entry for Thuringia Nyall Dawson 2014-07-29 [composer] More improvements to item dispayName methods Nyall Dawson 2014-07-29 Follow up 3f0d0944 Nyall Dawson 2014-07-29 [composer] Support merged undo/redo commands for multiframe items pcav 2014-07-28 Make table sortable. Fixes #10962 Nyall Dawson 2014-07-28 [composer] Add api method for toggling visibility of composer items Matthias Kuhn 2014-07-28 Fix some warnings Matthias Kuhn 2014-07-28 Request geometry when virtual field requires Nyall Dawson 2014-07-28 [composer] Add function for getting a friendly display name for items Matthias Kuhn 2014-07-28 Fix crash with maximumValue/minimumValue for virtual fields Matthias Kuhn 2014-07-28 Initialize expression field buffer to NULL Prevents crash, see https://github.com/qgis/QGIS/pull/1494#issuecomment-50303556 Nyall Dawson 2014-07-27 [FEATURE][composer] Allow specifying user stylesheets to apply to a HTML item's content Nyall Dawson 2014-07-27 Disable color picker under OSX, due to limitations with QWidget::grabMouse on that platform Nyall Dawson 2014-07-27 Disable preview modes under OSX due to issues with QGraphicsEffects under OSX (refs #10761) Nyall Dawson 2014-07-27 [composer] Add some missing icons to menu items Nyall Dawson 2014-07-27 [composer] Switch to alt key for resize and draw from center mode Juergen E. Fischer 2014-07-25 always also update qgis_en.ts in update_ts_files.sh run Werner Macho 2014-07-25 [TRANSUP] transifex update Signed-off-by: Werner Macho Denis Rouzaud 2014-07-25 can re-center when scaling mapCanvas extent Ivan Mincik 2014-07-25 dbmanager: rotating layer import and export icons to more intuitive sense Juergen E. Fischer 2014-07-25 add QScintilla2 to INSTALL Juergen E. Fischer 2014-07-25 german translation update Juergen E. Fischer 2014-07-24 clean identifier of layer variable passed to the feature form Juergen E. Fischer 2014-07-24 fix saving of edittype configuration and remove redundant storage of labelontop and editable state. Juergen E. Fischer 2014-07-24 restore naming of generated attribute widgets Matthias Kuhn 2014-07-24 Some cleanup Matthias Kuhn 2014-07-24 Request geometry when virtual field expression require so Matthias Kuhn 2014-07-24 Sanity checks in add attribute dialog Matthias Kuhn 2014-07-24 Fix uniqueValues for virtual field Matthias Kuhn 2014-07-24 Automatically switch editor layout when assigning .ui file Fix #7286 Sandro Mani 2014-07-21 Use field precision for range edit spin Matthias Kuhn 2014-07-24 Allow expressions with geometry on value relation widget Fix #10900 Matthias Kuhn 2014-07-24 Followup 11f197e Fix #10922 Matthias Kuhn 2014-07-23 Use icons on fields properties, disable "editable" where inappropriate Matthias Kuhn 2014-05-26 [FEATURE] Expression field (Virtual field) Matthias Kuhn 2014-05-28 Remove unused method Larry Shaffer 2014-07-23 Fix finding QScintilla for non-QT_INCLUDE_DIR install directories Merge: 3988ad0 6014d45 Tim Sutton 2014-07-23 Merge pull request #1514 from manisandro/stretch_last_column Trivial: Stretch last column in bad layers dialog Juergen E. Fischer 2014-07-23 make sip bindings to qscintilla derived classes optional (replaces 7e815cad & 8f0b8987) Matthias Kuhn 2014-07-23 Setting attribute table cache size to 0 results in full cache Sandro Mani 2014-07-23 Stretch last column in bad layers dialog Nyall Dawson 2014-07-22 [FEATURE][composer] Holding shift while drawing new lines constrains lines to horizontal/vertical/diagonals, while drawing rectangles constrains items to squares. Holding control switches to a draw-from-center mode. Sponsored by City of Uster, Switzerland. Matthias Kuhn 2014-07-23 Set focus to first widget on attribute form Matthias Kuhn 2014-07-11 Fix attribute dialog crash on close Matthias Kuhn 2014-07-23 Followup 9f07383 volaya 2014-07-22 [processing] fixed fileFilter for file outputs volaya 2014-07-20 [processing] made xgrids parameter in raster calculator optional volaya 2014-07-19 [processin] fixed extent checking in saga algorithm volaya 2014-07-18 [processing] fixed issues when loading parameters volaya 2014-07-18 [processing] improved SAGA multiple extents detection volaya 2014-07-18 [processing] fixed SAGA description volaya 2014-07-18 [processing] fixed some GRASS descriptions Matthias Kuhn 2014-07-22 Synchronize values of repeating widgets on forms Fix #10877 Matthias Kuhn 2014-07-22 Only add feature once when python init function is set on attribute form Fix #10862 Merge: 080f252 e477633 alexbruy 2014-07-22 Merge pull request #1510 from gioman/v_points [processing] fix grass64 v.to.points Merge: 8f0b898 38390bf volaya 2014-07-22 Merge pull request #1512 from radosuav/small_processing_fixes_3 [Processing] Small fixes Rado Guzinski 2014-07-22 [Processing] Add *.* file filter to batch processing input panel Rado Guzinski 2014-07-22 [Processing] Comment debuging statements in OTB which clutter up Processing log Rado Guzinski 2014-07-22 [Processing] Hide some OTB params under Advanced button and improve handling of advanced parameters Rado Guzinski 2014-07-22 [Processing] Add GRASS r.univar and update r.fillnulls Rado Guzinski 2014-07-22 [Processing] Remove print statements which sometimes cause an exception Juergen E. Fischer 2014-07-22 fix qscintilla sip include path (followup 7e815cad) Nyall Dawson 2014-07-22 Fix build errors Nyall Dawson 2014-07-10 [FEATURE][composer] Data defined url for composer html items. Sponsored by City of Uster, Switzerland. Giovanni Manghi 2014-07-21 fix grass64 v.to.points Juergen E. Fischer 2014-07-20 debian packaging update with workaround for debian #755491 Juergen E. Fischer 2014-07-20 remove automake residuals Juergen E. Fischer 2014-07-20 german translation update Juergen E. Fischer 2014-07-20 indentation update Nathan Woodrow 2014-07-21 Fix build error with processing Martin Dobias 2014-07-21 Fix #10909 (SVG markers rendered as images in composer) Nathan Woodrow 2014-07-21 Comment sip files for code editor to fix build error on ubuntu Merge: 460cee1 6486594 alexbruy 2014-07-21 Merge pull request #1505 from volaya/master [Processing] Refactoring of parameters and outputs Nyall Dawson 2014-07-20 [composer] Switch to using data defined button for picture source expression Denis Rouzaud 2014-07-15 [edit widgets] set line edit as read-only instead of disabled Nathan Woodrow 2014-07-20 Add missing HTML editor sip files Nyall Dawson 2014-07-20 Switch to QgsCodeEditorHTML for composer html code editor Nathan Woodrow 2014-07-20 Add HTML code editor Nyall Dawson 2014-07-20 [FEATURE][composer] Multiple overview frames per composer map (fix #10299) Werner Macho 2014-07-20 [TRANSUP] common translation update Signed-off-by: Werner Macho Nathan Woodrow 2014-07-20 Drop QScintilla2 from window title Merge: 4e2afeb b2ff718 Nathan Woodrow 2014-07-20 Merge pull request #1507 from NathanW2/code_editor Code editor using QScintilla. Thanks to Salvatore Larosa for the initial work. Nyall Dawson 2014-07-19 [composer] Don't auto set maximum number of attributes when resizing item. Instead, keep the maximum number of rows as whatever the user set. This change prevents the attribute table from shrinking and never re-growing (fix #10911) Nyall Dawson 2014-07-19 [composer] Fix restoration of grid color alpha channel from 2.4 projects Nyall Dawson 2014-07-19 [composer] Write a dummy Grid element when saving composer maps, fixes crash when loading project in older QGIS versions (fix #10905) Nyall Dawson 2014-07-19 [composer] documentation improvements Nyall Dawson 2014-07-19 [composer] More cleanups - move font utils from QgsComposerItem to QgsComposerUtils, add tests Martin Dobias 2014-07-17 Legend refactoring: first steps towards legend customization - map layers have associated QgsMapLayerLegend instance - QgsMapLayerLegend is interface for generation of legend with some default implementations - QgsLayerTreeModelLegendNode is interface for representation of legend item in layer tree model with some default implementations Werner Macho 2014-07-17 [TRANSUP] string update by request Signed-off-by: Werner Macho Juergen E. Fischer 2014-07-17 add msvc notes Juergen E. Fischer 2014-07-17 avoid initially loading value map previews from the first layer (might be expensive) Nyall Dawson 2014-07-17 [FEATURE][composer] Allow setting attribute table header and content font colors. Fix saving alpha channel for grid colors. Larry Shaffer 2014-07-16 Fix bundle-relative linking for libqscintilla2.dylib (now required lib) on Mac Martin Dobias 2014-07-17 When grouping layer tree nodes, insert new group at the same position Martin Dobias 2014-07-16 Fix #10828 (slow project loading) Martin Dobias 2014-07-16 Fix #10744 (crashes with CSV files with parallel rendering) I can't replicate the crash, but the static QRegExp instances will not work with multiple threads. Nathan Woodrow 2014-07-16 Clean up code editor code and API. Add tr() and fix spelling. Moved show/hide folding and margin methods to base class. Nyall Dawson 2014-07-07 [FEATURE][composer] Allow evaluation of QGIS expressions inside html item source. Expressions are evaluated before HTML is rendered, allowing the expression results to modify how the HTML content is rendered. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-07-07 [composer] Switch to using qscintilla for html editor in html item properties. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-07-07 [composer] Fetch html using QgsNetworkAccessManager so that reply can be manipulated prior to rendering. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-07-16 [FEATURE][composer] Option for manual entry of HTML item source. Sponsored by City of Uster, Switzerland. Nyall Dawson 2014-07-16 [composer] Clean up code, move some methods to QgsComposerUtils, const correctness, tests, doc improvements Alexander Bruy 2014-07-16 [processing] fix icons for TauDEM algs Juergen E. Fischer 2014-07-16 debian packaging update Nathan Woodrow 2014-07-16 Use code editor for expression widget Nathan Woodrow 2014-07-16 Define QSCINTILLA_DLL for windows Werner Macho 2014-07-15 [TRANSUP] transifex update and common string update Signed-off-by: Werner Macho Juergen E. Fischer 2014-07-15 german translation update Juergen E. Fischer 2014-07-15 cmake: report geos version with c-api header only (followup 0529f117) Nyall Dawson 2014-07-15 [composer] Fix calculation of rotated image size inside picture items when rotation is 90 or 270 degrees. Juergen E. Fischer 2014-07-15 fix moc warning Juergen E. Fischer 2014-07-15 more doxygen fixes Juergen E. Fischer 2014-07-15 fix warnings Juergen E. Fischer 2014-07-15 cmake: report geos version Juergen E. Fischer 2014-07-15 debian packaging update Nyall Dawson 2014-07-15 Follow up 2041fc24 Nyall Dawson 2014-07-10 [composer] Refactor QgsComposerItem: - New class QgsComposerObject, which both QgsComposerItem and QgsComposerMultiFrame derive from. This class contains the framework for data defined composition properties. - New class QgsComposerUtils, containing helpful static functions previously in QgsComposerItem - Test suites for data defined settings in QgsComposerObject and functions in QgsComposerUtils volaya 2014-07-14 [Processing] Refactoring of parameters and outputs It also adds some changes in the core and tools package, to provide a cleaner structure Victor Olaya 2014-07-14 [processing] added 'crop to data' algorithm from SAGA Victor Olaya 2014-07-14 [processing] Changed raster calculator to ask main layer separately Juergen E. Fischer 2014-07-13 indentation update Juergen E. Fischer 2014-07-13 doxygen: add new directories and fix warnings Nyall Dawson 2014-07-13 [FEATURE][composer] Add marker style for map grids (fix #9381) Nyall Dawson 2014-07-13 [composer] More tweaks to grid UI: - show grid name in draw grid checkbox to aid UX - restore 12 decimal places for grid interval/offset - rearrange controls for improved user flow - disabled cross width control when grid type is not set to cross - switch to collapsible group boxes Nyall Dawson 2014-07-13 [composer] Reduce height of map grid list (fix #10881) Nyall Dawson 2014-07-13 Followup c04a5400 Nyall Dawson 2014-07-13 [composer] Hard code drawing a maximum of 1000 horizontal or vertical grid lines. Prevents hangs if grid settings are poorly chosen, resulting in millions of grid lines Nyall Dawson 2014-07-13 [composer] Fix annotation settings only being applied to first grid in list, not selected grid (fix #10880) Nathan Woodrow 2014-07-12 Code editor Victor Olaya 2014-07-12 [processing] fixes in model/script downloader Victor Olaya 2014-07-12 [processing] improved import to postgis algorithm Victor Olaya 2014-07-12 [processing] added some extra info in modeler calculator Victor Olaya 2014-07-11 [processing] fixed frequency algorithm Victor Olaya 2014-07-11 [processing] change icon of core algs Larry Shaffer 2014-07-11 [processing] Fix typo Larry Shaffer 2014-07-11 Fix QgsComposerMap sip/cpp build error Werner Macho 2014-07-11 [TRANSUP] adding more translators Signed-off-by: Werner Macho Werner Macho 2014-07-11 [TRANSUP] pt_BR from transifex on request Signed-off-by: Werner Macho Werner Macho 2014-07-11 [TRANSUP] transifex update Signed-off-by: Werner Macho Nyall Dawson 2014-07-10 Remove unused writeSettings, readSettings, removeSettings methods from QgsComposerItem Nyall Dawson 2014-07-11 Follow up grid merge fixes. Repair broken grid tick tests Nyall Dawson 2014-07-11 Fix merge conflicts resulting from composer multi grid merge Alexander Bruy 2014-07-11 [processing] update CMakeLists.txt to handle new directories Victor Olaya 2014-07-10 [processing] added some new core algs as scripts Victor Olaya 2014-07-10 [processing] allow adding core processing algs using scripts Juergen E. Fischer 2014-07-10 enable feature form on openFeatureForm on editable layer (fixes #10865) Marco Hugentobler 2014-07-10 Revert "Fix reversed lat/long in grid annotations" This reverts commit 2d2340e916db09c03772a3f9d4de8cb49a4c9d72. Marco Hugentobler 2014-07-10 Fix #10720 Marco Hugentobler 2014-07-10 Fix reversed lat/long in grid annotations Marco Hugentobler 2014-07-10 Fix swapped lat/long Merge: 6097e58 c33007f volaya 2014-07-10 Merge pull request #1503 from alexbruy/processing-ogr Processing ogr Merge: 9abeeb6 0525c01 Marco Hugentobler 2014-07-10 Merge branch 'composer_grid_master' Marco Hugentobler 2014-07-10 Show frame entry independent of translation Marco Hugentobler 2014-07-10 Fix some todos Marco Hugentobler 2014-07-10 Start without composer map without grid Marco Hugentobler 2014-07-10 Add frame pen width, color, fill color1, fill color2 to composergrid Nyall Dawson 2014-07-09 [FEATURE] New $atlasfeature expression function for returning the current atlas feature. Also clean up the expression groups and move some unrelated functions out of the 'Record' group. Nyall Dawson 2014-07-09 [FEATURE] New expression functions for $currentfeature (returns current feature) and 'attribute' (returns value stored in specified field within a feature) Juergen E. Fischer 2014-07-10 fix build error (followup ba8f3881) Victor Olaya 2014-07-09 deleted EnumerateTableField description (redundant) Victor Olaya 2014-07-09 [processing] fixed cmake Alexander Bruy 2014-07-09 remove unused files, code cleanup Alexander Bruy 2014-07-08 [processing] refactor OGR algorithms to use commandline tools, not bindings Marco Hugentobler 2014-07-09 Compatibility methods to simulate old composer map grid Marco Hugentobler 2014-07-09 Adapt user interface for multiple grids Marco Hugentobler 2014-07-08 Port possibility to have several grids / crs in composer map from QGIS Enterprise to master Nyall Dawson 2014-07-08 Begin test suite for data defined composer settings Juergen E. Fischer 2014-07-08 german translation update Juergen E. Fischer 2014-07-08 Remove sqlanywhere plugin and provider (implements #10840) Juergen E. Fischer 2014-07-08 debian packaging update Funded-By: norBIT Nyall Dawson 2014-07-06 [FEATURE] Color picker option in color button context menu, which allows for sampling a color from anywhere on the screen. Supports holding the left mouse button to continuously sample. Pressing space also triggers a sample for Windows, where mouse clicks outside the QGIS window are unavoidably propagated onward. Merge: 32a3030 d68bc59 alexbruy 2014-07-07 Merge pull request #1501 from gioman/grass64watershed [processing] fix GRASS 6.4 r.watershed Merge: 136cd5c b16172c alexbruy 2014-07-07 Merge pull request #1500 from gioman/grass7watershed [processing] fix GRASS 7 r.watershed Juergen E. Fischer 2014-07-07 feature renderers: don't display not rendered class in catch-all class and fix class counting (followup d4b8c407c and 4867b7fa) Funded-By: norBIT Juergen E. Fischer 2014-07-07 canvas: remove keys for switching single/multithreaded and showing rendering times (fixes #10827) Funded-By: norBIT Nyall Dawson 2014-07-07 Make QScintilla a required dependency Nathan Woodrow 2014-07-07 Remove single select tool, merge into Select By Rectangle. Fix #10824 - New tool named Select Feature(s) does both actions one tool - select(), selectByRectangle() return SelectFeatures action to maintain API Giovanni Manghi 2014-07-07 [processing] fix GRASS 64 r.watershed Giovanni Manghi 2014-07-07 [processing] fix GRASS 7 r.watershed Victor Olaya 2014-07-06 [processing] added 'Select by expression' algorithm (by Michaël Douchin - 3Liz) Victor Olaya 2014-07-06 [processing] removed scripts They should be downloaded now from the scripts/model repo Victor Olaya 2014-07-06 fixed issue with MultilineTextPanel in modeler (#10813) Nyall Dawson 2014-07-06 [composer] Fix missing descriptions for composition data defined buttons on initial composer load Nathan Woodrow 2014-07-06 Add render state support for graduated renderer Add check state role for graduated renderer Sync sip bindings Juergen E. Fischer 2014-07-05 german translation update Nyall Dawson 2014-07-06 [FEATURE][composer] Data defined page size, orientation and number of pages for compositions. Funded by Canton of Neuchâtel, Switzerland Nyall Dawson 2014-07-06 [composer] Composer items which set their own size must consider data defined width and height Nyall Dawson 2014-07-06 [FEATURE][composer] Data defined item size and position. Funded by Canton of Neuchâtel, Switzerland Werner Macho 2014-07-05 transifex and string update Signed-off-by: Werner Macho Nyall Dawson 2014-07-05 Followup 6d7c5f88 Nyall Dawson 2014-07-05 [FEATURE][composer] Data defined map scale, rotation and extents. Funded by Canton of Neuchâtel, Switzerland Nyall Dawson 2014-07-05 [FEATURE][composer] Data defined item rotation. Funded by Canton of Neuchâtel, Switzerland Merge: 47e8bde 228892c alexbruy 2014-07-05 Merge pull request #1498 from minorua/joinattrs [processing] JoinAttributes improvement Nyall Dawson 2014-07-05 [FEATURE][composer] Data defined transparency and blend modes for composer items. Funded by Canton of Neuchâtel, Switzerland Nyall Dawson 2014-07-05 [composer] Initial framework for data defined properties in compositions and composer items. Funded by Canton of Neuchâtel, Switzerland Minoru Akagi 2014-07-05 [processing] fix join to layer with join (fix #10244) Minoru Akagi 2014-07-05 [processing] JoinAttributes improvement - allow join not only with vector attribute table but also with geometryless table - performance and key comparison improvement - str to unicode fix Juergen E. Fischer 2014-07-05 categorized renderer: show category by default (followup 4867b7fa) Nathan Woodrow 2014-07-05 Use index to render legend symbol items Victor Olaya 2014-07-04 [processing] fixed #10792 Juergen E. Fischer 2014-07-04 fixup 4867b7fa Juergen E. Fischer 2014-07-04 [FEATURE][API] categorized render: support disabling rendering of some categories Funded-By: norBIT Nyall Dawson 2014-07-05 [composer] Create base item widget class for composer items, clean up and remove duplicate code Nyall Dawson 2014-07-04 [composer] Make sure general atlas properties are imported before importing items from xml, so that items can be aware of atlas context while they are being created Nyall Dawson 2014-07-04 Move decodeBlendMode to QgsSymbolLayerV2Utils Nyall Dawson 2014-07-04 Data defined must reprepare expression if expression changes Nyall Dawson 2014-07-04 Allow preparing expressions in QgsDataDefined without requiring a layer Nyall Dawson 2014-07-04 [composer] Use the maximum frame width when setting a html item's content width Nyall Dawson 2014-07-04 [composer] Don't snap to items within a group Nyall Dawson 2014-07-04 [composer] Improved method for setting/checking whether items are in a group Merge: af17b56 0c0e9ec mhugent 2014-07-04 Merge pull request #1497 from manisandro/multilabeling_fix Fix joinConnectedFeatures not keeping the featureParts list in sync Sandro Mani 2014-07-03 Fix joinConnectedFeatures not keeping the featureParts list in sync (Funded by Sourcepole) borys 2014-07-03 Typo fixes from Rome airport Merge: 144f7ec 5476d86 volaya 2014-07-03 Merge pull request #1496 from Gustry/dev [processing] change str to unicode fix #10624 Etienne Trimaille 2014-07-03 change str to unicode fix #10624 Juergen E. Fischer 2014-07-03 display project filename in project properties (implements #10788) Victor Olaya 2014-07-02 [processing] fixed #10780 Juergen E. Fischer 2014-07-02 fix windows build Juergen E. Fischer 2014-07-02 indentation update Nathan Woodrow 2014-07-02 Add border and fill colour options to bands. Different border for select tool Nathan Woodrow 2014-07-02 Use nicer colours for zoom and select bands. Match icon colour Alexander Bruy 2014-07-01 [processing] fix fusion algs loading Merge: 978eb2e 6f00101 alexbruy 2014-07-01 Merge pull request #1495 from giohappy/new_operators_dospatialjoin Add fine grain control over select by location tools Nathan Woodrow 2014-07-01 Fix #10589 - Gesture events don't get sent correctly with interactive mode on view Victor Olaya 2014-07-01 [processing] more changes to fusion lidar algorithms giohappy 2014-07-01 fix to Processing side Martin Dobias 2014-07-01 QgsLegendSettings: new class to keep settings for QgsLegendRenderer Martin Dobias 2014-07-01 Allow legend to have other than the "ideal" minimum size Martin Dobias 2014-07-01 QgsComposerLegend: use QgsLegendRenderer for legend drawing Martin Dobias 2014-07-01 Moved legend rendering code from QgsComposerLegend to QgsLegendRenderer giohappy 2014-06-30 improved processing extract/select by location giohappy 2014-06-30 Improved select by location Nyall Dawson 2014-06-30 [composer] Default to no backgrounds for new labels, pictures, scalebars, and arrows. Fix some items not drawing using antialiasing if background disabled. Victor Olaya 2014-06-29 [processing] add 'optional' label to optional parameters in input dialog Victor Olaya 2014-06-29 [processing] better handling of values in boolean parameter Victor Olaya 2014-06-29 [processing] Update of fusion lidar algorithms (By Agresta S.Coop) Martin Dobias 2014-06-30 Allow buiding of QgsLegendModel from layer tree Juergen E. Fischer 2014-06-29 remove executable bit from not executable files Juergen E. Fischer 2014-06-29 only consider the crs of layers with geometry for automatically setting of project crs and otfr (fixes #10510) Juergen E. Fischer 2014-06-29 metasearch: fix fsf address Juergen E. Fischer 2014-06-29 oracle provider: fix closing of iterator in case of error Merge: a2a26c2 05cfd69 alexbruy 2014-06-29 Merge pull request #1446 from volaya/new_modeler [processing] overhaul of graphical modeler Nyall Dawson 2014-06-29 [composer] Use pixels for snapping rather than mm, allowing for finer work when zoomed in. Merge grid and guide snapping settings to a single snap tolerance setting. Juergen E. Fischer 2014-06-28 standalone windows installer: fix qgis demo data link Victor Olaya 2014-06-28 [processing] better handling of col sizes in batch interface Victor Olaya 2014-06-28 [processing] fixed #10445 Victor Olaya 2014-06-28 [processing] methods in dataobjects.py now return layers ordered by name fixes #10446 Victor Olaya 2014-06-08 [processing] overhaul of graphical modeler Merge: 09645e4 2982b57 volaya 2014-06-28 Merge pull request #1490 from radosuav/small_processing_fixes2 [processing] Small fixes 2 Nyall Dawson 2014-06-28 [FEATURE][composer] Allow setting secondary color for scalebars, allow alpha channels in scalebar colors Juergen E. Fischer 2014-06-27 osgeo4w: also exclude the external python libraries in release packages and skip the disabled grass direct library Juergen E. Fischer 2014-06-27 Bump version to 2.5 Juergen E. Fischer 2014-06-27 update changelog for release 2.4 Werner Macho 2014-06-27 [TRANSUP] Final translation update for 2.4 source release Signed-off-by: Werner Macho Rado Guzinski 2014-06-27 [processing] Sort algorithms when updating provider alg list. Rado Guzinski 2014-06-27 [processing] Give an option for all file types to be used as input layer to processing algorithms. Martin Dobias 2014-06-27 Improve exception handling - Do at least very basic handling in QtConcurrent run functions - Do not show a message box when not running in main thread Larry Shaffer 2014-06-26 Followup fixes for data defined values for label repeat functions Matthias Kuhn 2014-06-27 Doxymentation Merge: ae9b306 00692c7 mhugent 2014-06-27 Merge pull request #1395 from manisandro/line_multi_labeling_improved Line multi labeling improved Martin Dobias 2014-06-27 Fix #10703 (selection reset after added/removed attribute) Merge: 71649d4 b42ef8c Werner Macho 2014-06-27 Merge pull request #1493 from qgis-jp/pullreq_2_4 update translation JA Werner Macho 2014-06-27 [TRANSUP] gl by Xan and source Signed-off-by: Werner Macho yoichigmf 2014-06-27 update translation JA Merge: fec9e65 599368c Werner Macho 2014-06-27 Merge pull request #1491 from Cracert/i18n [TRANSUP] pl: varia Martin Dobias 2014-06-27 Fix #10730 (fill ring does not work as expected) Juergen E. Fischer 2014-06-27 fix typos in NEWS Juergen E. Fischer 2014-06-27 fix warning Juergen E. Fischer 2014-06-27 indentation update Merge: 4d6cfd9 0a7e69c Nathan Woodrow 2014-06-27 Merge pull request #1492 from nyalldawson/fix_10728 [processing] Fix blocker #10728 Nyall 2014-06-27 [processing] Add [not set] option for field combos when parent layer changes (fix #10728), also fix some strings displaying with extra spaces Robert Szczepanek 2014-06-26 [TRANSUP] pl: varia Juergen E. Fischer 2014-06-26 german translation update Matthias Kuhn 2014-06-26 Attribute dialog: save/restore window geometry Fix #8784 Matthias Kuhn 2014-06-26 Documentation update Martin Dobias 2014-06-26 Few more doxygen docs for QgsMapLayerRenderer and subclasses Rado Guzinski 2014-06-26 Do not put GDAL extra parameters in quotes. Rado Guzinski 2014-06-26 Change the way input dataset CRS in read, to avoid problems with file handles remaining open in QGIS after use. Rado Guzinski 2014-06-26 Allow passing of parameters to algorithms in dictionaries. Alexander Bruy 2014-06-26 russian translation update Nyall Dawson 2014-06-26 [composer] Fix missing undo command for editing legend items, other small fixes for legend undoing Nyall Dawson 2014-06-26 [composer] Prevent hang on trying to export compositions and atlases to files which can't be overwritten, and warn user instead (fix #9283) (fix #10016). Fix mouse cursor getting stuck after failed atlas exports. Juergen E. Fischer 2014-06-26 german translation update Merge: b2ea8f7 8655049 Werner Macho 2014-06-25 Merge pull request #1489 from Cracert/i18n [TRANSUP] pl: varia Robert Szczepanek 2014-06-25 [TRANSUP] pl: varia Juergen E. Fischer 2014-06-25 osgeo4w: grass updated to 6.4.4 Werner Macho 2014-06-25 [TRANSUP] nb by james Signed-off-by: Werner Macho Juergen E. Fischer 2014-06-25 add some more geometry tests (followup c686c4fed) Nathan Woodrow 2014-06-25 Append .qlr to file name if missing Juergen E. Fischer 2014-06-25 geometry: allow removing parts and rings or geometries by removing all vertices (fixes #10684) Denis Rouzaud 2014-06-25 followup 7d9b8dda8671820b99cfc0e170aad8e554ebe5d1 Merge: 7d9b8dd be032f7 Martin Dobias 2014-06-25 Merge pull request #1483 from 3nids/pasteshape fix #10672: force multi when pasting on a shapefile Nathan Woodrow 2014-06-25 Don't reset field model if nothing changes Matthias Kuhn 2014-06-24 Diagrams: Hide font button where not required Fix #10701 Etienne Tourigny 2014-06-24 fix browser handling of auxiliary metadata files (*.shp.xml and *.tif.xml) (#10697) Juergen E. Fischer 2014-06-24 dbmanager: fix adding views to canvas (fixes #10688) Juergen E. Fischer 2014-06-24 oracle provider: fix subquery support (fixes #10694) Matthias Kuhn 2014-06-24 Doxymentation for QgsAttributeForm Merge: 2fc5ce3 61abba8 alexbruy 2014-06-24 Merge pull request #1487 from gioman/fixgrass7 [processing] Fix GRASS7 Grass7Algorithm.py to avoid error when opening modules Merge: d56c6c8 30e5747 alexbruy 2014-06-24 Merge pull request #1486 from gioman/grass_instructions [processing] fixed instructions on how build GRASS modules Merge: acea234 544200e alexbruy 2014-06-24 Merge pull request #1485 from gioman/wildfire [processing] add GRASS modules for Wildfire analysis gioman 2014-06-24 fix GRASS7 Matthias Kuhn 2014-06-24 Custom embedded attribute form ui: Forward esc keypress to parent Fix #10675 gioman 2014-06-24 fixed instructions on how build GRASS modules Matthias Kuhn 2014-06-24 Value Relation Widget: Save and load "Allow NULL" configuration Fix #10690 gioman 2014-06-24 [processing] add GRASS modules for Wildfire analysis Tom Kralidis 2014-06-24 Update connections-default.xml Werner Macho 2014-06-24 [TRANSUP] string update with transifex Signed-off-by: Werner Macho Matthias Kuhn 2014-06-24 Fix NULL value for relation reference widget Martin Dobias 2014-06-24 Doxymentation for QgsMapRendererJob + subclasses Juergen E. Fischer 2014-06-24 fix #10682 Juergen E. Fischer 2014-06-23 fix warning Juergen E. Fischer 2014-06-23 german translation update Juergen E. Fischer 2014-06-23 make merge attributes dialog translation agnostic (fixes #10681) Cyrille Medard de Chardon 2014-06-23 CSV acronym added for consistency other file types Martin Dobias 2014-06-23 Fix #9609 (crash with WFS) Marco Hugentobler 2014-06-23 Fix for line pattern sld export Denis Rouzaud 2014-06-23 fix #10672: force multi when pasting on a shapefile Matthias Kuhn 2014-06-23 Editorwidgets: Default values for editable and labelOnTop Nyall Dawson 2014-06-23 [composer] Remember last used folder for picture and marker dialogs (fix #8764) Nyall Dawson 2014-06-23 [composer] Make $rownum in attribute table column expressions evaluate to current row number (works correctly only if no sort columns are specified - in future release sorting for attribute tables should be reworked so that it is done prior to fetching features) Nyall Dawson 2014-06-20 [composer] Refresh attribute table filter when atlas feature changes (fix #10651) Merge: c601e3b 4eb995c alexbruy 2014-06-23 Merge pull request #1479 from gioman/master [processing] add v.surf.rst modules for lines Cyrille Medard de Chardon 2014-06-23 Checkbox for sub index was missing tooltip text Merge: 151d1f1 8ed8d15 Nyall Dawson 2014-06-23 Merge pull request #1424 from manisandro/autoupdate_composer_legend_symbols Update composer legend entry when layer symbology changes. Nyall Dawson 2014-06-23 [composer] Add missing mm suffix to grid offset Nyall Dawson 2014-06-23 [composer] Fix order of vertices returned by mapPolygon when map rotation is set, fix drawing overview frame when either map is rotated (fix #10644) Matthias Kuhn 2014-06-23 Editorwidgets: Save "label on top" and "editable" settings to project Fix #10667 giohappy 2014-06-23 Remove alias from vector layer if it's an empty string Merge: daefe3e 4c199ff Martin Dobias 2014-06-23 Merge pull request #1480 from 3nids/fixew small expression widget changes Denis Rouzaud 2014-06-23 discard empty expressions in setExpression (fix scrollbar in expression widget) Denis Rouzaud 2014-06-23 setExpression returns void Martin Dobias 2014-06-23 Identify results: move the view mode to the top as the dock was too wide Martin Dobias 2014-06-23 Fix a crash with highlights in identify results Juergen E. Fischer 2014-06-23 don't write project files with native line endings on windows (fixes #6407, fixes #7735, fixes #8267) volaya 2014-06-22 Fixed #10666 gioman 2014-06-22 add v.surf.rst modules for lines Juergen E. Fischer 2014-06-22 wms: fix redirected requests Martin Dobias 2014-06-22 Fix #10663 (additional nodata value pixels not transparent) Juergen E. Fischer 2014-06-22 fix interactive network authentication Martin Dobias 2014-06-22 Tidy up cmakelists for core lib a bit Martin Dobias 2014-06-22 Move QgsRendererJob subclasses to new files (no code changes) volaya 2014-06-22 fixed #10669 Merge: 7269126 41a2e26 Werner Macho 2014-06-22 Merge pull request #1478 from qgis-jp/pullreq_2_4 Update GUI Translation JA Marco Hugentobler 2014-06-22 Server: allow more layers in cache for projects with many layers Yoichi Kayama 2014-06-22 Update GUI Translation JA Juergen E. Fischer 2014-06-22 expressions: add help for $uuid (fixes #10094) Juergen E. Fischer 2014-06-22 fix cpt-city-archive on windows (fixes #9794) Juergen E. Fischer 2014-06-22 new vector layer: limit attribute name length of shape files to 10 (fixes #9753) Juergen E. Fischer 2014-06-22 debian packaging update: include LICENSE (fixes #8712) Sandro Mani 2014-06-04 Chop lines after merging connected features Sandro Mani 2014-06-04 Increase label repeat distance spin box maximum Sandro Mani 2014-05-27 Pass polygon boundary geometry to pal if labeling polygon perimeter with repetitions Sandro Mani 2014-05-27 Show repeat label UI when labeling polygon perimeters Sandro Mani 2014-05-27 Fix typos Juergen E. Fischer 2014-06-22 add style manager translations (fixes #8436) Juergen E. Fischer 2014-06-22 browser: fix update after spatialite database creation (fixes #6258) Juergen E. Fischer 2014-06-21 ogr provider: return wkbNone if ogr reports unknown geometry and first feature is geometryless (fixes #7505) Juergen E. Fischer 2014-06-21 attribute table: allow toggling editing if layer is capabable of any change, not only attributes (fixes #7504) Juergen E. Fischer 2014-06-21 show failure to create a new shapefile on message bar and point to message log (fixes #6709) Martin Dobias 2014-06-22 Small API cleanup in QgsMapSettings Martin Dobias 2014-06-22 More doxygen docs for QgsMapSettings Martin Dobias 2014-06-21 Add doxymentation for QgsMapSettings Juergen E. Fischer 2014-06-21 german translation update Juergen E. Fischer 2014-06-21 expression interval fixes: * allow more than two translated forms (fixes #8453) * support signed floating point values * allow non-ascii characters in translation strings Juergen E. Fischer 2014-06-21 emit QgsProject.snapSettingsChanged() (fixes #9465) Alexander Bruy 2014-06-21 add separate filter for Panorama's Storage and eXchange Format Juergen E. Fischer 2014-06-21 fix #6204 Juergen E. Fischer 2014-06-21 several components require spatialite, make it required (fixes #8797) Juergen E. Fischer 2014-06-21 fix wording of split messages (fixes #8875) Nyall Dawson 2014-06-21 [composer] Fix attribute table column sort order could not be changed after initially adding columns to sort Nyall Dawson 2014-06-21 Fix various models failing qt model test Nyall Dawson 2014-06-21 Invalidate model filter when setting filter for QgsMapLayerComboBox, fixes filters not correctly applying to layers in combo box (fix #10656) Nyall Dawson 2014-06-21 [composer] Allow choice of tables without geometry for atlas coverage layer Nyall Dawson 2014-06-21 [composer] Always default attribute tables to show all visible features (fix #10655) Juergen E. Fischer 2014-06-20 nsis: fix master installer bitmap Victor Olaya 2014-06-20 [processing] fix #10662 Victor Olaya 2014-06-20 [processing] fixed behaviour of select algorithms in modeler Victor Olaya 2014-06-20 [processing] fixes #10641 Victor Olaya 2014-06-20 [processing] allow 'set raster layer style' alg to use layers not loaded in qgis Victor Olaya 2014-06-20 [processing] provide some more info in batch processing interface Victor Olaya 2014-06-20 [processing] fix #10659 Victor Olaya 2014-06-20 [processing] fixed batch processing when there are no visible outputs Victor Olaya 2014-06-20 [processing] fixed layer selector panel to use file filter Victor Olaya 2014-06-20 [processing] reset progress bar after alg has finished running Victor Olaya 2014-06-20 [processing] Modified styling algs to work with layer that are not open in qgis Juergen E. Fischer 2014-06-20 osgeo4w: also fix quoting in qgis-dev postinstall (followup e4dd900) volaya 2014-06-18 [processing] fixed rendering of batch processing dialog volaya 2014-06-15 [processing] force process events when algorithms report progress Not the ideal way of doing it, but it will do the trick until we safely put algorithms in a different thread Some cleaning of the main alg execution dialog Juergen E. Fischer 2014-06-20 oracle provider: reload fields after adding or deleting attributes (fixes #10102) Juergen E. Fischer 2014-06-20 german translation update Matthias Kuhn 2014-06-20 Allow negative values for range widget Fix #6516 Merge: 909a841 88162d3 Werner Macho 2014-06-20 Merge pull request #1476 from cdavila/patch-1 Fix typos Juergen E. Fischer 2014-06-20 german translation fix and translation string fix Juergen E. Fischer 2014-06-20 nsis installer: don't override destination path override on x86_64 (/D) Juergen E. Fischer 2014-06-20 german translation update Juergen E. Fischer 2014-06-20 generate context_help and function_help in the same order Juergen E. Fischer 2014-06-20 update release.pl and creatensis.pl Matthias Kuhn 2014-06-20 Translation update and german translations Matthias Kuhn 2014-06-20 Improve information text for a failed WMS connection Martin Dobias 2014-06-20 Fix #10657 (crash opening a project with invalid join) rldhont 2014-06-20 [BUGFIX] 10638 WFS GetFeature may be incomplete if layer reports estimated feature count layer->featureCount() sometimes returns an estimated feature count. In this case, the WFS server returns an incomplete reply (if called without maxfeatures). To make QgsWFSServer::getFeature a bit more robust, it's better to do not take account of layer->featureCount() and use while ( fit.nextFeature( feature ) && ( featureCounter < maxFeat || maxFeatures == -1 ) ) Martin Dobias 2014-06-20 Fix #10655 (race condition in QgsCredentials) Example of race condition during rendering: Threads 1 and 2 call get(), it checks that there are cached credentials. Thread 1 takes the cached credentials, thread 2 will get no data -> will request credentials in dialog Matthias Kuhn 2014-06-20 WMS fail: Details only shown on demand Fix #10464 Juergen E. Fischer 2014-06-20 include 2.4 pointer in doxygen Juergen E. Fischer 2014-06-20 indentation update & warning fix Tim Sutton 2014-06-20 Fix for Vietnamese UTM 48N projection parameters as reported by Quách Đồng Thắng Merge: 735028d d99f3a0 Tim Sutton 2014-06-20 Merge pull request #1474 from timlinux/master Fix for Vietnamese UTM 48N projection parameters as reported by Quách Đồng Thắng Tim Sutton 2014-06-20 Updated news file for 2.4 release cdavila 2014-06-20 Fix typos Alexander Bruy 2014-06-20 russian translation update Matthias Kuhn 2014-06-20 [attrtable] hide "hidden" widgets Matthias Kuhn 2014-06-20 Value map widget: properly represent value Juergen E. Fischer 2014-06-20 german translation update Juergen E. Fischer 2014-06-20 processing: (redundant) translation string fixes Juergen E. Fischer 2014-06-20 metasearch: fix some self.tr calls Marco Hugentobler 2014-06-20 Change / add ntv2 entries for Portugal Matthias Kuhn 2014-06-20 Forms: Hide "Hidden" widgets Partly fixes #10649 Matthias Kuhn 2014-06-20 Editor widgets: Change default "enable sync" behavior More generic implementation of 024cd0b EditorWidgetWrappers (which are connected to fields) are synced with the layer edit mode state. WidgetWrappers (which are not strictly related to fields being editable) don't sync their edit state to the layer edit mode state. Merge: 7aa93c0 434805b alexbruy 2014-06-20 Merge pull request #1473 from gioman/master [processing] fix v.surf.bspline modules, input must be a point layer Martin Dobias 2014-06-20 Hopefully fix #10599 (blank composer map when rendering rasters) When printing on Windows, the printing does not seem to work well in the worker thread as QImages get converted to QPixmaps. Therefore we force the map rendering into main thread to avoid the issues. I do not have a printer, so I can't confirm the fix really helps Martin Dobias 2014-06-20 Fix #10648 (add layer to the selected group) Werner Macho 2014-06-20 [TRANSUP] gl by Xan Signed-off-by: Werner Macho Werner Macho 2014-06-19 [TRANSUP] es and sv Signed-off-by: Werner Macho Matthias Kuhn 2014-06-19 Relation widget: Don't disable even when containing layer is not in edit mode Matthias Kuhn 2014-06-19 Followup edbfb57, respect ownership of vl cacheindex in test Alexander Bruy 2014-06-19 russian translation update Werner Macho 2014-06-19 [TRANSUP] gl by Xan Signed-off-by: Werner Macho gioman 2014-06-19 fix v.surf.bspline modules, input must be a point layer Merge: a72bfb6 2176e16 alexbruy 2014-06-19 Merge pull request #1472 from gioman/r_cost_raster [processing] add a r.cost submodule that uses a raster input as starting point(s) + fix r.drain and add a submodule for r.drain that does not need input point vectors gioman 2014-06-19 add a r.cost submodule that uses a raster input as starting point(s) gioman 2014-06-19 fix r.drain and add a submodule for r.drain that does not need input point vectors Werner Macho 2014-06-19 [TRANSUP] nb by James Signed-off-by: Werner Macho Werner Macho 2014-06-19 [TRANSUP] forgot to add italian to transifex - sorry Signed-off-by: Werner Macho Merge: b87093d a7427b2 Werner Macho 2014-06-19 Merge pull request #1470 from qgis-jp/pullreq_2_4 update translation ja yoichigmf 2014-06-19 update translation ja Merge: 63ad0fa 1f6a47b Werner Macho 2014-06-19 Merge pull request #1469 from Qgis-Tr-kr/master [TRANSUP] Korean Werner Macho 2014-06-19 [TRANSUP] es by Carlos Signed-off-by: Werner Macho Nathan Woodrow 2014-06-19 Disable return to run field calc til 2.6. Disable button on invalid expression jangbi882 2014-06-19 Korean translation updated Merge: c884e15 0ce4cbf BJ Jang 2014-06-19 Merge pull request #3 from qgis/master Merge pull request #2 from qgis/master for Korean trans Matthias Kuhn 2014-06-19 Show embedded form as widget, not as separate dialog Fix #10573 Fix #10606 Martin Dobias 2014-06-19 Feeling dizzy? It will not get any better if you type "dizzy" into coordinates box in the status bar! Werner Macho 2014-06-19 [TRANSUP] update from transifex and updated strings Signed-off-by: Werner Macho Marco Hugentobler 2014-06-19 WMS server: fix label settings in GetPrint Marco Hugentobler 2014-06-19 Use better environment variable names for server logging Sandro Mani 2014-06-05 Update composer legend entry when layer symbology changes. Funded by Sourcepole QGIS Enterprise. Merge: c05e342 0d1d705 Werner Macho 2014-06-19 Merge pull request #1464 from Cracert/i18n [TRANSUP] pl: #18 by Radek Merge: fcde595 304ced9 mhugent 2014-06-19 Merge pull request #1462 from giohappy/master Fix 10625 reverting addDrawingOrder to previous logic Merge: ee7add4 b998bb2 Nathan Woodrow 2014-06-19 Merge pull request #1465 from slarosa/str_replace_api [cmake] removes underscore in builtin APIs file Martin Dobias 2014-06-19 Added Mathieu Pellerin to the contributors Martin Dobias 2014-06-19 Added Even Rouault to contributors Merge: fd46c49 1bfd01b Martin Dobias 2014-06-19 Merge pull request #1460 from rouault/fix_crash_in_QgsVectorFileWriter_addFeature Fix crash in QgsVectorFileWriter::addFeature() Robert Szczepanek 2014-06-18 [TRANSUP] pl: #18 by Radek Merge: 0dd02ba 0bd6d61 Werner Macho 2014-06-19 Merge pull request #1463 from Cracert/i18n [TRANSUP] pl: help - new SpatiaLite layer Robert Szczepanek 2014-06-18 [TRANSUP] pl: help - new SpatiaLite layer Juergen E. Fischer 2014-06-18 fix some warnings and indentation update Nyall Dawson 2014-06-19 [composer] Fix setting atlas filename pattern from expression dialog (fix #10628) Nyall Dawson 2014-06-19 Follow up 7af7b88c99 Nyall Dawson 2014-06-18 [composer] Force vector rendering of shape and page symbology (fix #10616) Nyall Dawson 2014-06-19 [composer] Correct placement of cross grids (fix #10626) Salvatore Larosa 2014-06-18 [cmake] removes underscore in builtin APIs file giohappy 2014-06-18 Fix 10625 reverting addDrawingOrder to previous logic Juergen E. Fischer 2014-06-18 some windows related INSTALL updates Martin Dobias 2014-06-18 Few fixes in the attribute table model They were triggering assertions in debug mode... Martin Dobias 2014-06-18 Fix #10594 (crashes when removing layers) Martin Dobias 2014-06-18 Fix model's signals if no symbology nodes are added Martin Dobias 2014-06-18 Do not add undo command if scale has not changed Nyall Dawson 2014-06-18 Fix some failing tests (diagrams control images needed rebuilding following MTR composer changes, added tolerance to renderers test) Merge: 60d93b3 ec82076 Matthias Kuhn 2014-06-18 Merge pull request #1457 from rouault/fix_crash_attr_table_no_attr_col Fix crash when opening entity form from layer without attribute Nyall Dawson 2014-06-17 [composer] Fix scaling of symbology within composer shapes and pages (fix #10609) Nyall Dawson 2014-06-18 Fix some failing tests Juergen E. Fischer 2014-06-17 improve bad layer handling: make all datasource editable (fixes #7039) Even Rouault 2014-06-17 Use GEOS reentrant API (_r functions) and update requirement to GEOS >= 3.1.0 Currently QGIS uses the 'classic' GEOS API that uses a global context. This can conflict with libraries that would also use the global context and potentially finalize it whereas QGIS will still use it later. See https://groups.google.com/forum/#!topic/spatialite-users/9YSU6c5AVQ4 for such an example of such a recent issue with Spatialite. The _r API is available since GEOS 3.1.0, which is already an ancient GEOS version. For example, old-old-stable Ubuntu (Lucid 10.04) and Debian (squeeze) ship with GEOS 3.1.0 or later. Such move has also been done in GDAL 1.11 (http://lists.osgeo.org/pipermail/gdal-dev/2013-August/036877.html) and MapServer 7.0 (https://github.com/mapserver/mapserver/issues/4733) There's no easy way unfortunately to check at compile time that you don't use the non _r API. I have patched my geos_c.h header to #ifdef that API (quite painfull to do..). A postprocessing check can be done however with : objdump -T output/lib/*.so | grep -v Base | grep GEOS | grep -v _r | grep -v "_ZN" | grep -v GEOSversion It should return nothing. Even Rouault 2014-06-17 Fix crash in QgsVectorFileWriter::addFeature() createFeature() might return a NULL pointer that OGR_L_CreateFeature() will crash upon when GDAL is compiled in debug mode (where null pointer assertions are turned on) Juergen E. Fischer 2014-06-17 another german translation update Juergen E. Fischer 2014-06-17 identify result: show id as feature label if html display string is enabled (fixes #10410) Juergen E. Fischer 2014-06-17 identify results: don't close dialog when last feature/layer is removed (fixes #10415) Martin Dobias 2014-06-18 Use at() instead of operator [] to avoid detach and save time Merge: c27e731 9019b8e7 Jürgen Fischer 2014-06-17 Merge pull request #1407 from dbaston/master postgres provider: avoid overflow from casting index oid to integer (fixes #9005) Martin Dobias 2014-06-17 Fix #10608 (impossible to add a new column in attribute table) Martin Dobias 2014-06-17 Do not show tooltips from message log viewer during QGIS startup. Showing them leads to disturbing effects while loading the GUI Martin Dobias 2014-06-17 Fix small jumps of the map canvas image after panning Nyall Dawson 2014-06-17 [composer] Increase number of decimal places for scale bar settings (fix #9367) Werner Macho 2014-06-17 [TRANSUP] es by Carlos Signed-off-by: Werner Macho Nyall Dawson 2014-06-17 [composer] Respect layer transparency when drawing legend items (fix #7890) Nyall Dawson 2014-06-17 Bump maximum distances for marker line symbol styles Nyall Dawson 2014-06-17 [composer] Correctly handle symbology using map units when drawing grid lines and overlays on maps (fix #8210) Nyall Dawson 2014-06-17 [composer] More GUI label alignment fixes for Windows Juergen E. Fischer 2014-06-17 python console: workaround for PyQt 4.11 problem Juergen E. Fischer 2014-06-17 german translation update Martin Dobias 2014-06-17 Make field expression widget work even without a layer (needed in composer) Juergen E. Fischer 2014-06-17 make two editor widget strings translatable (and german translation update) Merge: ed1d08d a70c865 Martin Dobias 2014-06-17 Merge pull request #1459 from cdavila/patch-1 Fix wrong reference to geometries in syntax Martin Dobias 2014-06-17 Fix #10605 (round corners when using simple line with offset) Marco Hugentobler 2014-06-17 Fix text linebreaks in dxf export Juergen E. Fischer 2014-06-17 add doxygen notes to QgsGeometry::offsetCurve Martin Dobias 2014-06-17 [layertree] Fix #10449 (auto-collapse layer if symbology has >= 10 items) Martin Dobias 2014-06-17 [layertree] QgsLayerTreeGroup doxymentation Martin Dobias 2014-06-17 [layertree] Update layer tree view when a tree node changes the expanded state Juergen E. Fischer 2014-06-17 osgeo4w: fix postinstall-common.bat quoting (fixes #10131) cdavila 2014-06-17 Remove duplicated line Juergen E. Fischer 2014-06-17 fix typo cdavila 2014-06-17 Fix wrong reference to geometries in sintax Geometry a was repeated and geometry was missing Even Rouault 2014-06-16 OGR provider: deal with wkbUnknown25D (wkbUnknown | wkb25DBit) This geometry type doesn't exist admitedly in the OGRwkbGeometryType enumeration but a few OGR drivers can expose layers of this type. Those layers should be dealt exactly like wkbUnknown layers, i.e. QGIS should analyze the content to see if there are points, lines, polygons and create derived layers. Also report the geometry type of wkbGeometryCollection25D layers in the U.I. Even Rouault 2014-06-16 Fix crash when opening entity form from layer without attribute When right-clicking in the attribute table of a layer that has no attribute, no feature is selected. If selecting the 'Edit form' entry, we got a crash. Alexander Bruy 2014-06-16 assign WGS84 to output layer, save length and time information (fix #8696) Alexander Bruy 2014-06-16 restore export functionality in RoadGraph (fix #8695) Nyall Dawson 2014-06-16 [composer] Ignore double clicks on mouse handle item (refs #10143) Nyall Dawson 2014-06-16 [composer] Use the old line placement algorithm for arrows created in versions prior to 2.4 (fix #10457) Martin Dobias 2014-06-16 Fix waitForFinishedWithEventLoop() causing a freeze in composer Thanks Nyall for finding that out! Martin Dobias 2014-06-16 Inverted polygons fixes (crashes, geometry checking, memory consuption, CPU efficiency) Nyall Dawson 2014-06-16 [composer] Neaten up some item widget panels Sandro Santilli 2014-06-16 Allow db_manager use of connections with no parameters Fixes 'Error: database "" does not exist' message. Closes bug #9037 Victor Olaya 2014-06-15 [processing] added algs to set style of layer Victor Olaya 2014-06-15 [processing] indentation fix Victor Olaya 2014-06-15 [processing] added extension option to ParameterFile.py Victor Olaya 2014-06-12 [processing] If SAGA/OTB exist as bundled app, do not allow manual configuration Victor Olaya 2014-06-12 [processing] Prioritze bundled gdal over framework on OS X Merge: 8005eab 1613d84 Martin Dobias 2014-06-16 Merge pull request #1455 from Oslandia/fix_inverted Inverted polygons: fix memory leaks Merge: aa09c8c 00dca40 Werner Macho 2014-06-16 Merge pull request #1454 from Cracert/i18n [TRANSUP] pl: varia, #10 Hugo Mercier 2014-06-16 Restore _makeUnion Martin Dobias 2014-06-16 Fix #10392 (ellipsoid for measurement keep getting reset) Marco Hugentobler 2014-06-16 Fix another parameter check in server code Hugo Mercier 2014-06-16 Fix a small memory leak in singlesymbolrenderer widget Hugo Mercier 2014-06-16 Inverted polygons: fix memory leaks Marco Hugentobler 2014-06-16 Fix layertitle string comparison Juergen E. Fischer 2014-06-16 german translation update Juergen E. Fischer 2014-06-16 fix build on precise Nyall Dawson 2014-06-16 [composer] Change remaining color push buttons into QgsColorButtons Martin Dobias 2014-06-16 Add missing license headers for new classes from MTR Martin Dobias 2014-06-16 Fix #10595 (symbol units not applied when loading symbol from library) Martin Dobias 2014-06-16 Enable render caching by default Robert Szczepanek 2014-06-15 [TRANSUP] pl: varia, #10 Juergen E. Fischer 2014-06-15 osgeo4w: x86 updated to GRASS 6.4.4RC1 Juergen E. Fischer 2014-06-15 wfs provider: make wfs non-cached mode work (fixes #10413) TODO: refactoring Juergen E. Fischer 2014-06-15 debian packaging update Martin Dobias 2014-06-16 Fix #10271 (crash from race condition in SVG cache when using parallel rendering) Merge: 9e3f921 ea34bef Martin Dobias 2014-06-15 Merge pull request #1451 from ahuarte47/Issue_OffsetCurve_API Replace GEOS function calls by QgsGeometry class methods Martin Dobias 2014-06-15 Map rendering: allow waiting for job while handling events Merge: 685d3e8 703c3e7 Martin Dobias 2014-06-15 Merge remote-tracking branch 'edigonzales/master' Conflicts: src/core/symbology-ng/qgslinesymbollayerv2.cpp Merge: 6c21262 7bec7c2 Werner Macho 2014-06-15 Merge pull request #1453 from qgis-jp/pullreq_2_4 update translation JA yoichigmf 2014-06-15 update translation JA Merge: 637dca7 6c21262 BJ Jang 2014-06-15 Merge pull request #2 from qgis/master Forked source update request Salvatore Larosa 2014-06-14 [pyqgis-console] APIs file update edigonzales 2014-06-14 fixes an issue introduced with #1449 Juergen E. Fischer 2014-06-14 vectorlayer: better matching of supported types (fixes #10564) Juergen E. Fischer 2014-06-14 raster layer properties: resync renderer settings after loading qml (fixes #10565) Juergen E. Fischer 2014-06-14 add some missing dialog titles Juergen E. Fischer 2014-06-14 edit types: fix saving of range and relation reference widget (fixes #10562) Nyall Dawson 2014-06-14 [composer] Loading old templates should default to drawing map canvas items (fix #10581) Nyall Dawson 2014-06-14 [composer] Scale changes while in atlas fixed scale mode are permanently applied (fix #9602) Nyall Dawson 2014-06-14 [composer] Fix alignment of some gui controls volaya 2014-06-14 [processing] some cleaning in SAGA algs Removed algs that were not working or not useful, so as to have a more compact collection of alga Nathan Woodrow 2014-06-14 Fix signal connection Juergen E. Fischer 2014-06-14 fix build error and update sips Juergen E. Fischer 2014-06-14 german translation update Nathan Woodrow 2014-06-14 Use expression widget for attribute table update bar Nathan Woodrow 2014-06-14 Add isValid shortcut method for QgsExpression. Changes to field model and expression widget. - Extract valid and isExpression checks in expression widget Nathan Woodrow 2014-06-14 Expression Widget: Return current text even if invalid index ahuarte47 2014-06-14 avoid memory leak ahuarte47 2014-06-14 no modify original geometry Etienne Tourigny 2014-06-13 identify results dialog: use combo box instead of tabbed widget for view mode (rasters only) and add tooltips for identify mode and view mode (#10376) Juergen E. Fischer 2014-06-13 ogr: don't create spatial index for shapes after deletes. That was supposed to also run a repack and doesn't work without (fixes #10483, refs #8317, refs #8822) Merge: b6d8331 e257227 Martin Dobias 2014-06-14 Merge pull request #1286 from dakcarto/issue-3975_labeling-svg-as-text Fix for issue 3975, labeling svg as text Larry Shaffer 2014-06-13 Fix local test server response parsing and add debug output for url Larry Shaffer 2014-06-13 Initial fix for #3975, label engine vectorizing texts in SVG and PDF output - Add labeling engine option to render text-as-text - Default is still text-as-outlines (vectorized), due to differences between text (as text) and buffer (as outline) methods - Good output with printing to PDF (searchable, selectable text and embedded fonts) - OK output with SVG, but differences between text (as text) and buffer (as outline) methods Does not yet include unit tests or auto-setting of text-as-text for SVG output Larry Shaffer 2014-03-31 Note about PdfFormat and NativeFormat for QPrinter PDF output and embedding fonts - Unlike the Qt issues for NativeFormat on Mac, choosing to print, then Save as PDF, embeds fonts Larry Shaffer 2014-03-31 Add ability to define QImage format for render jobs via map settings - Defaults to QImage::Format_ARGB32_Premultiplied, as before - Update labeling unit tests to use defined format Larry Shaffer 2014-03-31 Add convenience functions to Python test utilities for rendering with map settings - Update labeling unit tests to use new functions - All labeling test classes render separately from QgsRenderChecker - Update labeling server test class to sync map settings to temp project Juergen E. Fischer 2014-06-13 fix windows build rldhont 2014-06-13 [BUGFIX][QGIS-Server] 10379 Flaky WFS GetFeature FIX return Feature collection when featureCount is 0 Juergen E. Fischer 2014-06-13 attribute form: allow overwriting invalid source attribute values and skip empty edit commands (fixes #10360) Juergen E. Fischer 2014-06-13 don't show and raise identify results if attribute form pops up Juergen E. Fischer 2014-06-13 remove unused QgsPasteTransformations class Juergen E. Fischer 2014-06-13 don't show layername all the time volaya 2014-06-13 [processing] fixed #10575 volaya 2014-06-13 [processing] changed how toolbox is updated after adding/removing provider Martin Dobias 2014-06-13 [layertree] Fix last bit of #10384 (update on capitalization change) Martin Dobias 2014-06-13 [layertree] Add sip/PyQt subclassing code for model and view Martin Dobias 2014-06-13 [layertree] respect bold font settings for layer/group Martin Dobias 2014-06-13 Fix expanded/collapsed state when loading layer tree from old project files Martin Dobias 2014-06-13 Remove deprecated option "add new layers to the current group" (now always on) Martin Dobias 2014-06-13 Fix #10560 (wrong feature count) Martin Dobias 2014-06-13 Fix #10525 (zoom to the first layer not always working) Merge: 03dfef8 637dca7 Werner Macho 2014-06-13 Merge pull request #1450 from Qgis-Tr-kr/master Korean transration completed Alvaro Huarte 2014-06-13 fix indentation Alvaro Huarte 2014-06-13 Replace GEOS function calls by QgsGeometry class methods jangbi882 2014-06-13 Korean transration completed jangbi882 2014-06-13 Korean transration completed Merge: 95687a2 b2782ee Martin Dobias 2014-06-13 Merge pull request #1439 from Oslandia/fix_inverted Inverted polygons: bug fixes Juergen E. Fischer 2014-06-13 fix typos Juergen E. Fischer 2014-06-13 indentation update jangbi882 2014-06-13 1/5 Merge: c49e38c 17a8e38 Martin Dobias 2014-06-13 Merge pull request #1437 from ahuarte47/Issue_10195 Fix bug #10195: Offset line symbology added to polygon layer leads to crash Merge: ea0e1b1 b3cbefc Martin Dobias 2014-06-13 Merge pull request #1449 from edigonzales/master fixes #10520 (scale method for SVG) and #10509 (dash pattern) Merge: c31b673 ea0e1b1 Qgis-Tr-kr 2014-06-13 Merge pull request #1 from qgis/master Forked suouce update request Nathan Woodrow 2014-06-13 [MSSQL] Fix loading of layers in browser and dialog. Add ODBC connection pooling Juergen E. Fischer 2014-06-13 german translation update Werner Macho 2014-06-12 [TRANSUP] transifex update and overall strings update Signed-off-by: Werner Macho Juergen E. Fischer 2014-06-12 db manager: fix import of geometryless files (fixes #8970) Juergen E. Fischer 2014-06-12 mssql provider: cleanup driver and service usage and copy password in feature iterator (fixes #10428) Juergen E. Fischer 2014-06-12 db_mananger: fix loading geometryless tables (fixes #10566) Juergen E. Fischer 2014-06-12 adapt tolerance to coordinate range when reshaping (fixes #9802) Marco Hugentobler 2014-06-12 Fix crash in GetLegendGraphic with scale parameter and plug memory leak edigonzales 2014-06-12 fixes two symbology bugs Alexander Bruy 2014-06-12 bump Processing version to avoid masking by version from plugin site Nathan Woodrow 2014-06-12 Update UI from saved symbol correctly Juergen E. Fischer 2014-06-12 debian packaging update (include pyspatialite also on quantal) Merge: da99331 b3088e0 Nathan Woodrow 2014-06-12 Merge pull request #1315 from manisandro/populate_transparency_table Populate transparency table when loading qml style for raster layer - Fix #10565 Nyall Dawson 2014-05-27 Fix color buttons disappearing in windows when alpha is set (fix #10187) Merge: ef70000 81593ed Nathan Woodrow 2014-06-12 Merge pull request #1444 from avlisad/master Improve mouse logic for measure tool. Fix #4628 Fix #10029 Merge: 28145b4 306b148 volaya 2014-06-12 Merge pull request #1448 from gioman/master small changes to processing "import into postgis" tool gioman 2014-06-12 small changes to import into postgis tool Merge: fc8d07e 51c6c60 Nathan Woodrow 2014-06-12 Merge pull request #1443 from manisandro/qgsfieldmap Remove all traces of deprecated QgsFieldMap. Martin Dobias 2014-06-12 Fix #10475 (symmetrical difference behaves like difference) Merge: fa88eb2 2ef7dcf volaya 2014-06-12 Merge pull request #1389 from radosuav/small_processing_fixes [processing] Small fixes Merge: d43d306 8e03f7f Werner Macho 2014-06-12 Merge pull request #1447 from Cracert/i18n [TRANSUP] pl: help - vector layer properties Martin Dobias 2014-06-12 Fix #10548 (crash using custom forms) When using a custom UI file, the widget is created beforehand, and the code was failing to initialize it. Nyall Dawson 2014-06-12 [composer] Move guidelines to correct position on page when paper size changes, fix lines drawing with incorrect width and height Martin Dobias 2014-06-12 Fix #10527 (put auto-generated layout into scroll area) Robert Szczepanek 2014-06-11 [TRANSUP] pl: help - vector layer properties Victor Olaya 2014-05-30 [processing] some cleaning in saga algorithms Juergen E. Fischer 2014-06-12 avoid reloading fields when existing provider encoding is re-set (fixes #10340) Nyall Dawson 2014-06-11 [composer] Don't round down scale for maps if < 1 (fix #9366) Alvaro Huarte 2014-06-10 #10195: avoid calculate the GeometryType in offsetline ahuarte47 2014-06-10 #10195: Fix offsetline when the geometry is a polygon Use GEOSBuffer in offsetline when the geometry is a polygon Juergen E. Fischer 2014-06-11 don't reopen feature form when identify maptool is reactivated (fixes #10104) Merge: dc9148c 32d8c12 Werner Macho 2014-06-11 Merge pull request #1445 from Cracert/i18n {TRANSUP] pl: context_help Juergen E. Fischer 2014-06-11 enhance error message when change/added attributes mismatch (refs #8481) Robert Szczepanek 2014-06-11 {TRANSUP] pl: context_help Merge: d20c569 0d7204c Jürgen Fischer 2014-06-11 Merge pull request #1406 from m-kuhn/spatialite-fix [spatialite] Update layer statistics after adding new columns Werner Macho 2014-06-11 [TRANSUP] add iceland translator Signed-off-by: Werner Macho avlisad 2014-06-11 Improve mouse logic for measure tool. Fix for #4628, #10029 Nyall Dawson 2014-06-11 [composer] Make atlas fixed and predefined scales options work correctly with geographic coordinate systems (fix #9839) Martin Dobias 2014-06-11 Fix #10081 (problems with reprojection of layers) Martin Dobias 2014-06-11 Avoid second transform of extent (in QgsMapRender) on change of dest CRS Werner Macho 2014-06-11 [TRANSUP] transifex update on request Signed-off-by: Werner Macho Nyall Dawson 2014-06-11 [composer] Correctly set initial state of atlas filename expression button (fix #10499) Nyall Dawson 2014-06-11 [composer] Bump max number of rows for attribute tables to 999 Sandro Mani 2014-06-11 Remove all traces of deprecated QgsFieldMap. Funded by Sourcepole. Denis Rouzaud 2014-06-11 fix #10405: limit expression widget size Denis Rouzaud 2014-06-11 Revert 150ffa3 This reverts commit 150ffa37804501f5fd88fede51c4647bcdddd85c. Marco Hugentobler 2014-06-11 Call loadLabelSettings in initializeRender method and enable in sldparser Larry Shaffer 2014-06-09 Fix #10518, PAL engine settings no longer honored by qgis_mapserv Martin Dobias 2014-06-11 [layertree] Fix possible crash when removing layers Martin Dobias 2014-06-11 Fix move label tool with PostGIS (similar problem as #9148) Martin Dobias 2014-06-11 Fix #9148 (data-defined label positions with postgis) A bit strangely, conversion of null variant with double type to a double value is considered ok by QVariant Martin Dobias 2014-06-11 Labeling: use over centroid for polygon labeling by default Martin Dobias 2014-06-11 pal labeling: do not try to register feature if GEOS geometry is empty This removes the debug noise from GEOS when it tries to compute contains() predicate Merge: 7f434a0 7e0ef8f Martin Dobias 2014-06-11 Merge remote-tracking branch 'alvaro/Issue_10433' ahuarte47 2014-06-11 #10433: Fix simplification of invalid and empty multipolygons Victor Olaya 2014-06-10 [processing] more correct handling of nomodeler tag in scripts Victor Olaya 2014-06-10 [processing] fixed wrong imports Victor Olaya 2014-06-10 [processing] Do not throw exception if help file does not contain valid json Victor Olaya 2014-06-08 [processing] some file restructuring Victor Olaya 2014-06-08 [processing] made postprocessing code more pythonic Etienne Tourigny 2014-06-10 fix GDalTools overviews when clean and no levels are defined (#10538) Martin Dobias 2014-06-11 Fix #10535 (legend symbol items for graduated symbol renderer) The implementation used temporary symbols which are only valid between startRender()/stopRender() calls and was breaking also composer legend. Merge: 3af01b3 b545253 Werner Macho 2014-06-10 Merge pull request #1440 from Cracert/i18n [TRANSUP] pl: DateTimeEdit, others Robert Szczepanek 2014-06-10 [TRANSUP] pl: DateTimeEdit, others Martin Dobias 2014-06-11 Fix #10524 (fix zoom to full) Etienne Tourigny 2014-06-10 remove table and graph tabs only if there are no raster layers identified (#10376) Martin Dobias 2014-06-10 Fix #9733 (empty attribute table if showing just selected / visible features) Martin Dobias 2014-06-10 Fix #10514 (snapping marker visible even if not snapped to anything) Hugo Mercier 2014-06-10 Inverted polygons: use unary union Hugo Mercier 2014-06-10 Inverted polygons: avoid inplace geometry transformation Hugo Mercier 2014-06-10 Inverted polygons: fix feature count (call start render even without painter) Martin Dobias 2014-06-10 Fix #10202 (fix crash in graduated symbol renderer) Martin Dobias 2014-06-10 Fix #9951 (perimeter completely wrong with OTF on) With OTF on and computation on an ellipsoid, the coordinates were transformed twice(!) when measuring perimeter. Martin Dobias 2014-06-10 Build "multi" only when it's needed Martin Dobias 2014-06-10 Small renaming of typedef / member variable Martin Dobias 2014-06-10 Allow some mismatched pixels in inverted renderer test On my machine, there were ~200-800 mismatched pixels in each test image, but visually they look the same. Merge: ae9048a 25346fe Martin Dobias 2014-06-10 Fix #10355 (crash) and #10338 (overlapping polygons) in inverted polygon renderer Conflicts: python/core/symbology-ng/qgsinvertedpolygonrenderer.sip src/core/symbology-ng/qgsinvertedpolygonrenderer.cpp src/core/symbology-ng/qgsinvertedpolygonrenderer.h src/gui/symbology-ng/qgsinvertedpolygonrendererwidget.cpp src/gui/symbology-ng/qgsinvertedpolygonrendererwidget.h Martin Dobias 2014-06-10 Fixed indentation Werner Macho 2014-06-09 [TRANSUP] prepare move for el from github to transifex Signed-off-by: Werner Macho Juergen E. Fischer 2014-06-10 fix last commit (followup 2e2853a1f6e) Juergen E. Fischer 2014-06-09 fix zoom to layer extent crash (fixes #10516) Merge: b5c652b b99a21d Werner Macho 2014-06-09 Merge pull request #1436 from thodorisvakkas/master [TRANSUP] greek translation 20140609 Merge: dc44747 6a84160 Werner Macho 2014-06-09 Merge pull request #1435 from Cracert/i18n [TRANSUP] pl: composer, datasymbol, others Robert Szczepanek 2014-06-09 [TRANSUP] pl: composer, datasymbol, others Juergen E. Fischer 2014-06-09 editor widgets: restore initialization of null numeric values and dates in text edit widget (followup e605ad65; fixes #10326) thodoris.vakkas 2014-06-09 [TRANSUP] greek translation 20140609 Signed-off-by: thodoris.vakkas Martin Dobias 2014-06-10 Fix #10512 (missing propagation of fields/scale to sub-symbols) Juergen E. Fischer 2014-06-09 datum transformation selection: * respect the 'auto enable otf' setting * don't ask if otf is off or for layers without geometry * ask when otf was switched on * show more information in selection dialog Merge: 8d04adb a55303d Werner Macho 2014-06-09 Merge pull request #1434 from Cracert/i18n [TRANSUP] pl: varia Robert Szczepanek 2014-06-09 [TRANSUP] pl: varia Juergen E. Fischer 2014-06-09 german translation update Juergen E. Fischer 2014-06-09 editor widgets: restore handling of null values in textedit widget (fixes #10497) Alexander Bruy 2014-06-09 russian translation update Juergen E. Fischer 2014-06-09 value relation: save filter expression correctly and re-enable filter expression button (fixes #10503) Juergen E. Fischer 2014-06-09 field model: return alias as display role, but field name as edit role (fixes #10467) Merge: a59b54e 1357c14 Nathan Woodrow 2014-06-09 Merge pull request #1432 from gvellut/master Fix #9020 Juergen E. Fischer 2014-06-09 re-add support for top labeled editor widgets in default forms (fixes #10431) Juergen E. Fischer 2014-06-09 identify results: hide highlights on deactivation and hide table/plot tab meant for rasters when there are only vector features (fixes #10376) Werner Macho 2014-06-09 [TRANSUP] transifex update Signed-off-by: Werner Macho Martin Dobias 2014-06-09 Fix #10365 (incorrectly escaped strings from QgsExpression) Martin Dobias 2014-06-09 Fix #651 (zoom to layer with one point does not work) Martin Dobias 2014-06-09 Fix #10212 (fail to handle relative paths to gzipped files) Martin Dobias 2014-06-09 Fix #10473 (raster preview icons in layer tree view) Merge: afe6f2b 674cf07 Werner Macho 2014-06-08 Merge pull request #1433 from Cracert/i18n [TRANSUP] pl: function_help Robert Szczepanek 2014-06-08 [TRANSUP] pl: function_help *_* 2014-06-09 Fix for http://hub.qgis.org/issues/9020 Victor Olaya 2014-06-08 [processing] removed debug lines introduced in last commit Victor Olaya 2014-06-08 [processing] added help files for algs in qgis group Most help files missing content Victor Olaya 2014-06-08 [processing] rst files are now the default for help files Victor Olaya 2014-06-08 [processing] removed geoserver algorithms and moved postgis ones to qgis agorithms group Victor Olaya 2014-06-05 [processing] catch error when local help files fail when trying to find version number of script Victor Olaya 2014-06-05 [processing] some minor cleaning Victor Olaya 2014-06-05 [processing] added gdal algs to simplified interface, replacing saga ones Victor Olaya 2014-06-05 [processing] some minor improvements in script algorithm Victor Olaya 2014-06-05 [processing] added 'nomodeler' option to scripts Martin Dobias 2014-06-08 Use QgsDebugMsg instead of qDebug Juergen E. Fischer 2014-06-08 fix browser crash (fixes #10461) Alexander Bruy 2014-06-08 russian and ukrainian translation update Merge: db5ae6c add1c92 Werner Macho 2014-06-08 Merge pull request #1431 from Cracert/i18n [TRANSUP] pl: function_help - colors Robert Szczepanek 2014-06-07 [TRANSUP] pl: function_help - colors borys 2014-06-07 [TRANSUP] pl: typo Juergen E. Fischer 2014-06-07 add xsd schema to validate mapserver capabilities (might fix #10489) Nyall Dawson 2014-06-07 [composer] Only consider frame width if a frame is set when drawing label text Sandro Mani 2014-06-03 Consider also font descent and baseline in QgsComposerLabel::adjustSizeToText. Funded by Sourcepole QGIS Enterprise. Merge: 4750211 b199dc7 Nyall Dawson 2014-06-07 Merge pull request #1423 from manisandro/python_addItemsFromXML QgsComposition::addItemsFromXML for python (without optional arguments) Nyall Dawson 2014-06-07 Follow up 6b973e1c3e Nyall Dawson 2014-06-07 [composer] Correctly handle shape frame and backgrounds from pre 2.0 projects (fix #8597) Nyall Dawson 2014-06-07 [composer] When opening pre 2.3 projects keep picture item placement at middle (fix #10458) Nyall Dawson 2014-06-07 [composer] Check if attribute index is valid when reading attribute table fields from pre 2.4 projects (refs #10482) Merge: b317912 b4a38c2 Werner Macho 2014-06-06 Merge pull request #1430 from Cracert/i18n [TRANSUP] pl: function_help Paolo Cavallini 2014-06-06 Update gridcalculator.rst Robert Szczepanek 2014-06-06 [TRANSUP] pl: function_help Paolo Cavallini 2014-06-06 Update gridcalculator.rst Paolo Cavallini 2014-06-06 Update gridcalculator.rst Added a conditional example Merge: 4850111 bf82848 mhugent 2014-06-06 Merge pull request #1419 from marcel-dancak/master Mapserver's GetProjectSettings/GetFeatureInfo bug-fixes Denis Rouzaud 2014-06-06 fix #10408: use today/now for date/time widget by default Werner Macho 2014-06-06 update source translation for transifex Signed-off-by: Werner Macho Merge: ced6a30 150ffa3 Denis Rouzaud 2014-06-06 Merge pull request #1428 from 3nids/fix10405 fix #10405 and #10303 partially: removes the scroll area for the style page Marco Hugentobler 2014-06-06 Label buffers not supported for dxf export Werner Macho 2014-06-06 [TRANSUP] fi by kari Signed-off-by: Werner Macho Marco Hugentobler 2014-06-06 Fix line break in dxf label export Marco Hugentobler 2014-06-06 Fix dxf label export Paolo 2014-06-06 More coherence in IT GUI Paolo 2014-06-06 Updated IT GUI Matthias Kuhn 2014-06-06 Remove relations when a involved layer gets deleted Merge: 5e8cda7 7475454 Werner Macho 2014-06-06 Merge pull request #1420 from Cracert/i18n VectorLayer, SymbolsList, WidgetShapeburst, XML, parent Merge: 69f7b65 040cd6b Werner Macho 2014-06-06 Merge pull request #1425 from qgis-jp/pullreq_2_4 GUI Translation update ja Denis Rouzaud 2014-06-06 fix 10303: limit expression widget width in data defined properties Denis Rouzaud 2014-06-06 remove useless argument Denis Rouzaud 2014-06-06 FieldExpressionWidget: add tooltip if expression is larger than widget Merge: 563f521 319694f Martin Dobias 2014-06-06 Merge pull request #1429 from christianurich/QgsDatumTransformStore_transformation_0 Fix crash when QgsDatumTransformStore::transformation returns 0 Merge: 8c513f9 e7056f6 Martin Dobias 2014-06-06 Merge pull request #1426 from simonsonc/qgsvaluemapconfigdlg-deprecated-api Replace deprecated QRexExp API Christian Urich 2014-06-06 Fix crash when QgsDatumTransformStore::transformation returns 0 Simply fix to prevent crash if QgsDatumTransformStore::transformation returns 0. Works for me but has not been further tested! Denis Rouzaud 2014-06-06 fix #10405 and #10303 partially: removes the scroll area for the style page Merge: ade4c7b 60dfc79 Martin Dobias 2014-06-06 Merge pull request #1427 from simonsonc/qgscolorbutton-deprecated-api Replace deprecated API Carl Simonson 2014-06-05 Replace deprecated API Carl Simonson 2014-06-05 Replace deprecated QRexExp API Qt 4.6 saw QRegExp::numCaptures() change to QRegExp::captureCount(). yoichigmf 2014-06-06 GUI Translation update ja Juergen E. Fischer 2014-06-06 german translation update Merge: 2a80881 bcde66f mhugent 2014-06-05 Merge pull request #1403 from mdouchin/getmap_image_quality QGIS Server - new project option imageQuality used for JPEG images Marco Hugentobler 2014-06-05 Fix outline color in simple marker dxf export Michael Douchin 2014-05-28 QGIS Server - new project option imageQuality used for JPEG images * JPEG image quality parameter in OWS / WMS capabilities of the Project properties dialog * this parameter is only used for jpeg images * a new parameter IMAGE_QUALITY can be used in the getMap request and will override the project value Marco Hugentobler 2014-06-05 Fix ellipse marker dxf export Martin Dobias 2014-06-05 Reintroduce datum transforms (were disabled during transition to MTR) Denis Rouzaud 2014-06-05 QgsFieldModel use attributeDisplayName (fix #10451) Nyall Dawson 2014-06-05 Allow choice of files with non .html extension for HTML annotation Nyall Dawson 2014-06-05 Don't draw annotation text outside of painter's clip region (fix #10400) Martin Dobias 2014-06-05 Fix #10468 (WMS GetLegendGraphic support) Martin Dobias 2014-06-05 Fix #10469 (symbology not refreshed after drag'n'drop) Martin Dobias 2014-06-05 Fix crash when changing to paletted renderer (with no colors) Martin Dobias 2014-06-05 Fix a crash when un-setting raster band in raster layer properties Werner Macho 2014-06-04 [TRANSUP] es by carlos with transifex update Signed-off-by: Werner Macho Werner Macho 2014-06-04 [TRANSUP] sv by Victor Signed-off-by: Werner Macho Martin Dobias 2014-06-04 [layertree] Fix python issues with addLayer() Martin Dobias 2014-06-04 [layertree] Only add layers to layer tree if the client wanted that Martin Dobias 2014-06-04 [layertree] Do not start editing in tree view too easily Werner Macho 2014-06-04 fixing some UI bugs in settings dialog Signed-off-by: Werner Macho Marco Hugentobler 2014-06-04 Event layer function: catch various error cases for line offsets Martin Dobias 2014-06-04 Trying to fix #10164 (crash on zoom in/out) This happens due to infinite recursion when syncing extent between map canvas and map renderer. Not entirely sure why, seems to happen only on 32bit systems. Nyall Dawson 2014-06-04 [composer] Mark project dirty when additional composer related changes occur (fix #7470) Sandro Mani 2014-06-03 QgsComposition::addItemsFromXML for python (without optional arguments). Funded by Sourcepole QGIS Enterprise. Nyall Dawson 2014-06-04 [composer] Allow clicking-dragging to set size of labels, pictures, legends ands tables when adding them to a composition (fix #9821) Matthias Kuhn 2014-06-04 Fix LineEdit edit type conversion warning http://lists.osgeo.org/pipermail/qgis-developer/2014-June/032942.html Alexander Bruy 2014-06-04 [processing] handle non-ASCII characters in modeller algorithm list Martin Dobias 2014-06-04 Fix #10412 (option whether to show newly added layers) pcav 2014-06-04 Updated IT GUI translation Werner Macho 2014-06-03 [TRANSUP] gl by Xan and hu by Zoltan Signed-off-by: Werner Macho Martin Dobias 2014-06-04 [layertree] Preserve the order of layers when adding several layers at once Martin Dobias 2014-06-04 [layertree] update insertion point to layer tree when appropriate Robert Szczepanek 2014-06-03 VectorLayer, SymbolsList, WidgetShapeburst, XML, parent Martin Dobias 2014-06-03 [layertree] Add Python bindings - part two (gui) Martin Dobias 2014-06-03 [layertree] Add python bindings - part one (core) Nyall Dawson 2014-06-03 [composer] Setting the composition for a composer view correctly creates item widgets and sets up connections for composer to composition (fix #10038) Marcel Dancak 2014-06-03 mapserver: excluding of not allowed WMS feature attributes from GetFeatureInfo response in GML format Marcel Dancak 2014-06-03 mapserver: added 'alias' property into feature attribute properties of GetProjectSettings response Merge: 9053d46 9e14b32 Marcel Dancak 2014-06-03 Merge remote-tracking branch 'upstream/master' Matthias Kuhn 2014-06-03 Capitalization Nyall Dawson 2014-06-03 Add north arrow variants without text Antonio Locandro 2014-05-26 North_Arrows Additional arrows, including without Letter Marks and Surveying with Declination Paolo 2014-06-03 Updated IT GUI translation Merge: 309f5d5 6209b97 Marcel Dancak 2014-06-03 Merge remote-tracking branch 'upstream/master' Matthias Kuhn 2014-06-03 Add layer name to select by expression dialog title Fix #10422 Victor Olaya 2014-06-02 [processing] first implementation of github-based resources manager Victor Olaya 2014-05-31 [processing] helpfiles for scripts/models are now stored as json Victor Olaya 2014-06-02 [processing] Use certain gdal algs in simplified mode instead of saga ones Victor Olaya 2014-06-02 [processing] all gdal algs now have the same icon Did some code cleaning in gdal package Juergen E. Fischer 2014-06-02 sip: remove enum constants Juergen E. Fischer 2014-06-02 fix some warnings Juergen E. Fischer 2014-06-02 fix layer tree translation support Merge: 4d5d26a 510831b Werner Macho 2014-06-02 Merge pull request #1418 from Cracert/i18n [TRANSUP] pl: WebView, WMS Robert Szczepanek 2014-06-02 [TRANSUP] pl: WebView, WMS Merge: 7f21918 8c67cdf Martin Dobias 2014-06-02 Merge pull request #1399 from giohappy/fix_osm_initspatialmetadata Fix #9693 (Make OSM DB metadata initialization in transaction) Merge: 4cf0486 7f21918 Marcel Dancak 2014-06-02 Merge remote-tracking branch 'upstream/master' Matthias Kuhn 2014-06-02 DnD forms: Make tabs scrollable Fix #10389 Martin Dobias 2014-06-02 Use QgsDebugMsg for a debug message Martin Dobias 2014-06-02 Do not show layer extent in the status bar after the load (useless) Nathan Woodrow 2014-06-02 Clean up MS SQL iterator. Fix #10115 - Fix crash on join Nyall Dawson 2014-06-02 [composer] Don't show vector selections in composer map items (fix #7610) Martin Dobias 2014-06-02 Show busy indicator while rendering in map canvas Martin Dobias 2014-05-30 [layertree] minor consolidation of insert/remove functions Merge: 108cbc3 c095fe9 mhugent 2014-06-02 Merge pull request #1397 from manisandro/minmax_fixes Min-max improvements Marco Hugentobler 2014-06-01 Remove legacy server filter classes Nathan Woodrow 2014-06-02 [MSSQL] Convert uniqueidentifier to string Nathan Woodrow 2014-06-02 Fix #10402 - Don't duplicate combo items on selection Merge: 79edbc2 8438ef4 Werner Macho 2014-06-01 Merge pull request #1416 from Cracert/i18n [TRANSUP] pl: varia Merge: 779bf5f 7b192fc volaya 2014-06-01 Merge pull request #1415 from fsdias/fixe_dotlplot2 [processing] Fix dotplot Robert Szczepanek 2014-06-01 [TRANSUP] pl: varia fsdias 2014-06-01 Update Dotplot.rsx.help fsdias 2014-06-01 Update Dotplot.rsx Juergen E. Fischer 2014-06-01 postgres: close connection when cursor can't be opened (fixes #10119) Juergen E. Fischer 2014-06-01 fill ring: set attribute dialog to add mode (fixes #10363) Juergen E. Fischer 2014-06-01 set feature form windows title Merge: a516c36 183bfa5 Werner Macho 2014-06-01 Merge pull request #1413 from qgis-jp/pullreq_2_4 translate gui ja Juergen E. Fischer 2014-06-01 nodetool: fix crash when deleting last vertex (fixes #10367) Juergen E. Fischer 2014-06-01 re-introduce resetting of attribute values Juergen E. Fischer 2014-06-01 don't show layer popup selection if there is only one item Juergen E. Fischer 2014-06-01 db_manager: replace toPyObject() (old sip api; fixes #9991) Juergen E. Fischer 2014-06-01 fix categorized renderer crash (fixes #10096) yoichigmf 2014-06-01 translate gui ja Juergen E. Fischer 2014-06-01 german translation update Werner Macho 2014-06-01 [TRANSUP] transifex update Signed-off-by: Werner Macho Merge: 166f8fc bf99a74 Tim Sutton 2014-06-01 Merge pull request #1412 from timlinux/master Added poster with icon Tim Sutton 2014-06-01 Added poster with icon Nyall Dawson 2014-06-01 [composer] Small improvements to api docs Sandro Mani 2014-05-28 [composer] Composer item controls in GUI show position relative to page origin (also save page number and relative position to xml) (fix #9411) Juergen E. Fischer 2014-06-01 debian packaging update (fixes #10120) Juergen E. Fischer 2014-06-01 postgres: also accept PGRES_TUPLES_OK as positive result for UPDATE/DELETE/INSERT (fixes #9738) Juergen E. Fischer 2014-05-31 reintroduced field validators on line edits Juergen E. Fischer 2014-05-31 fix crash in postgres layer creation (followup 3470b1d5c; fixes #10014) Juergen E. Fischer 2014-05-31 fix doxygen main page Juergen E. Fischer 2014-05-31 fix 016b03b5 Juergen E. Fischer 2014-05-31 postgres: convert 4d geometries to 2d (fixes #9748) Nathan Woodrow 2014-05-31 Use bigger icon for field expression widget Nathan Woodrow 2014-05-31 Fix #10405 - Don't resize expression area for label dialog. Merge: 6dd4346 0b8469a Werner Macho 2014-05-31 Merge pull request #1411 from Cracert/i18n [TRANSUP] pl: varia Nyall Dawson 2014-05-30 [composer] Fix calculation of mouse action for position for mouse handles (refs #10143, tentative fix) Robert Szczepanek 2014-05-30 [TRANSUP] pl: varia Merge: ec79fa9 744a214 Werner Macho 2014-05-30 Merge pull request #1410 from Cracert/i18n [TRANSUP] pl: IdentifyResults Victor Olaya 2014-05-30 [processing] added missing parameter definition string Victor Olaya 2014-05-30 [processing] allow blank spaces in script parameters definition Victor Olaya 2014-05-29 [processing] Added extent parameter to RasterLayerBoundsAlgorithm.py Robert Szczepanek 2014-05-30 [TRANSUP] pl: IdentifyResults Martin Dobias 2014-05-30 [layertree] Rename childLayerIds() to findLayerIds() Merge: ecdb6de 83eec4a Martin Dobias 2014-05-30 Merge remote-tracking branch 'alvaro/Simplification_MTR' Conflicts: python/core/qgsmapsettings.sip Martin Dobias 2014-05-30 [layertree] Add note about used custom properties Martin Dobias 2014-05-29 [layertree] More doxygen docs Larry Shaffer 2014-05-29 Bundle libminizip on Mac if used by osgdb_kml plugin of osgearth Larry Shaffer 2014-05-29 #9480: Move checkbox to within centroid frame in labeling gui Merge: 34f3378 6cb4cbb Larry Shaffer 2014-05-29 Merge pull request #1238 from ahuarte47/Issue_9480 Fix bug #9480: Labels for polygon centroids should always originate inside a polygon Werner Macho 2014-05-29 [TRANSUP] es by Carlos Signed-off-by: Werner Macho Merge: c661119 6c695cb Werner Macho 2014-05-29 Merge pull request #1408 from Cracert/i18n [TRANSUP] pl: composerPicture, DateTime Robert Szczepanek 2014-05-29 [TRANSUP] pl: composerPicture, DateTime Dan Baston 2014-05-29 avoid overflow from casting oid result to integer, causing failure to find name of primary key column Etienne Tourigny 2014-05-29 remove extra row between layers Etienne Tourigny 2014-05-29 make table view non-editable (#10376) Merge: e8d1af9 0ae53ae Marcel Dancak 2014-05-29 Merge remote-tracking branch 'upstream/master' Nyall Dawson 2014-05-29 Fix warning Sandro Mani 2014-04-06 [composer] When searching snap targets, pick the closest one Nyall Dawson 2014-05-29 [composer] Remove use of runtime_error for providing feedback from atlas Nyall Dawson 2014-05-29 [composer] Always update filename when atlas feature changes, otherwise exporting to images when 'single file' checkbox is ticked results in no output Nyall Dawson 2014-05-29 [composer] Block signals from controls when loading atlas widget Marco Hugentobler 2014-05-29 No contact information in service capabilities of wfs and wcs Nyall Dawson 2014-05-29 Fix capitalisation of strings Merge: 872ed82 affc9a1 alexbruy 2014-05-29 Merge pull request #1404 from gioman/master [processing] add GRASS r.out.xyz Matthias Kuhn 2014-05-28 Respect field editable state in attribute form Merge: 5b61d1f 0046a08 Nathan Woodrow 2014-05-29 Merge pull request #1401 from slarosa/identify_nogeometry [identify] skip layer with no geometry Merge: 850a1ee d9b78bf Nyall Dawson 2014-05-29 Merge pull request #1394 from Oslandia/fix_atlas_signals Fix atlas signal emitting Juergen E. Fischer 2014-05-29 fix doxygen warning Juergen E. Fischer 2014-05-29 fix warnings Merge: c3ee668 21ae813 Nyall Dawson 2014-05-29 Merge pull request #1402 from manisandro/zoom_icon Improve composer mouse zoom action icon giohappy 2014-05-28 Check Sqlite version to switch metadata initialization parameter Merge: 18e1bd0 5d465fc Werner Macho 2014-05-28 Merge pull request #1405 from Cracert/i18n [TRANSUP] pl: composer Robert Szczepanek 2014-05-28 [TRANSUP] pl: composer gioman 2014-05-28 add GRASS r.out.xyz Martin Dobias 2014-05-28 [layertree] Doxygen doc for QgsLayerTreeMapCanvasBridge Radim Blazek 2014-05-28 browser sorting fix giohappy 2014-05-28 Make OSM DB metadata initialization in transaction Salvatore Larosa 2014-05-28 [identify] skip layer with no geometry Marco Hugentobler 2014-05-28 Fix offset in event layer function Radim Blazek 2014-05-28 prepare for GRASS 7 fata error Werner Macho 2014-05-28 [TRANSUP] tr by Osman Signed-off-by: Werner Macho Sandro Mani 2014-05-28 Improve composer mouse zoom action icon Marco Hugentobler 2014-05-28 Fix for bug #10372 (QGIS Server WMS does not put SERVICE section in GetCapabilities anymore) Matthias Kuhn 2014-05-28 Fix tooltip for save button on symbol dialog Fix #10368 Salvatore Larosa 2014-05-28 [processing] fixes extract by location alg (fixes #10241) Juergen E. Fischer 2014-05-27 fix sip sync merge Juergen E. Fischer 2014-05-27 german translation update Juergen E. Fischer 2014-05-27 sip sync Merge: 37c1cad 80282f0 Werner Macho 2014-05-27 Merge pull request #1396 from Cracert/i18n [TRANSUP] pl: SelectionPanel, QObject, App, LayerTreeView Robert Szczepanek 2014-05-27 [TRANSUP] pl: SelectionPanel, QObject, App, LayerTreeView Matthias Kuhn 2014-05-27 Make sure a widget is initialized when creating a widget wrapper Fix #10357 Matthias Kuhn 2014-05-27 Fix add features dialog Fix #10362 Matthias Kuhn 2014-05-27 Better implementation of 20015e72 Fix #10345 Martin Dobias 2014-05-27 [layertree] Doxygen docs for QgsLayerTreeView Martin Dobias 2014-05-27 [layertree] Use writePath() for embedded groups (absolute vs relative path) Martin Dobias 2014-05-27 [layertree] Fix #10373 (embedded group not loaded if with relative path) Martin Dobias 2014-05-27 [layertree] Added QgsLayerTreeModel doxygen docs + minor API changes Hugo Mercier 2014-05-27 Fix atlas signal emitting Martin Dobias 2014-05-27 Fix #10366 (geometry functions not working in rule test) ahuarte47 2014-05-24 #9480: Add centroidInside to sip file ahuarte47 2014-05-24 #9480: Add GUI checkbox option in labeling ahuarte47 2014-05-23 #9480: Add /Factory/ to pointOnSurface() method ahuarte47 2014-03-13 #9480: Force label position inside of polygons in PAL labeling library ahuarte47 2014-03-13 #9480: New option for CentroidFillSymbolLayerV2 to force centroid inside of polygons ahuarte47 2014-03-13 #9480: New 'pointOnSurface' method for QgsGeometry Alvaro Huarte 2014-05-26 Enable disabled simplification code after merge MTR (2-2) Enable AntialiasingSimplification Alvaro Huarte 2014-05-26 Enable disabled simplification code after merge MTR (1-2) Disable simplification of geometries in composer by default Matthias Kuhn 2014-05-26 Attribute table: Fix repaint on change Fix #10345 Martin Dobias 2014-05-27 [layertree] Add docs to QgsLayerTreeUtils Hugo Mercier 2014-05-27 Inverted polygon renderer: update SIP Hugo Mercier 2014-05-27 Inverted polygon renderer: add test for projected and merged Martin Dobias 2014-05-27 [layertree] Fix #10347 - save also old tag QGIS server does not use QgsProject for loading of QGIS project. In order to allow reading of new projects, let's also write the original tag to the project. Ideally the server should be ported to new layer tree implementation, but that requires non-trivial changes to the server components. The tag is ignored by QGIS application in >= 2.4 and this way also the new project files can be opened in older versions of QGIS without loosing information about layer groups. Martin Dobias 2014-05-27 [layertree] do not allow drag'n'drop of internal embedded nodes Victor Olaya 2014-05-27 [processing] fixed #10364 borys 2014-05-26 [Plugin Manager] Show all plugins in the All tab. Fixes #10334 Juergen E. Fischer 2014-05-26 restore previous Qgs(App)LegendInterface behaviour Merge: 78525db 8bbb2aa Werner Macho 2014-05-26 Merge pull request #1390 from Cracert/i18n [TRANSUP] pl: MetaSearch Robert Szczepanek 2014-05-26 [TRANSUP] pl: MetaSearch Hugo Mercier 2014-05-26 Inverted polygon renderer: fix rendering when projection is enabled Werner Macho 2014-05-26 [TRANSUP] fi by Kari, sv by Victor Signed-off-by: Werner Macho Rado Guzinski 2014-05-26 [processing] Update Processing toolbox when a provider is added or removed Rado Guzinski 2014-05-26 [processing] Make sure the log tab is visible before executing an algorithm Rado Guzinski 2014-05-26 [processing] Fix problem with displaying R graphs Rado Guzinski 2014-05-26 [processing] Add some missing algorithms Rado Guzinski 2014-05-26 [processing] Allow algorithm providers to set the allowed output raster extensions if needed Hugo Mercier 2014-05-26 Inverted polygon renderer: make sure the each symbol category is always rendered in the same order Rado Guzinski 2014-05-26 [processing] Search for description files also in the sub-directories of the script/model directory Martin Dobias 2014-05-26 [layertree] Use QgisApp implementation of remove layers That one also asks whether to 1. save changes to layers, 2. really remove Hugo Mercier 2014-05-26 Inverted polygon renderer: add an option to preprocess polygons using an union Martin Dobias 2014-05-26 [layertree] Fix broken signal connection Martin Dobias 2014-05-26 [layertree] Add expand/collapse all actions to legend menu Martin Dobias 2014-05-26 Promote rendererChanged() signal from raster+vector layer to base map layer Denis Rouzaud 2014-05-26 try to remove spaces and quotes to get a fieldname from an expression Sandro Mani 2014-05-26 Improve map unit scale dialog title and add descriptive Sandro Mani 2014-05-26 Add tooltip to map unit scale edit button Nathan Woodrow 2014-05-26 Pass distance area into field calc bar Nathan Woodrow 2014-05-26 Fix #10350 - Run update on return in field calc bar Radim Blazek 2014-05-26 svg search path fix, fixes #8664 Merge: 5e240b8 4243b0b Denis Rouzaud 2014-05-26 Merge pull request #1387 from luca76/patch-1 Fix a string Luca M 2014-05-26 Fix a string Fixed a string with wrong character Hugo Mercier 2014-05-26 Inverted renderer: make sure it works when no painter is here (feature count) Matthias Kuhn 2014-05-26 Fix add feature dialog for attribute-less layers Fix #10351 Radim Blazek 2014-05-25 mapserver QGIS_OPTIONS_PATH support, fixes #10327 Martin Dobias 2014-05-25 Fix #10343 (legend crash with invalid layer) Fixed the crash itself in the context menu, but also changed the behavior to remove any invalid layers from project as currently there is no mechanism for postponing handling of invalid layers after project load Matthias Kuhn 2014-05-25 Correctly load dnd relations in fields properties Fix #10065 Matthias Kuhn 2014-05-25 Fix widget to wrapper converter code Fixes #10337 Martin Dobias 2014-05-25 Fix #10339 (crash when reordering layers) This was caused by the recent addition of currentNode handling in model. Changed to use persistent indices which are auto-updated when model changes. Nathan Woodrow 2014-05-25 Use flat group box in options dialog to reduce nesting Nathan Woodrow 2014-05-25 Reduce margins on delete field dialog, save geometry Nathan Woodrow 2014-05-25 Set better default size for new field dialog Nathan Woodrow 2014-05-25 Reduce margins on project selector dialog Nathan Woodrow 2014-05-25 Restore dialog size for some dialogs Nathan Woodrow 2014-05-25 Reduce margins on field calc bar Merge: fc8f15a 10fd65a volaya 2014-05-25 Merge pull request #1385 from gioman/getshapeextent Fix SAGA GetShapeExtents Radim Blazek 2014-05-25 svg cache lookup fix, fixes #9959 Matthias Kuhn 2014-05-25 Fix add attribute dialog Fix #10337 Matthias Kuhn 2014-05-25 Revert "Fix #10337 - Allow attribute form on all features (new QgsFeatures are invalid)" This reverts commit 9bdc932e9648d885352da772dc13687562617d43. Werner Macho 2014-05-25 [TRANSUP] es by carlos Signed-off-by: Werner Macho Nathan Woodrow 2014-05-25 Fix #10337 - Allow attribute form on all features (new QgsFeatures are invalid) Nyall Dawson 2014-05-18 [composer] Fix hang with enabling atlas on a map with a point coverage layer while preview is active Nyall Dawson 2014-05-25 [composer] Fix multiple refresh of items Nyall Dawson 2014-05-18 [composer] Clean up atlas code, move shape and page updating to shape and page items. Nyall Dawson 2014-05-20 [composer] Fix crash caused by map items with zero height/width Etienne Tourigny 2014-05-24 fixes for gdal 2.0 to make sure that OGR drivers and not used as raster data sources Juergen E. Fischer 2014-05-24 sip sync and indentation update Juergen E. Fischer 2014-05-24 fix doxygen warnings gioman 2014-05-24 fix SAGA GetShapesExtents take2 gioman 2014-05-24 fix SAGA GetShapesExtents Salvatore Larosa 2014-05-24 [processing] run "sed -i s/sextante/processing/g *.rst" over saga help directory Werner Macho 2014-05-24 [TRANSUP] update languages from transifex Signed-off-by: Werner Macho Martin Dobias 2014-05-24 Fix SIP bindings Merge: 31bb269 7906154 Martin Dobias 2014-05-24 Merge pull request #1380 from Oslandia/mask_renderer [FEATURE] Inverted polygons renderer Juergen E. Fischer 2014-05-24 fix crash on identify with hidden attributes Juergen E. Fischer 2014-05-24 indentation update Juergen E. Fischer 2014-05-24 fix build on ubuntu precise (older geos) Juergen E. Fischer 2014-05-24 fix edit widget deprecation warnings and sync sip bindings Merge: 42e480a df1482f Werner Macho 2014-05-23 Merge pull request #1383 from Cracert/i18n [TRANSUP] pl: preview, connections Robert Szczepanek 2014-05-23 [TRANSUP] pl: preview, connections Hugo Mercier 2014-05-23 Add unit tests for the inverted polygon renderer Hugo Mercier 2014-05-23 Inverted polygons renderer: add SIP Juergen E. Fischer 2014-05-23 german translation update Hugo Mercier 2014-05-23 Mask renderer: rename to inverted polygon renderer Werner Macho 2014-05-23 [TRANSUP] fi by Kari Signed-off-by: Werner Macho Hugo Mercier 2014-05-23 Mask renderer: reuse existing renderer as embedded Hugo Mercier 2014-05-23 Mask renderer: make it work with on-the-fly reprojection Larry Shaffer 2014-05-22 Move label repeat option frame to after main placement options for lines Merge: 59129c4 4768a8f Denis Rouzaud 2014-05-23 Merge pull request #1344 from leyan/splitFeature Split line feature with a single point when snapped to a line Werner Macho 2014-05-23 [TRANSUP] first string update for release translations Signed-off-by: Werner Macho Martin Dobias 2014-05-23 [layertree] Use group icon like the one from old legend Werner Macho 2014-05-23 [TRANSUP] nb by James Signed-off-by: Werner Macho Merge: be706ed a3b9d6c mhugent 2014-05-23 Merge pull request #1338 from manisandro/line_multi_labeling Line multi labeling Merge: 45d0a9c 82363f4 Nyall Dawson 2014-05-23 Merge pull request #1382 from Oslandia/atlas_predefined_patch Atlas predefined scales: reload project scales before each preview action Martin Dobias 2014-05-23 Updated indentation Martin Dobias 2014-05-23 [layertree] move implementation of legend actions to QgsAppLayerTreeViewMenuProvider Etienne Tourigny 2014-05-21 restore addLegendLayerAction and related functions after legend redesign Paolo 2014-05-23 Updated IT GUI translation Hugo Mercier 2014-05-23 Mask renderer: do not store temporary features anymore Hugo Mercier 2014-05-23 Atlas predefined scales: reload project scales before each preview action Hugo Mercier 2014-05-23 Mask renderer: fix clone() Nyall Dawson 2014-05-23 [composer] Small improvements to API docs Hugo Mercier 2014-05-19 [FEATURE][composer] Add a 'predefined scales' mode to atlas maps, which sets an atlas maps' extent to the largest predefined scale which fits the atlas feature. Scales are taken from the project's predefined scales, or the global predefined scales. Juergen E. Fischer 2014-05-23 german translation update and a translation string fix Nathan Woodrow 2014-05-23 Fix combo name in fielc calc bar Juergen E. Fischer 2014-05-23 fix windows build Nathan Woodrow 2014-05-23 [FEATURE] Quick field field calc bar (like Excel) in attribute table Matthias Kuhn 2014-05-22 Add GUI_EXPORT and warning fix Denis Rouzaud 2014-03-20 [FEATURE] new edit type: date/time edit Matthias Kuhn 2014-01-05 [FEATURE] Port editor widgets to new API Create a new widget for for attribute form fix #10281 fix #7319 fix #7013 fix #9335 fix #4417 Daniel Vaz 2013-07-18 Add new custom widgets (QgsSlider and QgsDial) Modified versions of QSlider and QDial which show the current value Fix #4417 Merge: fab44c7 40f6d6f Werner Macho 2014-05-22 Merge pull request #1381 from Cracert/i18n [TRANSUP] pl: wcs Robert Szczepanek 2014-05-22 [TRANSUP] pl: wcs Martin Dobias 2014-05-23 [layertree] Do not show check box for nonspatial tables Martin Dobias 2014-05-23 [layertree] Implement more flags for LayerTreeModel (reorder nodes, rename nodes) Merge: dac4cfc a4e974a Martin Dobias 2014-05-22 Merge pull request #1215 from etiennesky/mtr_maxcpus [FEATURE] add option to set max thread count Martin Dobias 2014-05-22 Fix #10217 (misaligned markers in composer) Radim Blazek 2014-05-22 GRASS 7 raster provider Juergen E. Fischer 2014-05-22 remove duplicate translation strings Juergen E. Fischer 2014-05-22 add library dependencies to python bindings Martin Dobias 2014-05-22 [layertree] fix crash with symbology Martin Dobias 2014-05-22 [layertree] Fix crash on zoom to layer Martin Dobias 2014-05-22 [layertree] Underline current layer Nathan Woodrow 2014-05-22 Save geometry for data defined dialog Nathan Woodrow 2014-05-22 Keep state for expression widget splitter Martin Dobias 2014-05-22 [layertree] Show public source tooltip for layers Martin Dobias 2014-05-22 Indicate whether a layer is in editing mode and/or modified Victor Olaya 2014-05-22 [processing] added missing import Victor Olaya 2014-05-22 [processing] changed name of output in concave hull Victor Olaya 2014-05-22 [processing] updated compiled version of widgets Victor Olaya 2014-05-22 removed import of local httplib2 Nyall Dawson 2014-05-22 Don't allow MoveAction when dragging colors from color buttons, allows dragging colors from QGIS and dropping them into GIMP/Inkscape Juergen E. Fischer 2014-05-22 support custom widgets in PYQT4_WRAP_UI Hugo Mercier 2014-05-22 Add missing .ui Nathan Woodrow 2014-05-22 Save geometry of some dialogs Juergen E. Fischer 2014-05-22 fix windows build Hugo Mercier 2014-04-15 Add a new 'mask' feature renderer that can be used to invert polygon fills Merge: d4b3993 7c0a484 Werner Macho 2014-05-21 Merge pull request #1378 from Cracert/i18n [TRANSUP] pl: WMS Juergen E. Fischer 2014-05-21 german translation update and fix uppercase otherwise duplicate translation strings Juergen E. Fischer 2014-05-21 fix warnings Juergen E. Fischer 2014-05-21 hungarian translation: remove duplicate translation string Juergen E. Fischer 2014-05-21 indentation update Salvatore Larosa 2014-05-21 [processing] fixes cmake for lastools, removes the interface module and adds import iface module where lacking Robert Szczepanek 2014-05-21 [TRANSUP] pl: WMS Martin Dobias 2014-05-22 Add the missing SIP stub file Merge: 7f218c7 0b072e6 Martin Dobias 2014-05-21 [FEATURE] Merge of legend refactoring work This replaces the existing tree widget implementation with more modular approach. In summary: - tree hierarchy in CORE library: QgsLayerTreeNode, QgsLayerTreeLayer, QgsLayerTreeGroup - model/view based tree view: QgsLayerTreeModel, QgsLayerTreeView - tree synchronization with map layer registry: QgsLayerTreeRegistryBridge - controlling of map canvas: QgsLayerTreeCanvasBridge Conflicts: src/ui/qgisapp.ui Martin Dobias 2014-05-21 Added some doxygen documentation and minor code cleanups Victor Olaya 2014-05-21 [processing] fixes in modeler to make multiple inputs work correctly Victor Olaya 2014-05-21 [processing] fixed issue in modeler with hidden params Victor Olaya 2014-05-21 [processing] fixed OutputFile constructor Victor Olaya 2014-05-20 [processing] removed interface module now all access to the interface is done through qgis.utils.iface Victor Olaya 2014-05-20 [processing] added checkboxes to multiple input selector Victor Olaya 2014-05-20 [processing] rewrote saga raster calculator as individual algorithm Victor Olaya 2014-05-19 [processing] major overhaul of lastools algorithms Code contributed by Martin Isenburg Victor Olaya 2014-05-19 [processing] minor change in ParameterFile to handle None values Victor Olaya 2014-05-19 [processing] removed debug line Victor Olaya 2014-05-19 [processing] fixed issue when opening loaded layers in batch interface (#10277) Victor Olaya 2014-05-19 [processing] remove unnecessary print sentences Victor Olaya 2014-05-19 [processing] code cleaning. Removed debug sentences Victor Olaya 2014-05-18 [processing] simplified saga algorithms Now it assumes matching grid extents and does not perform resampling Victor Olaya 2014-05-18 [processing] changed dialog from critical to warning Martin Dobias 2014-05-21 Removed old legend implementation classes Nyall Dawson 2014-05-22 [FEATURE] Allow dragging and dropping colors from color buttons (also works with some other applications, eg dropping colors from GIMP or Gpick). Tweak color button context menu to remove extra options. Merge: 3180dee 8485b9c Martin Dobias 2014-05-21 Merge remote-tracking branch 'denis/scalevisiblayers_newlegend' into legend-refactoring Merge: 5417639 5f12661 Marco Hugentobler 2014-05-21 Merge branch 'server_value_relation' Marco Hugentobler 2014-05-21 WMS server: Use ; as separator in case of multiple selection for value relations Merge: af7af6c b87049e mhugent 2014-05-21 Merge pull request #1377 from luca76/master WMS GetLegendGrapics: obtain legend graphics with no labels Nyall Dawson 2014-05-21 [FEATURE] Add option to use colour preview modes (grayscale, colour blindess) in map canvas (fix #9886) Luca M 2014-05-21 GetLegendGraphics with no label Added two private variables mDrawLegendLayerLabel and mDrawLegendItemLabel Luca M 2014-05-21 GetLegendGraphics with no label With this commit, you can call GetLegendGraphics with two parameters (LAYERTITLE=false / RULELABEL=false) to disable labels in the resulting legend. Useful for Qgis Web Client, LizMap-Web-Client and Qgis2Leaf. Leyan 2014-05-21 Better snapping behavior Marco Hugentobler 2014-05-18 Server: consider there can be multi selection mode in value relation Denis Rouzaud 2014-05-21 set layer scale visibility for several layers Leyan 2014-05-21 code cleanup Martin Dobias 2014-05-21 Handling of WMS legend graphic Marco Hugentobler 2014-05-21 Fix joins and value relations in WMS server Radim Blazek 2014-05-21 added support for QGIS mapserver GetFeatureInfo GML flavour Radim Blazek 2014-05-21 WMS identify with format feature (GML) fixe, fixes #10306 Martin Dobias 2014-05-21 Support for custom layer order for legacy projects Alexander Bruy 2014-05-21 [processing] fix out of bounds error in extract values scripts Alexander Bruy 2014-05-21 [processing] fix number input panel Martin Dobias 2014-05-21 Add usual file headers and update indentation Martin Dobias 2014-05-20 Fix collapse of layer nodes after double click Martin Dobias 2014-05-20 Allow changes of visibility from layer order widget Martin Dobias 2014-05-20 Loading and saving of custom layer order Martin Dobias 2014-05-20 Remove the legend from the application completely. Martin Dobias 2014-05-20 Use layer tree view in legend interface implementation Martin Dobias 2014-05-20 Further replacements of legend by layer tree within application Martin Dobias 2014-05-19 Loading of embedded groups and layer from project file Martin Dobias 2014-05-19 Convenience auto setup features when adding new layers On first layer: zoom to full extent, setup destination CRS and map units On first layer with different CRS: enable OTF reprojection This functionality is not triggered when opening an existing project. Martin Dobias 2014-05-18 Better behavior of drop onto a group Martin Dobias 2014-05-18 Forward the visibilityChanged() signal towards the parent node. Listening to the signal is simpler as it is enough to listen to the parent without having to connect to the whole tree and also follow the changes withing the tree Martin Dobias 2014-05-17 Propagate added/removed children signals to the root for easier manipulation Martin Dobias 2014-05-17 Use Qt::CheckState also for layer node visibility (for consistency) Martin Dobias 2014-05-17 Split subclasses of QgsLayerTreeNode into their own cpp/h files Martin Dobias 2014-05-17 Added helper namespace QgsLayerTree Martin Dobias 2014-05-17 Handle overview status changes properly. Added signal about changed custom properties. Changes to custom properties are propagated to the root node, so it is not necessary to connect to all children Martin Dobias 2014-05-17 Deactivate old legend. Improve insertion of new layers into layer tree. Martin Dobias 2014-05-16 Added layerTreeView() to QgisInterface, moved context menu provider to new file Martin Dobias 2014-05-16 More integration of layer tree view in QGIS app Martin Dobias 2014-05-16 Updates to QGIS app to use layer tree view instead of legend widget Martin Dobias 2014-05-16 Double-click handling, changed current layer handling Martin Dobias 2014-05-16 Moved some legend actions to QgisApp, added actions to layer tree view. Still need to adjust action implementations in QgisApp to use layer tree view Martin Dobias 2014-05-15 Added "Group selected" layer tree view action Martin Dobias 2014-05-15 Move to top-level action Martin Dobias 2014-05-15 Raster and plugin layer symbology, show feature count for vectors Martin Dobias 2014-05-13 Layer tree view interface for context menu configuration Martin Dobias 2014-05-13 Support for default actions in layer tree view Martin Dobias 2014-05-11 Add support for embedded layers and groups into layer tree Martin Dobias 2014-05-10 Use QgsLayerTreeView in QgsProjectLayerGroupDialog This also replaces routines for parsing of the project file Martin Dobias 2014-05-07 Handle active (current) layer in layer tree view Martin Dobias 2014-05-07 Add possibility to temporarily disable layer tree to registry bridge This is useful during the project load where the updates from map layer registry would make the layers appear twice in the tree Martin Dobias 2014-05-05 New dock in QGIS for layer tree view Martin Dobias 2014-05-05 Add layer tree support into QgsProject Martin Dobias 2014-05-05 Initial import of legend refactoring work Merge: 6df9d1c ec3da40 Jürgen Fischer 2014-05-21 Merge pull request #1375 from nyalldawson/processing_postgis2 Some postgresql provider and PostGIS-related processing improvements and fixes (v2) Juergen E. Fischer 2014-05-21 debian -packaging update Nathan Woodrow 2014-05-21 [MSSQL] Refactor provider for schema checks Larry Shaffer 2014-05-20 Refactor plugin staging to build dir and python script compiling Nathan Woodrow 2014-05-21 Save dialog geometry on attribute form reject Nathan Woodrow 2014-05-21 [MSSQL] Add toogle action to browser node to show non spatial tables Nathan Woodrow 2014-05-21 [MSSQL] Fix refresh in browser node Nathan Woodrow 2014-05-21 Fix #9139 - Don't crash on MSSQL relations Nyall Dawson 2014-05-21 [processing] Some fixes to handling of uppercase/lowercase geometry column names Nyall 2014-05-21 Fix main window rearranging itself to front when opening composer manager or new composer dialog from a composition Nyall Dawson 2014-05-21 [processing] Add optional parameter for specifying the primary key field in Import to PostGIS algorithm Nyall Dawson 2014-05-21 [processing] Add option to Import into PostGIS algorithm to drop length constraints on character fields Nyall Dawson 2014-05-21 Make PostgreSQL lowercaseFieldNames option behave correctly with primary key field names Nyall Dawson 2014-05-21 Add option to postgres provider to drop length constraints on character fields Werner Macho 2014-05-20 [TRANSUP] gl by Xan Signed-off-by: Werner Macho Leyan 2014-05-20 box of a more reasonable size for a single point Nyall Dawson 2014-05-12 [FEATURE] Add right click menu to color buttons, allowing copying and pasting colors. Pasting colors accepts clipboard text in a variety of common formats, including hex and css style rgb and rgba strings. Matthias Kuhn 2014-04-30 VLCache takes ownership of index Merge: b385467 9d838c9 Nyall Dawson 2014-05-20 Merge pull request #1362 from manisandro/composer_arrow_fill_bb Make composer arrow, with and without markers, better fill the bounding box area Radim Blazek 2014-05-20 project extent restore fix Juergen E. Fischer 2014-05-20 german translation update Juergen E. Fischer 2014-05-20 [FEATURE] toggle feature selection from identify results (implements #10308) Denis Rouzaud 2014-05-20 collapsible gpbox: scroll on expand property accessible Nathan Woodrow 2014-05-20 Add new qgisapp Python context manager for creating QGIS apps Nathan Woodrow 2014-05-20 Fix copy of extra python files Merge: 978086b 790b31e Jürgen Fischer 2014-05-20 Merge pull request #1373 from 3nids/package set custom widget lib default to false Denis Rouzaud 2014-05-20 set custom widget lib default to false Nathan Woodrow 2014-05-20 [MSSQL] Fix #9511 - Use QDate and QDateTime for date sql type Larry Shaffer 2014-05-19 Fix build error when using Qwt 6.1, followup to f283040 Etienne Tourigny 2014-05-19 only handle context menu event if showing tree widget Merge: 592064b f69ed7d Nathan Woodrow 2014-05-20 Merge pull request #1371 from antoniolocandro/SVG-NORTH-ARROWS North Arrows SVG - Fix #8711 Juergen E. Fischer 2014-05-20 identify tool: fix connection error Nathan Woodrow 2014-05-20 [MSSQL] Use schema for key lookup Juergen E. Fischer 2014-05-20 german translation update Nathan Woodrow 2014-05-20 [MSSQL] Use schema name when getting columns Etienne Tourigny 2014-05-08 fix rebase errors Etienne Tourigny 2014-04-06 add support for qwt6 for identify results graph Etienne Tourigny 2014-04-06 show legend on top of graph instead of right Etienne Tourigny 2014-04-06 use separate curves for each raster layer in identify result graph Etienne Tourigny 2014-04-05 add identify results graph for rasters using qwt5 (qwt6 not supported yet) Etienne Tourigny 2014-04-05 UI tweaks to identify results table view Etienne Tourigny 2014-04-05 implement simple identify results table view Merge: f470570 23ada03 Werner Macho 2014-05-19 Merge pull request #1372 from Cracert/i18n [TRANSUP] pl: minor changes Robert Szczepanek 2014-05-19 [TRANSUP] pl: minor changes Antonio Locandro 2014-05-19 North Arrows SVG Adds 3 additional SVG North Arrows symbols to expand the current limited selection Radim Blazek 2014-05-19 marker data defined anchor fix, fixes #9579 Juergen E. Fischer 2014-05-19 debian packaging update Denis Rouzaud 2014-05-19 debian package for custom widgets Denis Rouzaud 2014-05-19 uic widget-plugins: do not crash if QGIS not installed Nathan Woodrow 2014-05-19 Create Python package for core, gui, analysis, networkanalysis Rename sip generated modules to _{name} Juergen E. Fischer 2014-05-19 fix customwidgets build on windows Merge: aa70851 0d3e5e4 Giuseppe Sucameli 2014-05-19 Merge pull request #1348 from imincik/db_manager_connection_holding db manager: fix connection holding - idle in transaction (QGIS bug #7162... Denis Rouzaud 2014-05-19 custom widgets: added color and data defined buttons, missing SIP for scale range and fix flags for field combo / expression widget Juergen E. Fischer 2014-05-19 debian packaging fix Merge: 2ff79d3 f9d7aef Denis Rouzaud 2014-05-19 Merge pull request #1325 from 3nids/qtdesignerplugin QGIS custom widgets plugins for Qt Designer Denis Rouzaud 2014-05-19 create custom widgets by default Nathan Woodrow 2014-05-19 Expand label wording in filter dialog Werner Macho 2014-05-18 [TRANSUP] uk fixes #1366 Signed-off-by: Werner Macho Merge: 0791930 0f2b92f volaya 2014-05-18 Merge pull request #1365 from gioman/ogr2ogr fixes ogr2ogr.py Juergen E. Fischer 2014-05-18 stage python extension only for staged plugins Nathan Woodrow 2014-05-18 Fix #8756 - Update function help for colour functions Juergen E. Fischer 2014-05-18 sync some sip bindings Nathan Woodrow 2014-05-18 Fix #9785 Nathan Woodrow 2014-05-18 Add drag and drop for QLR files. Fix #10005 Nathan Woodrow 2014-05-18 Support multi layers in QLR files Nyall Dawson 2014-05-18 [FEATURE][composer] Add preview modes for composer, allows for previewing composition in grayscale, monochrome and color blindness simulation modes prior to printing (refs #9886) Nyall Dawson 2014-05-18 Add expression functions for bounding box (bounds), bounding box width & height (bounds_width/bounds_height), and min/max x/y coordinates (xmin/xmax/ymin/ymax) Merge: 29de200 e973470 Werner Macho 2014-05-18 Merge pull request #1364 from Cracert/i18n [TRANSUP] pl: qgisapp Giovanni Manghi 2014-05-18 fixes ogr2ogr.py, take2 Giovanni Manghi 2014-05-18 fixes ogr2ogr.py Marco Hugentobler 2014-05-18 Fix getLegendGraphic Merge: bcfe0a8 90e4a5f Jürgen Fischer 2014-05-17 Merge pull request #1349 from imincik/db_manager_quoteid db manager: fixed quoting of table name when schema is empty string Robert Szczepanek 2014-05-17 [TRANSUP] pl: qgisapp Etienne Tourigny 2014-05-17 fix browser dock sorting - only files are sorted Juergen E. Fischer 2014-05-17 metasearch: ignore proxy settings != HttpProxy Juergen E. Fischer 2014-05-17 spelling fixes Juergen E. Fischer 2014-05-17 osgeo4w: don't include internal python libraries where packages are available Juergen E. Fischer 2014-05-17 debian packaging update Juergen E. Fischer 2014-05-17 exclude metasearch ts files from update_ts_files.sh run Juergen E. Fischer 2014-05-17 german translation update Juergen E. Fischer 2014-05-17 processing: remove adsense from otb descriptions Juergen E. Fischer 2014-05-17 move internal python extensions to common directory and fix metasearch install Etienne Tourigny 2014-05-17 change qsettings in qgsoptions, not qgsapplication Leyan 2014-05-17 restrict to node Merge: 16cc66a c2effbf Werner Macho 2014-05-16 Merge pull request #1363 from Cracert/i18n [TRANSUP] pl: composer Robert Szczepanek 2014-05-16 [TRANSUP] pl: composer Etienne Tourigny 2014-05-16 get/set max. thread count in QgsApplication Etienne Tourigny 2014-02-25 add option to set max thread count Merge: 240c128 c7a4002 Tom Kralidis 2014-05-16 Merge pull request #1350 from geopython/MetaSearch-0.2.0 add MetaSearch 0.2.0 (https://github.com/geopython/MetaSearch/issues/53) Sandro Mani 2014-05-16 Make composer arrow, with and without markers, better fill the bounding box area Alexander Bruy 2014-05-07 another follow up for 5ad518afd2. Allow use of OutputDirectory in scripts Alexander Bruy 2014-05-07 follow up 5ad518afd2. Better handling of temporary directories Alexander Bruy 2014-05-05 [processing] write additional output(s) compatible withg Azimuth and Distance plugin Alexander Bruy 2014-05-05 [processing] add new output type - directory Alexander Bruy 2014-05-05 disable gap parameter as it is unclear if it useful Alexander Bruy 2014-04-30 [processing] new tool: points to path Work done for Faunalia funded by Prof. António Mira (University of Évora, Portugal, Unidade de Biologia da Conservação) and Dr. Rosana Peixoto Alexander Bruy 2014-04-26 [processing] new tool: random points along lines Work done for Faunalia funded by Prof. António Mira (University of Évora, Portugal, Unidade de Biologia da Conservação) and Dr. Rosana Peixoto Alexander Bruy 2014-04-26 init random generator before creating points Alexander Bruy 2014-04-25 [processing] new tool: random points in polygons (variable) Work done for Faunalia funded by Prof. António Mira (University of Évora, Portugal, Unidade de Biologia da Conservação) and Dr. Rosana Peixoto Alexander Bruy 2014-04-25 move common function to tools package Alexander Bruy 2014-04-24 [processing] new tool: random points within polygons Work done for Faunalia funded by Prof. António Mira (University of Évora, Portugal, Unidade de Biologia da Conservação) and Dr. Rosana Peixoto Alexander Bruy 2014-04-24 [processing] new tool: random points in layer bounds Work done for Faunalia funded by Prof. António Mira (University of Évora, Portugal, Unidade de Biologia da Conservação) and Dr. Rosana Peixoto Alexander Bruy 2014-04-24 [processing] new tool: random point in given extent Work done for Faunalia funded by Prof. António Mira (University of Évora, Portugal, Unidade de Biologia da Conservação) and Dr. Rosana Peixoto Nyall Dawson 2014-05-16 [composer] Small fixes to attribute table column model Nyall Dawson 2014-05-16 [composer] Fix crash with expression driven picture items Merge: 0f0a094 d99dd8e Denis Rouzaud 2014-05-16 Merge pull request #1353 from leyan/snapping_intersection Check snapping tolerance of both layers before validating intersection snapping Merge: 89cdfb9 62ed007 Jürgen Fischer 2014-05-16 Merge pull request #1358 from manisandro/memcpy_overlapping Avoid memcpy on overlapping memory Merge: 2d749be ea3be5c Jürgen Fischer 2014-05-16 Merge pull request #1356 from manisandro/malloc_delete Fix malloc-ed memory freed by delete[] Merge: f9e4e78 c0fdfcf Denis Rouzaud 2014-05-16 Merge pull request #1332 from leyan/deletePart Improve delete part feature for polygon Merge: ccc8192 4214508 Paolo Cavallini 2014-05-16 Merge pull request #1361 from lucalanteri/patch-2 Update inversedistanceweighted.rst lucalanteri 2014-05-16 Update inversedistanceweighted.rst Merge: 4ded629 fbc161d Werner Macho 2014-05-16 Merge pull request #1359 from Cracert/i18n [TRANSUP] pl: issues 11,12 Robert Szczepanek 2014-05-15 [TRANSUP] pl: issues 11,12 Larry Shaffer 2014-05-15 Remove old disabling of many rendering features on Mac (wow, what a difference) Larry Shaffer 2014-05-15 Fix getenv call build error Sandro Mani 2014-05-15 Avoid memcpy on overlapping memory Merge: 6a6cc19 5554ab6 Werner Macho 2014-05-15 Merge pull request #1357 from tomass/master Lithuanian translation update Tomas 2014-05-15 Lithuanian translation update Juergen E. Fischer 2014-05-15 fix warnings Juergen E. Fischer 2014-05-15 indentation update Radim Blazek 2014-05-15 GRASS fatal error longjmp Juergen E. Fischer 2014-05-15 german translation update Juergen E. Fischer 2014-05-15 labeling: when reprojecting on the fly don't modify the feature geometry, so that geometry based expressions don't get reprojected twice (eg. $x/$y) Juergen E. Fischer 2014-05-15 fix crash Sandro Mani 2014-05-15 Fix malloc-ed memory freed by delete[] Marco Hugentobler 2014-05-15 Fix writing relative file path if project path contains . or .. (pull request #1278) Werner Macho 2014-05-15 [TRANSUP] sv by Victor Signed-off-by: Werner Macho D'Hont René-Luc 2014-01-10 [RASTER][Feature] Applying scale and offset to raster data - funded Ifremer An issue has been opened 5 mounth ago [BUG] #8417 incorrect value loaded from netcdf file The data has not be loaded incorrectly, but QGIS doesn't apply scale and offset defined for each band. This commit will apply scale and offset to GDAL Provider BandStatistics and to RASTER block of data. It also adds bandScale and bandOffset method to QgsRasterDataProvider Python API. Victor Olaya 2014-05-15 [processing] extension can now be specified for OutputFile Radim Blazek 2014-05-15 sort browser list by name Leyan 2014-05-15 always delete regardless of mouse position; use default rubberband color Victor Olaya 2014-05-15 [processing] removed margin from number input panel Matthias Kuhn 2014-05-15 Restore OverrideCursor in field calculator on fail Nyall Dawson 2014-05-15 [composer] Show missing image graphic if picture item source is invalid Nathan Woodrow 2014-05-15 Fix windows build Sandro Mani 2014-04-07 [composer] Don't consider removed items in z list Merge: dc905ac f9dcc37 Denis Rouzaud 2014-05-15 Merge pull request #1352 from 3nids/datadefined2 use QgsFieldExpressionWidget in data defined properties Leyan 2014-05-13 check snapping tolerance of both layers before validating intersection snapping Denis Rouzaud 2014-05-15 use QgsFieldExpressionWidget in data defined properties Nyall Dawson 2014-05-15 [FEATURE][composer] Rework attribute tables to make tables more flexible. - Add support for reordering columns in a table (fix #5942) - Add support for expression based columns - Add support for setting column alignment (fix #2957) - Add support for setting column header alignment - Make sorting in tables correctly handle nulls, dates, times, locale aware string sorting This work also paves the way for future expansion of attribute tables to allow for setting column widths, column colors, etc. Nyall Dawson 2014-05-15 [FEATURE][composer] Add option for controlling placement of rendered images inside a picture item (eg, top left, bottom right, etc) Etienne Tourigny 2014-05-14 save raster useSrcNoData option in project (#10236) Nyall Dawson 2014-05-15 [composer] Allow for finer control over text rendered with QgsComposerItem::drawText, fixes clipped text when using italic fonts in legend titles Merge: 9804d17 42203b7 Radim Blazek 2014-05-14 Merge pull request #1335 from manisandro/apply_settings_when_saving_style Apply settings before saving style, otherwise unapplied settings are not written to qml file Larry Shaffer 2014-05-13 Add SOSI support to OGR provider Tom Kralidis 2014-05-13 add MetaSearch 0.2.0 (https://github.com/geopython/MetaSearch/issues/53) Merge: 436973d 8707cf2 Marco Hugentobler 2014-05-13 [FEATURE]: Server logging also in release mode Merge: 1ed94d0 06738d4 mhugent 2014-05-13 Merge pull request #1337 from Oslandia/test_qgis_mapserver fix #10198 Marco Hugentobler 2014-05-13 [FEATURE]: File log in server also if server executable is compiled in release mode Ivan Mincik 2014-05-13 db manager: fixed quoting of table name when schema is empty string Ivan Mincik 2014-05-13 db manager: fix connection holding - idle in transaction (QGIS bug #7162) Radim Blazek 2014-05-12 fixed simple marker, ellipse, svg anchor with data defined size, fixes #9579 Denis Rouzaud 2014-05-12 completely remove whatsthis and tooltips definitions Denis Rouzaud 2014-05-12 fix CMakeLists Denis Rouzaud 2014-05-12 redirect complete qgis.gui for pyuic Salvatore Larosa 2014-05-12 [pyqgis-console] adds PyQGIS-2.2.api Salvatore Larosa 2014-05-12 [pyqgis-console] revert PyQGIS-2.0.api file after 53ac675: the changes are for 2.4 release Matthias Kuhn 2014-05-12 Delete provider registry actively Fixes a crash on exit Denis Rouzaud 2014-05-08 fix ScaleRangeWidget: crash when setting canvas, order of the min/max widgets, denom/true scale, raster and rulebased dialogs, tooltip, alignement, etc. Denis Rouzaud 2014-05-07 use specific PyQt4/uic widget-plugins module for python compilation of widgets Denis Rouzaud 2014-05-07 QgsScaleRangeWidget: renamed from QgsScaleVisibilityWidget, do not use ui file Denis Rouzaud 2014-05-07 remove whatsthis/tooltip from domXml Denis Rouzaud 2014-05-07 rename QgsMapLayerComboBox::getFilters to filters Denis Rouzaud 2014-05-07 fix CMakeLists Denis Rouzaud 2014-05-06 fix ui header name Denis Rouzaud 2014-05-02 redirect custom widget includes to qgis.gui Denis Rouzaud 2014-05-02 better initial size for widgets Denis Rouzaud 2014-05-02 QgsMapLayerComboBox: allow setting filters within QtDesigner Denis Rouzaud 2014-05-02 added QgsFieldComboBox, QgsFieldExpressionWidget and QgsMapLayerComboBox to custom widgets Denis Rouzaud 2014-04-25 custom widgets for Qt Designer, QgsScaleVisibilityGroupBox plugin Denis Rouzaud 2014-05-12 fix field proxy model use Denis Rouzaud 2014-05-12 use proxy model Denis Rouzaud 2014-05-12 field combobox: properly emit signal when setField on the first displayed field Denis Rouzaud 2014-05-12 field proxy model to filter fields on their type (also fix #10181) Werner Macho 2014-05-12 [TRANSUP] nb by James Signed-off-by: Werner Macho Denis Rouzaud 2014-05-12 rename filters in map layer proxy model Juergen E. Fischer 2014-05-10 network manager: fix authentication of private network manager instances and support system proxies with exclusions Leyan 2014-05-02 Want to get split feature to work with a single point to split a line volaya 2014-05-08 [processing] minor fixes related to settings Etienne Tourigny 2014-05-09 sort and cleanup gdal and ogr file filter list Etienne Tourigny 2014-05-09 fix QgsOgrProvider::subLayers() to return only one sublayer when a specific layer id or name was requested in uri Etienne Tourigny 2014-05-09 change filter name of SQLite driver to SQLite/SpatiaLite Etienne Tourigny 2014-05-09 add GeoPackage support to ogr provider Juergen E. Fischer 2014-05-09 osgeo4w: don't register .qgs file extensions if release version is installed (fixes OSGeo4W#415) Juergen E. Fischer 2014-05-07 indentation update Juergen E. Fischer 2014-05-09 allow setting geometry empty in postgres and spatialite provider (applies PR#1343) Merge: e138c2e e21d151 Paolo Cavallini 2014-05-09 Merge pull request #1341 from lucalanteri/patch-1 Update convergenceindex.rst Juergen E. Fischer 2014-05-09 fix windows build lucalanteri 2014-05-08 Update convergenceindex.rst Merge: add7040 21249c3 mhugent 2014-05-08 Merge pull request #1340 from manisandro/fix-10205 Fix issue 10205: size of markers in marker line broken Leyan 2014-05-02 Add rubberband on mouse press, code reorganisation and cleanup Sandro Mani 2014-05-08 Fix issue 10205: size of markers in marker line broken Nyall Dawson 2014-05-08 [composer] Fix smart page breaks not being applied to html items when first calculating new frames Nyall Dawson 2014-05-07 [composer] Allow user to set maximum distance for page breaking in html items. Larry Shaffer 2014-05-07 Move OpenFileGDB to alphabetical placement Merge: 0c6056b 3f48ec9 Jürgen Fischer 2014-05-07 Merge pull request #1249 from Oslandia/expose_simplifier Expose QgsMapToPixelSimplifier to Python Merge: 0a82f37 ddecf7e Juergen E. Fischer 2014-05-07 Manually merge PR #1290 (fixes #9861) Juergen E. Fischer 2014-05-07 sync symbology-ng sips with headers (scripts/sipdiff) Juergen E. Fischer 2014-05-07 identify results: show and raise dock Juergen E. Fischer 2014-05-07 fix windows build (missing CORE_EXPORT/GUI_EXPORT) Denis Rouzaud 2014-05-07 give focus to the combo so QgsFieldExpressionWidget can be used as a delegate (allow pressing expression dialog button) Sandro Mani 2014-04-17 Add repeat distance UI Sandro Mani 2014-04-17 Add line multi-labelling support to pal Merge: 620220d 53ac675 mhugent 2014-05-07 Merge pull request #1320 from manisandro/minmax min-max map unit scale support Sandro Mani 2014-04-06 min-max map unit scale support vmora 2014-05-07 fix #10198 Tom Kralidis 2014-05-07 add myself to AUTHORS Nyall Dawson 2014-05-07 [FEATURE][composer] Add button to create new frame when using composer items in Use Existing Frames mode Merge: 26e98f7 2f2982f alexbruy 2014-05-07 Merge pull request #1328 from m-kuhn/httplib2 [processing] Fallback to external httplib2 when internal is not available Alexander Bruy 2014-05-07 put description file in correct directory Alexander Bruy 2014-05-07 put description file in correct place gioman 2014-04-17 Add v.kernel module to GRASS64 gioman 2014-04-01 add grass7 r.cost module with no need for stop points input Markus Neteler 2014-04-01 Fixed some parameter names: dot is underscore Merge: c64c89e bb93600 alexbruy 2014-05-07 Merge pull request #1333 from p0cisk/ConcaveHull [Processing][Feature] Add Concave Hull algorithm Merge: 35516fd 7689bf1 mhugent 2014-05-07 Merge pull request #1155 from to-kr/master Fix for #8130 - WFS client: invalid columns after copy/paste. Sandro Mani 2014-04-07 Fix QgsDistanceArea returning an uninitialized and never set member variable instead of the actual source crs srsid Werner Macho 2014-05-07 [TRANSUP] adding tagalog language Signed-off-by: Werner Macho Nathan Woodrow 2014-05-07 Change symbol group text in symbol list Nathan Woodrow 2014-05-07 Restore API for addSymbolToStyle() Alvaro Huarte 2014-04-02 #9861: Fix offsetline-GEOSOffsetCurve for multigeometries Sandro Mani 2014-05-06 Apply settings before saving style, otherwise unapplied settings are not written to qml file Juergen E. Fischer 2014-05-06 assign network access manager to QWebPages (fixes #10189) Denis Rouzaud 2014-05-06 Q_PROPERTY to define dialog title in field expression widget Denis Rouzaud 2014-05-06 field expression widget: better documentation Denis Rouzaud 2014-05-06 map layer combo: emit signal before return Denis Rouzaud 2014-05-06 map layer combo: emit signal on setLayer even if index is not changed Denis Rouzaud 2014-05-06 expression widget: do not provide new expression at each keypress Nathan Woodrow 2014-05-06 Show feature count in field calc Nathan Woodrow 2014-05-06 Only enable update selection in field calc when we have a selection Matthias Kuhn 2014-05-06 Fix sip compile problems Nathan Woodrow 2014-03-30 Tweak UI for symbol builder and selector. - Move blend options to below symbol builder - Move Save symbol to under symbol stack - Move open Symbol manager to next to group dropdown Nyall Dawson 2014-05-06 Add tests for composer html multi frames using smart breaks Nyall Dawson 2014-05-06 Fix failing composer html tests Nyall Dawson 2014-05-06 Fix some failing tests Denis Rouzaud 2014-05-05 [fix #10168] expression widget: grey out when disabled use const when possible Juergen E. Fischer 2014-05-06 fix windows build Juergen E. Fischer 2014-05-06 postgres provider: retrieve srs from postgis Juergen E. Fischer 2014-05-05 layer selection identify: show 'all' layers only when there are multiple layers Juergen E. Fischer 2014-05-05 postgres provider: fix lookup of aliased columns Marco Hugentobler 2014-05-05 Fix server debug log Alexander Bruy 2014-05-05 [processing] fix error when editing script help Nyall Dawson 2014-05-04 Fix warning Nyall Dawson 2014-05-04 Fix svg fills losing fill and border color and border width settings when loading symbol dialog (fix #9945) Nyall Dawson 2014-05-04 Fix missing default unit types for SVG fills (fix #7699) Nyall Dawson 2014-05-04 Add SVG file filter to SVG fill pattern browse dialog (refs #6209) Nyall Dawson 2014-05-04 Fix invalid data defined parameters for SVG fill after loading project (fix #10156) Nyall Dawson 2014-05-04 [FEATURE] Add option for shifting markers in marker line style a set distance along the line. Supports delaying the start of markers placed at intervals, or placing markers a set distance before/after the first/last vertex (fix #9000) Denis Rouzaud 2014-05-03 remove old declaration Piotr Pociask 2014-05-03 [Processing]Concave Hull - dissolve bug is fixed so taking last feature is not necessary Juergen E. Fischer 2014-05-03 layer selection identify: show feature count and add an option to get features of all selected layers. borys 2014-05-03 [Plugin Manager] Fix voting stars borys 2014-05-03 [Plugin Manager] support multiline breaks in the about tag Merge: a096cf4 1dc8dd5 Martin Dobias 2014-05-03 Merge pull request #1334 from simonsonc/qrect-united Use QRect::united instead of unite Larry Shaffer 2014-05-02 Add OpenFileGDB read-only driver option to OGR directory drivers (available in gdal-1.11.0) - Works fine, though sometimes is assigned '-' for a CRS when CRS is unknown (unrelated to driver?) Carl Simonson 2014-05-02 Use QRect::united instead of unite The unite() method has been deprecated in favor of united(). In Qt 4, united() just calls unite(); in Qt 5, it is completely removed. Piotr Pociask 2014-05-02 [Processing][Feature] Add Concave Hull algorithm Juergen E. Fischer 2014-05-02 identify results: * restore identify dock (implements #10152) * add clear button (implements #10149) * automatically set only item current * move controls to bottom Juergen E. Fischer 2014-05-02 german translation update Juergen E. Fischer 2014-05-02 identation update Juergen E. Fischer 2014-05-02 labeling: 'show' empty string instead of configured representation for NULL (party reverts e497a5c; refs #9998; fixes #10151) Merge: 1f20630 71727ac Denis Rouzaud 2014-05-02 Merge pull request #1318 from 3nids/fieldexpressionmodel field expression widget (with expression capability added to QgsFieldModel) Denis Rouzaud 2014-05-02 update sip Denis Rouzaud 2014-04-30 graduated symbol: do not auto classify on field changed (prevent error dialog at each keypress) Denis Rouzaud 2014-04-30 add signal with expression validity Denis Rouzaud 2014-04-30 typo in var name Denis Rouzaud 2014-04-30 field model only works with vector layer, add convenience slots for QgsMapLayer in QgsFieldExpressionWidget and QgsFieldComboBox Denis Rouzaud 2014-04-29 QgsFieldModel::layer() returns QgsVectorLayer Denis Rouzaud 2014-04-29 remove protected slots in sip fix signal emitted twice handle null expression (fix empty row) coherent color (colored text, not background) fix wrong slot Denis Rouzaud 2014-04-23 QgsFieldCombobBox do not allow expression editExpression protected, setLayer uses QgsVectorLayer make epxression widget editable Denis Rouzaud 2014-04-04 expression button and expression capability added to the field model Martin Dobias 2014-05-02 Fix #9771 (fix rendering of layers with geographical CRS with OTF on) Martin Dobias 2014-05-01 Fix #10132 (wrong size of SVG markers in composer export) Denis Rouzaud 2014-05-01 update sip for query builder Denis Rouzaud 2014-05-01 query builder: give focus to the SQL text area when shown Nyall Dawson 2014-05-01 [composer] Refresh view action now also reloads html items and refreshes attribute table features. Nyall Dawson 2014-05-01 [composer] Add refresh button to html items, to reload the html source from the url. Nyall Dawson 2014-05-01 [composer] Make html items more aggresive in choosing page break locations Merge: 6f1b875 a66893d Nyall Dawson 2014-05-01 Merge pull request #1312 from manisandro/composer_manager_nonmodal Make QgsComposerManager non-modal Juergen E. Fischer 2014-04-30 fix restoration of identify mode Leyan 2014-04-29 Allow to delete ring by clicking inside the ring Werner Macho 2014-04-30 [TRANSUP] nb by James Signed-off-by: Werner Macho Sandro Mani 2014-04-10 Remove redundant check Sandro Mani 2014-03-27 Fix crash with empty attribute list pcav 2014-04-30 IT translation fix and update Sandro Mani 2014-04-30 Add activate slot Juergen E. Fischer 2014-04-30 fix doxygen warnings Sandro Mani 2014-04-29 Add mac window menu integration Leyan 2014-02-19 Improve delete part feature to allow deletion by clicking inside a polygon part Juergen E. Fischer 2014-04-29 debian packaging fix: python-qgis doesn't have pyspatialite on trusty anymore (followup 8120f308f) Nyall Dawson 2014-04-29 [composer] Prevent hangs when using html multi frames with a very small first frame Martin Dobias 2014-04-28 Fix #10127 (crash on parallel rendering of spatialite layers) There was a run condition in connection pool singleton: at the beginning, the singleton got initialized twice. Now the singleton is handled as a static function variable which should be initialized in thread-safe way. Merge: 7581370 02e46e8 Denis Rouzaud 2014-04-28 Merge pull request #1317 from 3nids/addtoolbar allow to add a QToolBar to QGisInterface Salvatore Larosa 2014-04-28 Fixes #9656 - allows to scroll per pixel vertically in the log messages tabs Nyall Dawson 2014-04-28 [composer] Add checkbox for controlling whether html items should use smart page breaking (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Don't draw repeated html contents if mode is UseExistingFrames and frame should be empty (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [FEATURE][composer] HTML frames no longer cut through lines of text when splitting over multiple pages (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Add method for overriding page break location in multi frame items (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Fix duplicate frames when multi frame is set to Repeat on Every Page (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Copy frame properties (outline, background, render settings) when creating new frames in a multi frame (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Add frameOutlineWidth property for composer items (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Manually removing a frame from a multi frame forces the multi frame to UseExistingFrames mode, otherwise the frame may not actually be removed. This changes makes the behaviour of multi frames a bit more predictable (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Allow choosing *.htm and *.* files for html item source (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Update number of pages in gui whenever number of pages is changed by multi frame items (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Update picture item header documentation and sip bindings (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Add tests for expression based picture source (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Refresh picture size if composition resolution changes (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Add signal for when composition print resolution changes (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Move code responsible for updating labels from atlas to QgsComposerLabel, fix potential crash when removing atlas coverage layer. Nyall Dawson 2014-04-28 [composer] Don't resize picture frame to invalid sizes (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [FEATURE][composer] Add expression support for picture source (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Add a featureChanged signal for when the current atlas feature changes (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Picture item header improvements (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Add tests for picture resize modes (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [composer] Move composer picture related tests into their own seperate test suite (sponsored by City of Uster, Switzerland) Nyall Dawson 2014-04-28 [FEATURE][composer] Implement different resize modes for composer picture items, including zoom, stretch, clip, frame to image size (fix #7886). (Sponsored by City of Uster, Switzerland) Juergen E. Fischer 2014-04-28 german translation update Nyall Dawson 2014-04-28 [composer] Add more tests to attribute table test suite Nyall Dawson 2014-04-28 [composer] Some api documentation improvements and fix ups Nyall Dawson 2014-04-28 [composer] Add test for text table cell values Nyall Dawson 2014-04-28 [composer] Make getFeatureAttributes public for tables Nyall Dawson 2014-04-28 [composer] Start test suite for composer tables. Nyall Dawson 2014-04-28 [composer] Rename getHeaderLabels to headerLabels and make it public for composer text/attribute tables. Merge: 73b2b86 dfb84e1 Jürgen Fischer 2014-04-28 Merge pull request #1326 from saberraz/master Changed the link to commercial support page default to EN. Merge: 4c2819c dfc077b Denis Rouzaud 2014-04-28 Merge pull request #1302 from manisandro/remove_layer_from_LayerSnappingList Re-write the snapping settings when removing a layer Werner Macho 2014-04-28 [TRANSUP] fi by Kari Signed-off-by: Werner Macho Salvatore Larosa 2014-04-28 [db manager] shows vertical scrollbar as needed and set focus to the query editor after clearing Juergen E. Fischer 2014-04-27 debian packaging: depend on python-pyspatialite on trusty Martin Dobias 2014-04-27 Fix crashes with parallel access to GRASS vectors Nyall Dawson 2014-04-27 [composer] Recalculate table size when margin or grid width changes Merge: 23900ba ca75fed Werner Macho 2014-04-27 Merge pull request #1329 from Cracert/i18n [TRANSUP] pl: OptionsBase; iss 6,8,9,13 by Radek Robert Szczepanek 2014-04-26 [TRANSUP] pl: OptionsBase; iss 6,8,9,13 by Radek Alexander Bruy 2014-04-26 follow up e4f410b58 Matthias Kuhn 2014-04-26 Fallback to external httplib2 when internal is not available Martin Dobias 2014-04-25 Fix extent computation in memory provider Lutra 2014-04-25 Changed the link to commercial support page. the DE is in german, changed to EN. Juergen E. Fischer 2014-04-25 identify: fix form button icon & tooltip, remove close button Juergen E. Fischer 2014-04-25 QgsField::displayString() consider configurable NULL representation Juergen E. Fischer 2014-04-25 fix crash when maptool of a plugin is active on exit Alexander Bruy 2014-04-25 [processing] fix typo in GRASS 7 provider Victor Olaya 2014-04-24 [processing] fixed v.select description fixes #10113 Victor Olaya 2014-04-24 [processing] added new example script Victor Olaya 2014-04-24 [processing] added Chainage algorithm as script Victor Olaya 2014-04-24 [processing]improved script editor dialog Victor Olaya 2014-04-24 [processing] some fixes in help system Denis Rouzaud 2014-04-24 sip: add transfer Denis Rouzaud 2014-04-10 allow to add a QToolBar to QGisInterface (will allow subclassing) Werner Macho 2014-04-24 [TRANSUP] nb by James Signed-off-by: Werner Macho Nyall Dawson 2014-04-24 Fix capitalisation of string Werner Macho 2014-04-24 [TRANSUP] pt_BR from transifex test Signed-off-by: Werner Macho Victor Olaya 2014-04-23 [processing] store settings using QSettings instead of in a dedicated file Nathan Woodrow 2014-04-23 Add node points for measure tool Nathan Woodrow 2014-04-23 Add better default colour and width for measure tools. Fix #10029 Alexander Bruy 2014-04-23 [processing] fix help method in GeoAlgorithm class Nathan Woodrow 2014-04-23 Remove identify mode and auto open from options from options from dialog Merge: 5e0b5fe a4133ce Werner Macho 2014-04-23 Merge pull request #1324 from thodorisvakkas/master [TRANSUP] greek translation 20140423 Denis Rouzaud 2014-04-23 Add .orig to gitignore thodoris.vakkas 2014-04-23 [TRANSUP] greek translation 20140423 Signed-off-by: thodoris.vakkas Nyall Dawson 2014-04-23 [composer] Add a manual 'refresh' button to attribute tables, to refresh table if data has changed outside of QGIS Nyall Dawson 2014-04-23 [composer] Cache features for attribute table, to reduce excessive cpu use and multiple queries to layer provider Werner Macho 2014-04-22 [TRANSUP] gl by Xan Signed-off-by: Werner Macho Werner Macho 2014-04-22 [TRANSUP] es by carlos Signed-off-by: Werner Macho Juergen E. Fischer 2014-04-22 identify: clear rubberband after deleting the items Juergen E. Fischer 2014-04-22 cleanup: replace boolean comparison (x==true => x / x==false => x) (followup b40868c8) Juergen E. Fischer 2014-04-22 Add Marco Lechner to CONTRIBUTORS Merge: 2f47bba d6535a8 Marco Hugentobler 2014-04-22 Merge branch 'server_legend_url' Marco Hugentobler 2014-04-22 [FEATURE]: Add legend url to wms capabilities. Patch from mlechner Larry Shaffer 2014-04-21 Fix compiling error with some compilers on Mac Juergen E. Fischer 2014-04-22 missed a file in last commit Juergen E. Fischer 2014-04-22 always use identify dialog as dock (also fixes #9631) Juergen E. Fischer 2014-04-21 don't open feature form and identify results window (fixes reintroduced #9631) Nathan Woodrow 2014-04-10 [Identify] Move identify mode selection to dialog. Add auto form checkbox Nathan Woodrow 2014-04-08 [Identify] Expand first feature Nathan Woodrow 2014-04-08 [Identify] Don't clear the identify results on single result Nathan Woodrow 2014-04-08 [Identify] Show only layer name in identify results Nathan Woodrow 2014-04-13 Show message bar for console python open error Nyall Dawson 2014-04-21 [FEATURE][composer] Add button to view current map item extent in main map canvas Nyall Dawson 2014-04-21 [composer] Correctly set background color for map items (fix #9775) Juergen E. Fischer 2014-04-20 more processing cmake fixes volaya 2014-04-20 [processing] added new tools to add scripts/models from files volaya 2014-04-20 [processing] fixed wrong import Juergen E. Fischer 2014-04-20 fix build error Juergen E. Fischer 2014-04-20 fix warnings Marco Hugentobler 2014-04-20 Remove legacy classes in server code Marco Hugentobler 2014-04-20 Fix compile error after merge Merge: 25676f3 f132b43 mhugent 2014-04-20 Merge pull request #1296 from mhugent/server_cleanup Server config redesign Victor Olaya 2014-04-20 [processing] Adapted make files (they were not changed after refactoring folder structure) Juergen E. Fischer 2014-04-19 data defined symbol dialog: only remove quoting if there is one (fixes #9783) Juergen E. Fischer 2014-04-19 labeling: consider configure representation for NULL values (fixes #9998) Juergen E. Fischer 2014-04-19 german translation update Juergen E. Fischer 2014-04-19 identation update Juergen E. Fischer 2014-04-19 oracle provider: * retrieve comment of materialized views (implements #10063) * use detected srid (fixes #10091) * initialize mUseEstimatedMetadata (fixes #10092) * also consider username in temporary saved credentials (fixes #10093) Victor Olaya 2014-04-19 [processing] recover changes introduced in b928d165206a0994e593903d149c875131bfd6c6, lost on refactoring and merging Victor Olaya 2014-04-19 [processing] fixed wrong path to grass icon in grass7 provider Victor Olaya 2014-04-19 [processing] prevent grass installation check returning None when folder not set under windows Victor Olaya 2014-04-19 [processing] fixed wrong help url to Processing manual Victor Olaya 2014-04-19 [processing] prevent grass7 config parameters from shadowing grass6 parameters Victor Olaya 2014-04-19 [processing] fixed indentation issues Victor Olaya 2014-04-19 [processing] added grass7 files (forgot to add them on refactoring) Victor Olaya 2014-04-19 [processing] corrected wrong name of script help file Victor Olaya 2014-04-19 [processing] improvements in help for algorithms Avoid creating temporary helpfiles Added basic converter to convert rst into html on the fly Added SAGA help files Victor Olaya 2014-04-17 [processing] refactoring to put all algorithm providers under a single module Victor Olaya 2014-04-19 [processing]correctly update toolbox after editing/creating/deleting models and scripts Juergen E. Fischer 2014-04-19 fix doxygen warnings Juergen E. Fischer 2014-04-19 add path of bscmake.exe Juergen E. Fischer 2014-04-18 osgeo4w: run builds using cmake --build Juergen E. Fischer 2014-04-18 GRASS: * don't include unistd on windows in browser * avoid warning when grass/version.h is not found at once Juergen E. Fischer 2014-04-18 fix doxygen warning Werner Macho 2014-04-18 few updates in the translators file, more to come Signed-off-by: Werner Macho Werner Macho 2014-04-18 [TRANSUP] german translation update Signed-off-by: Werner Macho Werner Macho 2014-04-18 typo and permission fix Signed-off-by: Werner Macho Larry Shaffer 2014-04-18 Direct access to grass70, in lieu of grass.sh, for Processing on Mac - This just gets GRASS 7 useable in Processing. Vetting of all env vars has not been done. - Note: all GRASS scripts are now Python, so grass.sh is not available anyway. - Test for grass.sh remains, in case it is created for a custom packaging setup. Radim Blazek 2014-04-17 GRASS7 vector provider Juergen E. Fischer 2014-04-17 wms client: handle + encoding (image/svg+xml) in format parameter also for other requests (followup b118213d, refs #10060) Werner Macho 2014-04-17 [TRANSUP] easter string update Signed-off-by: Werner Macho Martin Dobias 2014-04-17 Moved map layer's custom properties to a separate class Victor Olaya 2014-04-15 changed group name of example script Victor Olaya 2014-04-14 [processing] allow selection of open layers in batch interface Victor Olaya 2014-04-13 [processing] Removed wrong method definition in ParameterTable.py Victor Olaya 2014-04-13 Removed MultipleExternalInput parameter and made it a subtype of MultipleInput Martin Dobias 2014-04-17 Fixed a crash in QgsMapLayerModel (when opening a new project) Denis Rouzaud 2014-04-17 use correct signal Etienne Tourigny 2014-04-16 fix UI inconsistencies in raster min/max widget Etienne Tourigny 2014-04-16 fix raster cumulative cut for byte bands (#9793) and make sure values are rounded down/up for integer bands Merge: a70a18d 7399789 Etienne Tourigny 2014-04-16 Merge pull request #1213 from etiennesky/histogram_bars Histogram bars Werner Macho 2014-04-17 rewrite tx config and add catalan from transifex Signed-off-by: Werner Macho Merge: 122034a 3461afc volaya 2014-04-16 Merge pull request #1284 from gioman/r_cost add grass r.cost module with no need for stop points input Marco Hugentobler 2014-04-16 Fix loading of embedded layers and groups in WMS server Nyall Dawson 2014-04-16 [composer] Some small fixes to svg layers export, naming improvements, additional comments vmora 2014-04-15 [composer] add svg export with layers Werner Macho 2014-04-16 [TRANSUP] ro from transifex test and en update Signed-off-by: Werner Macho Merge: 10f9f55 a98df93 mhugent 2014-04-16 Merge pull request #1266 from rldhont/provider_wfs_authorization [BUGFIX] 9234 - WFS client doesn't expose Header Authorization Larry Shaffer 2014-04-15 Bundle any externally linked libs for osgEarth on Mac Larry Shaffer 2014-04-15 Add QtScript to Mac app bundle (now used in WMS provider) Martin Dobias 2014-04-15 Fix #9532 (node tool crash on a layer with a feature without geometry) Marco Hugentobler 2014-04-15 Fix drawing order with embedded group Nyall Dawson 2014-04-15 [composer] Fix QgsComposerTextTable always blank Sandro Mani 2014-04-07 [composer] Correctly update extent when restoring composermap state, except when composer map is not yet visible after loading Sandro Mani 2014-04-15 Use deleteLater in QgisApp::deleteComposerManager Nyall Dawson 2014-04-15 [composer] Allow choice of non-geometry vector layers for attribute table, but disable controls which have no meaning for geometryless tables (fix #9944) Sandro Mani 2014-04-14 Don't open multiple composer manager windows, don't hide the composer manager when showing/duplicating a composer Nyall Dawson 2014-04-14 [composer] Use QgsMapLayerComboBox for attribute table layer selection Nyall Dawson 2014-04-14 [FEATURE][composer] Allow filtering rows in attribute tables Nyall Dawson 2014-04-14 [FEATURE][composer] Allow setting line join and cap style for scalebars Nyall Dawson 2014-04-14 [composer] Correctly handle cancelling shape, overview, grid and page style changes Juergen E. Fischer 2014-04-14 fix crash when triggering already destroyed map layer actions in identify (alternative fix for PR#1319) Juergen E. Fischer 2014-04-14 debian packaging: revert source format Juergen E. Fischer 2014-04-14 add download link to the api documentation Juergen E. Fischer 2014-04-14 wms: add support for svg getmap requests (implements #10060) Juergen E. Fischer 2014-04-13 debian packaging: missed some downstream changes in merge Nyall Dawson 2014-04-13 [composer] Add undo/redo support for item transparency and blend modes, symbol change for shapes, overviews and grid styles Nyall Dawson 2014-04-13 [composer] Fix undoing item rotation not applying when item originally had 0 rotation Nyall Dawson 2014-04-13 [composer] Correctly update non-position related item property controls after undo/redo Nathan Woodrow 2014-04-13 Use message bar for old project message Merge: e87a7b8 e214741 Nyall Dawson 2014-04-13 Merge pull request #1300 from manisandro/fix_composer_arrow_bbox Improve print composer arrow bounding box logic Nyall Dawson 2014-04-13 [composer] Correctly save/restore legend title alignment Sandro Mani 2014-04-06 [composer] Ensure UI is syncronized with legend item state Sandro Mani 2014-04-07 [FEATURE][composer] Add support for specifying legend title horizontal alignment in composer Sandro Mani 2014-04-07 Initially set width and height spinboxes in composition paper setup to disabled (since initial format is A4) Juergen E. Fischer 2014-04-12 don't restart network timeout timer twice (followup a63de6d, partly reverts d7c29ae) Werner Macho 2014-04-11 [TRANSUP] nb by James Signed-off-by: Werner Macho Nyall Dawson 2014-04-11 Update composer shape sip Nyall Dawson 2014-04-11 [composer] Follow up 2b3108f9ae, fix calculation of bounding rect after resizing composer shapes Werner Macho 2014-04-10 adding function help for atlasid and atlasgeometry Signed-off-by: Werner Macho Merge: a1f1b94 d2dce59 Jürgen Fischer 2014-04-10 Merge pull request #1314 from manisandro/network_timeout Restart timeout timer when data is received in QgsNetworkAccessManager Merge: 5f19830 25915d7 mhugent 2014-04-10 Merge pull request #1305 from manisandro/save_on_new_from_template Ask whether to save existing project when creating a new project from a template Sandro Mani 2014-04-09 Log timeout URL to message log, only display short message in message bar Sandro Mani 2014-04-09 Use message bar instead of warning dialog Sandro Mani 2014-04-06 Populate transparency table when loading qml style for raster layer Sandro Mani 2014-04-07 Restart timeout timer when data is received in QgsNetworkAccessManager, show a message if timeout is reached. Sandro Mani 2014-04-09 Simplify test Sandro Mani 2014-04-06 Make QgsComposerManager non-modal, ensure consistency of composer manager composer list Nyall Dawson 2014-04-09 Revert "Make QgsComposer window WindowModal" This reverts commit a901ee119e4b5433765042d3d7b21f12d3ef6bfd. Merge: bbf68bf a901ee1 Nyall Dawson 2014-04-09 Merge pull request #1298 from manisandro/composer_window_modal Make QgsComposer window WindowModal Juergen E. Fischer 2014-04-08 fix warning Martin Dobias 2014-04-08 [FEATURE] Oracle: local cache of the list of tables Caching is done using SQLite database (could be shared also with other providers) Sandro Mani 2014-04-06 Ask whether to save existing project when creating a new project from a template. Sandro Mani 2014-04-06 Use a QDoubleSpinBox instead of a QLineEdit for the snapping tolerance, make the treeview columns adjust better to the size of the contents Merge: 00b1f2c ff18324 Denis Rouzaud 2014-04-08 Merge pull request #1260 from leyan/snapping_priority_2 Snapping priority to vertex in QgsSnapper Sandro Mani 2014-04-06 Re-write the snapping settings when removing a layer Nyall Dawson 2014-04-08 Bring composition to front and automatically activate atlas preview when running the "set as atlas feature" action (sponsored by SIGE) Nyall Dawson 2014-04-08 [composer] Allow setting the join style for composer item frames Nyall Dawson 2014-04-08 Fix some symbol properties reseting when symbol dialog opens, make dialog safer by always blocking signals before updating initial state of controls Sandro Mani 2014-04-06 Adjust the arrow points to fit inside the specified bounding box, as opposed to adjusting the bounding box for the arrow points (except when bounding box is too small) Nyall Dawson 2014-04-08 [composer] Default to miter style for shapes and page background Sandro Mani 2014-04-06 Make QgsComposer window WindowModal Merge: d60e7dc c108d02 Werner Macho 2014-04-08 Merge pull request #1295 from Cracert/i18n [TRANSUP] pl: legend context menu Marco Hugentobler 2014-04-08 Consider number of layers in a project can be higher than 100 for caching Robert Szczepanek 2014-04-07 [TRANSUP] pl: legend context menu Marco Hugentobler 2014-04-07 Cleanup config cache Merge: d60e7dc 9de505d Marcel Dancak 2014-04-07 Merge remote-tracking branch 'origin/master' Conflicts: src/mapserver/qgswmsserver.cpp Merge: 3e4b568 1399c6e mhugent 2014-04-07 Merge pull request #1292 from anitagraser/master fixed SVG markers to work with anchor point=bottom Werner Macho 2014-04-06 [TRANSUP] nb by James Signed-off-by: Werner Macho Marco Hugentobler 2014-04-06 Re-enable reloading of changed project files Juergen E. Fischer 2014-04-06 fix crash when removing layers with highlighed features Juergen E. Fischer 2014-04-06 german translation update with some translation fixes Juergen E. Fischer 2014-04-06 indentation update Juergen E. Fischer 2014-04-05 debian packaging update: merge downstream debian changes Juergen E. Fischer 2014-04-06 fix warnings Marco Hugentobler 2014-04-06 Re-enable watermark items Juergen E. Fischer 2014-04-05 fix doxygen dot graph warning Marco Hugentobler 2014-04-05 Re-enable embedded groups anitagraser 2014-04-05 fixed SVG markersto work with anchor point=bottom Larry Shaffer 2014-04-04 Fix some logical-not-parentheses warnings thrown by clang 5.1 Juergen E. Fischer 2014-04-05 fix windows build Marco Hugentobler 2014-04-04 Re-enable vector joins and value relations Marco Hugentobler 2014-04-04 Re-enabled WCS server Merge: a43bd62 a95fedb Martin Dobias 2014-04-04 Merge remote-tracking branch 'denis/layerfieldmodel' Denis Rouzaud 2014-04-04 test to fix checkboxes in combobox Denis Rouzaud 2014-04-04 added missing roles in field model data D'Hont René-Luc 2014-03-25 [BUGFIX] 9234 - WFS client doesn't expose Header Authorization Like for the others OGC providers: WMS and WCS, the user can set the login and password to access to WFS protected data. But the QGIS WFS provider doen't expose header authorization. It doesn't use login and password. This patch set header authorization for all WFS connexion if login and password are set. And I think this patch has to be backported to release_2-2, because QGIS can't acces to protected WFS data. Radim Blazek 2014-04-03 fixed processing plugin customization (thanks to Martin Dobias), fixes #9134 Denis Rouzaud 2014-03-24 model/view for layer/field selectors Nyall Dawson 2014-04-03 [tests] Fix composer tests. Rebuild images following MTR rendering changes. Switch tests to use standard test font. pcav 2014-04-03 Typo in Processing Juergen E. Fischer 2014-04-03 osgeo4w: try ALL_BUILD twice Nyall Dawson 2014-03-17 Expose outline join style as a parameter for simple fill symbol type Merge: b9a539e 8679c6d Martin Dobias 2014-04-03 Merge pull request #1291 from simonsonc/qtgui-include Replace QtGui include with individual includes Carl Simonson 2014-04-02 Replace QtGui include with individual includes Qt 5 splits QtGui into Gui and Widgets components. Including the individual includes will solve this problem. Juergen E. Fischer 2014-04-02 fix utf string Juergen E. Fischer 2014-04-02 limit alpha Juergen E. Fischer 2014-04-02 remove duplicate license Marco Hugentobler 2014-04-02 Re-enable WFS Server Marco Hugentobler 2014-04-02 Re-enable GetCapabilities in WFS server Merge: bc40ab6 29c8bc5 Martin Dobias 2014-04-02 Merge pull request #1287 from simonsonc/reset-model Use begin/endResetModel instead of reset Merge: 2b3108f 6ebd9a8 Etienne Tourigny 2014-04-01 Merge pull request #1288 from simonsonc/qvariant-qcolor Use QColor instead of Qt::GlobalColor in item data Carl Simonson 2014-04-01 Use QColor instead of Qt::GlobalColor in item data The QVariant constructor that takes a Qt::GlobalColor is removed in Qt 5. It is actually a kind of special case in Qt 4 anyway. Fix the uses of this by constructing a QColor and using that instead. Carl Simonson 2014-04-01 Use begin/endResetModel instead of reset Qt 4.6 introduced a better way of resetting models with beginResetModel()/ endResetModel(). Call beginResetModel() before resetting internal data structures, and then endResetModel() when finished. beginResetModel() followed by endResetModel() is the same as calling reset(). Note: reset() is deprecated and is removed in Qt 5. Nyall Dawson 2014-04-02 Fix high cpu usage with win32 builds when using shapes in composer (fix #9933, #9957, #9734) Marco Hugentobler 2014-04-01 Re-add wms based printing Marco Hugentobler 2014-04-01 Delete sld parser for sent sld after request Merge: 9eb4bb6 3b198d9 Borys Jurgiel 2014-04-01 Merge branch 'pluginmanager_votes' Marco Hugentobler 2014-04-01 [FEATURE:] Consider maptip in GetFeatureInfo Borys Jurgiel 2014-04-01 [FEATURE] [Plugin Manager] Voting for plugins from Plugin Manager Borys Jurgiel 2014-03-27 [Plugin Manager] Switch the plugin details browser from QTextBrowser to QWebView Martin Dobias 2014-04-01 Decoration grid: fix symbol sizes + default cross size Martin Dobias 2014-04-01 Do not render grid annotation if the lines/markers would be extremely dense Otherwise drawing of huge amount of lines/markers can lock GUI Merge: b60794e d969fb3 Martin Dobias 2014-04-01 Merge pull request #1283 from simonsonc/rename-accept-hover-events Rename setAcceptsHoverEvents gioman 2014-04-01 add grass r.cost module with no need for stop points input Carl Simonson 2014-03-31 Rename setAcceptsHoverEvents setAcceptsHoverEvents was obsoleted in place of setAcceptHoverEvent in Qt 4.4. They behave the same. Martin Dobias 2014-03-31 Fix #9923 (broken arrow symbol) Merge: 6852f9e 72457b3 volaya 2014-03-31 Merge pull request #1279 from pka/grass7 [FEATURE] (Processing) Initial Grass 7 support Victor Olaya 2014-03-31 [processing] added new script example (contributed by Michael Douchin) Victor Olaya 2014-03-31 [processing] disable excesive info reporting from otb provider Juergen E. Fischer 2014-03-31 fix regression992 test Alexander Bruy 2014-03-31 [processing] handle same memory error in another algorithm Merge: a191d5b 9ef91a2 alexbruy 2014-03-31 Merge pull request #1280 from anitagraser/patch-1 [processing] added error handling for too big rasters Merge: 3aedeff 45ac9f9 Werner Macho 2014-03-31 Merge pull request #1281 from marcelosoaressouza/translation_pt_BR New Translations to pt_BR Merge: 04d7169 3e3f30a Martin Dobias 2014-03-31 Merge pull request #1277 from simonsonc/mime-format Replace deprecated provides() with hasFormat() Marcelo Soares Souza 2014-03-31 New Translations to pt_BR anitagraser 2014-03-31 added error handling for too big rasters I ran into memory problems with big rasters. Now the error message points the user to this potential error source. Werner Macho 2014-03-31 [TRANSUP] nb by James Signed-off-by: Werner Macho Merge: 528d70f abc7b9b mhugent 2014-03-31 Merge pull request #1267 from mwa/fix_8298_crs_select Fix #8298 ignored first selection in projection selector Juergen E. Fischer 2014-03-29 globe: switch back to QgsMapRenderer Markus Neteler 2014-03-30 [FEATURE] (Processing) Initial Grass 7 support Marco Hugentobler 2014-03-30 More changes to qgssldconfigparser.cpp/h Juergen E. Fischer 2014-03-30 fix debian packaging Marco Hugentobler 2014-03-30 Add QgsSLDConfigParser and create calss QgsConfigParserUtils for parts which are common between project parser and sld parser Werner Macho 2014-03-29 typo in assigning values, fixes #9597 Signed-off-by: Werner Macho Juergen E. Fischer 2014-03-29 fix some tests crashes, fix some tests and some mtr updates Juergen E. Fischer 2014-03-29 remove QgsMapCanvas.useImageToRender in db_manager (fixes #9942) Juergen E. Fischer 2014-03-29 fix redirected wms capabilities requests Carl Simonson 2014-03-28 Replace deprecated provides() with hasFormat() QDropEvent::provides() has been deprecated from the move from Qt 3 to Qt 4. Replace this instance with the hasFormat() method on the mimeData instance. Martin Dobias 2014-03-28 Added python bindings for QgsMapRendererJob + subclasses and QgsMapRendererCache Martin Dobias 2014-03-28 Fix #9918 (enable add symbol layer also when selection is not on symbol) Radim Blazek 2014-03-28 missing python plugins menu/actions objectName Merge: c324895 7b7ffb2 Martin Dobias 2014-03-28 Merge pull request #1276 from anitagraser/master new master splash from #viennacodesprint14 Merge: a82aeb0 3d44c59 Jürgen Fischer 2014-03-28 Merge pull request #1275 from sebastic/arm Support building QGIS on ARM (#9917) Martin Dobias 2014-03-28 Fix #9916 (inconsistent step size) anitagraser 2014-03-28 new master splash from #viennacodesprint14 Alexander Bruy 2014-03-28 [processing] don't close dialog if execution fails (fix #9893) Merge: 2b458e8 8dff030 Martin Dobias 2014-03-28 Merge pull request #1274 from simonsonc/explicit-link Be explicit with Qt link libraries Alexander Bruy 2014-03-28 [processing] show alforithm and help authors in Help tab (fix #8917) Alexander Bruy 2014-03-28 fix error when copying gdalinfo output to clipboard (fix #9882) Alexander Bruy 2014-03-28 add option to load result to canvas in Heatmap plugin (fix #6645) Merge: 9bf96cb 1bcd154 Martin Dobias 2014-03-28 Merge remote-tracking branch 'simonsonc/rename-subtract' Bas Couwenberg 2014-03-28 Disable features on ARM. Building QGIS on ARM produces the error: sip: qgis/python/core/qgsclipper.sip:44: \ QgsClipper::trimFeature() unsupported function argument type - provide %MethodCode and a C++ signature For the Android builds this was fixed in commit 2cc684793ceb29d8600d71564fb38f92c998f588. This patch adapts the Android fix, by disabling the SIP features on all ARM systems. Bug-Debian: http://bugs.debian.org/737814 Bas Couwenberg 2014-03-28 Fix qreal vs double. In qt4 on arm architectures qreal is defined as float while on other architectures it is defined as double. This can cause problems if qreal and double are carelessly mixed. In this particular case the problem is that qMin/qMax are templates defined to take two parameters of the same type. If two different types are passed in then C++ can't resolve what type the template parameter should be and bails out. The fix is simple, typecast one of the parameters so they match. Author: Peter Michael Green Bug-Debian: http://bugs.debian.org/737814 Bas Couwenberg 2014-03-28 On armel/armhf qreal is typedef'ed to float not double. This patch adds qreal versions of some functions on arm. It was originally writen by Konstantinos Margaritis and later fixed by Peter Michael Green. Bug-Debian: http://bugs.debian.org/691333 Carl Simonson 2014-03-27 Be explicit with Qt link libraries For the analysis tests, instead of linking with all the found QT_LIBRARIES, pick only the ones that are needed. Carl Simonson 2014-03-27 Replace "subtract" with "subtracted" The QRegion::subtract method has been replaced with subtracted. The functionality is the same. Carl Simonson 2014-03-27 Remove unused include This "QMenuItem" include is not used, and it's also a Qt 3 leftover. Remove it. Alexander Bruy 2014-03-27 refresh map canvas after pasting style (fix #9908) Alexander Bruy 2014-03-27 [processing] skip invalid geometries when performing intersection (fix #9410) Victor Olaya 2014-03-27 [processing] fixed error when running script algorithm from script editor (fixes #9905) Victor Olaya 2014-03-27 [processing] modeler dialog now saves automatically the model before executing it Victor Olaya 2014-03-27 [processing] fixed exporting model to python (replaced 'Processing' reference with 'processing') Marco Hugentobler 2014-03-27 Access to layer data of interpolator Alexander Bruy 2014-03-26 assign CRS to interpolation output (fix #3578) Merge: 3dfacc7 7710882 Etienne Tourigny 2014-03-27 Merge pull request #1269 from etiennesky/rldhont-netcdf_generateBandName [Feature][RASTER] Generate band name with NetCDF EXTRA_DIM funded by Ifremer Marco Hugentobler 2014-03-27 Refactor configuration parsing and configuration cache Radim Blazek 2014-03-27 identify/highlight default constants Victor Olaya 2014-03-27 [processing] added support for multiline strings in scripts Victor Olaya 2014-03-26 [processing]added new example script (contributed by Michael Douchin) Juergen E. Fischer 2014-03-27 fix warnings Radim Blazek 2014-03-27 missing identify/highlight sip methods Borys Jurgiel 2014-03-27 [Plugin manager] Replace confirmation popup dialogs with an internal QgsMessageBar Martin Dobias 2014-03-27 Change also SIP files to use WindowFlags instead of WFlags Carl Simonson 2014-03-26 Replace WFlags with WindowFlags It has long been in Qt 4 that the WFlags window flags argument has been renamed to WindowFlags. In fact, WFlags is just a typedef to WindowFlags. In Qt 5, this will go away, so we can change this now to make transition easier in the future. This should not have any affect on API or ABI, as the symbol names already have WindowFlags in them anyway. This change concentrates on the sources in the src directory. There are a few more places in the python directory that can be done later. Juergen E. Fischer 2014-03-26 avoid warning messages on composer arrows without markers Merge: 48b9ccb 013f9e9 Jürgen Fischer 2014-03-27 Merge pull request #1265 from nyalldawson/postgis_time Make PostGIS provider correctly create time and datetime formats Alexander Bruy 2014-03-26 [ftools] use int column for point count (fix #9432) Merge: 3d6f17b 9aab894 mhugent 2014-03-26 Merge pull request #1264 from olivierdalang/fix_9334 fix #9334 Alexander Bruy 2014-03-26 [processing] handle non-ASCII characters when running GRASS algorithms (addresses #5420) Alexander Bruy 2014-03-26 [processing] move OTB output to INFO tab, fix deprecation warning Alexander Bruy 2014-03-26 [processing] enable temporary outputs in QGIS Field Calculator (fix #9401) Radim Blazek 2014-03-26 identify and other map tools changed to use search radius in mm Martin Dobias 2014-03-26 Fix symbol's size/width not being updated in GUI on load Merge: 05ce120 6703126 Werner Macho 2014-03-26 Merge pull request #1268 from milenanv/qgis_trans_pl [TRANSUP] pl by milena Alexander Bruy 2014-03-26 [processing] show confirmation when closing modeler with unsaved model (fix #9889) Merge: d0c93b9 690e7b0 Martin Dobias 2014-03-26 Merge pull request #1245 from simonsonc/remove-qtgui Remove include of QtGui in favor of individual includes Merge: 9445c9a 3e0e0ed Martin Dobias 2014-03-26 Merge pull request #1244 from simonsonc/qt-no-deprecated Fix uses of deprecated Qt methods Mathias Walker 2014-03-26 Globe: anti-aliasing disabled by default Mathias Walker 2014-03-26 fix globe sync extent Victor Olaya 2014-03-26 [processing] improved algorithm filtering in toolbox Victor Olaya 2014-03-26 [processing] fixed display ad handling of optional table fields in parameters panel Alexander Bruy 2014-03-26 [processing] add Buffer option to Voronoi polygons tool (fix #7661) Alexander Bruy 2014-03-26 [processing] fix handling of optional string arguments (fix #9109, 9120) Victor Olaya 2014-03-26 [processing] added drag&drop support in modeler Mathias Walker 2014-03-26 fix #8298 ignored first selection of recently used CRS in projection selector Merge: a93bef4 be8ae5f volaya 2014-03-26 Merge pull request #1235 from m-kuhn/httplib Add new CMake option: WITH_INTERNAL_HTTPLIB (default True) Alexander Bruy 2014-03-26 [processing] remove shebangs from SAGA helpers (fix #9669) Werner Macho 2014-03-26 [TRANSUP] gl by Xan Signed-off-by: Werner Macho Victor Olaya 2014-03-26 [processing]do not rebuild thhe whole toolbox tree when filtering or updating Nathan Woodrow 2014-03-26 [MSSQL] Close database and delete query on close Merge: 20933de 1911232 Nathan Woodrow 2014-03-26 Merge remote-tracking branch 'tamas/master' Larry Shaffer 2014-03-25 Add README.rst for labeling unit tests Nyall Dawson 2014-03-26 Make PostGIS provider correctly use time and datetime formats, instead of converting them to character Radim Blazek 2014-03-25 highlight fixes Martin Dobias 2014-03-25 Reintroduce $map and optional canvas refresh debug logs Martin Dobias 2014-03-25 Fix support for setCacheImage() to enforce refresh of a layer Alexander Bruy 2014-03-25 make menthod and variable naming consistent, some cleanup Paolo Tormene 2013-11-28 New method to duplicate a vector layer in memory and optionally add it to the map registry olivierdalang 2014-03-25 fix #9334 Tamas Szekeres 2014-03-25 Rewrite the mssql driver to take care of the multithreded rendering Radim Blazek 2014-03-25 [FEATURE] Identify highlight options. - optional highlight color, line/outline buffer and minimum width - fixed symbol sizes (thanks to Martin Dobias) Milena Nowotarska 2014-03-25 translation update pl Merge: e2d01e2 7abca16 volaya 2014-03-25 Merge pull request #1134 from CS-SI/otb_processing_update OTB processing update Merge: ec0c820 90fa359 volaya 2014-03-25 Merge pull request #970 from snorfalorpagus/spatialjoin Ported "Join attributes by location" from fTools to Processing Merge: 44a054d af55e98 volaya 2014-03-25 Merge pull request #1052 from Oslandia/processing_gui_set_values [processing] set droplists if parameter values are already set Merge: 839c3e7 748d261 Jürgen Fischer 2014-03-25 Merge pull request #1262 from nyalldawson/processing_postgis Improvements to processing "Import into PostGIS" algorithm Merge: 3374095 cef3018 Werner Macho 2014-03-25 Merge pull request #1263 from Qgis-Tr-kr/master [TRANSUP] kr Alexander Bruy 2014-03-25 [processing] make script editor, modeler and results viewer non modal (fix #9849) Alexander Bruy 2014-03-25 [processing] restore Create new model tool in toolbox (fix #9847) Alexander Bruy 2014-03-25 [processing] fix MMQGIS Extract by attribute (fix #9768) Alexander Bruy 2014-03-25 [processing] add feature count to Statistics by categories output (fix #9871) Merge: af9da1d bb9c989 alexbruy 2014-03-25 Merge pull request #1076 from snorfalorpagus/processing_intersection_fix [processing] fix QGIS Intersection tool Martin Dobias 2014-03-25 Invalid CRS instances should be equal jangbi882 2014-03-25 Korean translate completed Alexander Bruy 2014-03-25 [processing] fix Unique values tool (fix #9870) Alexander Bruy 2014-03-25 [processing] fix output names for some SAGA algorithms (fix #9789) Marco Hugentobler 2014-03-25 Clean up code in qgis_map_serv.cpp Merge: db235c8 02822d4 volaya 2014-03-25 Merge pull request #1149 from p0cisk/master [processing]Fix "float division by zero" in polygonize algorithm if no Merge: f29d44e bd50701 volaya 2014-03-25 Merge pull request #1239 from bstroebl/eliminateSmallest [FEATURE] (Processing) Eliminate with smallest polygon Nyall Dawson 2014-03-25 [processing] Add option for converting field names to lowercase for Import to PostGIS algorithm Larry Shaffer 2014-03-24 Add PDF composer output labeling tests setup - Only support for Poppler with Cairo (pdftocairo), since without Cairo a PDF's vectors are not always rendered properly Larry Shaffer 2014-03-24 Rebuild labeling tests control images with smaller size (420 x 280) Nyall Dawson 2014-03-25 [processing] Allow choice of geometry column name, change database connection name to combo box for Import into PostGIS algorithm jangbi882 2014-03-25 before QgsOptionBase Marco Hugentobler 2014-03-24 Add QgsOWSServer class, move code from qgis_map_serv.cpp into exection() functions Alexander Bruy 2014-03-24 [ftools] increase maximum number of points for regular points tool Alexander Bruy 2014-03-24 remove extra spaces from message text (fix #7648) Alexander Bruy 2014-03-24 [processing] better handling of non-ASCII characters in config dialog (addresses #9323) Alexander Bruy 2014-03-24 [processing] fix old API calls in Extract by location tool (fix #9603) Martin Dobias 2014-03-24 Remove obsolete label from options dialog Larry Shaffer 2014-03-22 Fix labeling local server test class setup error Larry Shaffer 2014-03-22 Add render checker color tolerance to labeling tests Larry Shaffer 2014-03-22 Add render checker color tolerance to sip Alexander Bruy 2014-03-24 [processing] fix wrong tools description (fix #9852) Alexander Bruy 2014-03-24 fix #9838 Alexander Bruy 2014-03-24 [processing] fix Distance Matrix tool (fix #7618) Milena Nowotarska 2014-03-24 updated translation pl Werner Macho 2014-03-24 [TRANSUP] fi by Kari Signed-off-by: Werner Macho Milena Nowotarska 2014-03-24 updated translation pl Alexander Bruy 2014-03-24 apply brightness/contrast changes to all selected layers (fix #8176) Alexander Bruy 2014-03-24 use Shift modifier for bigger step when changing brightness/contrast (fix #8177) Werner Macho 2014-03-24 [TRANSUP] nb by James Signed-off-by: Werner Macho Werner Macho 2014-03-24 [TRANSUP] String update on demand Signed-off-by: Werner Macho Juergen E. Fischer 2014-03-22 german translation update Richard Duivenvoorde 2014-03-23 revert 637359a and manually merge pull request #1232 Signed-off-by: Juergen E. Fischer Merge: e392efa c44b091 Jürgen Fischer 2014-03-22 Merge pull request #1221 from luipir/spatialite-savestyle added saveStyle capability to Spatialite Provider - Developed for ARPA Piemonte (Dipartimento Tematico Geologia e Dissesto) Merge: 10ede56 d25f85d Jürgen Fischer 2014-03-22 Merge pull request #1138 from slarosa/hold_dialog_db_conn [GUI] add checkbox in db conn dialog in order to keep the window open after adding a table Leyan 2014-03-22 modification of snapPoint Werner Macho 2014-03-22 [TRANSUP] lt by Paulius Signed-off-by: Werner Macho Merge: 942d5da fed204b Werner Macho 2014-03-22 Merge pull request #1259 from thodorisvakkas/master [TRANSUP] greek translation 20140322 thodoris.vakkas 2014-03-22 [TRANSUP] greek translation 20140322 Signed-off-by: thodoris.vakkas Nyall Dawson 2014-03-22 Add option to ignore interior polygon rings when calculating buffered shading for shapeburst fill mode (can be useful for eg ignoring islands when shading water bodies) Nyall Dawson 2014-03-21 Fix gradient fills using color ramps not respecting symbol transparency Juergen E. Fischer 2014-03-21 show python errors in monospace Denis Rouzaud 2014-03-21 use single signal for messageEmitted Denis Rouzaud 2014-03-21 better naming for messageEmitted/Discarded in maptools, followup 5bc5fdb 59a6663 and 6609ca8 Merge: 375e0d4 7805bc0 Nyall Dawson 2014-03-21 Merge pull request #1255 from Oslandia/atlas_signals Atlas signals Nyall Dawson 2014-03-21 Limit resolution of symbol fills during composer previews to improve composer responsiveness Nyall Dawson 2014-03-21 Consider rasterScaleFactor during shapeburst fills Nyall Dawson 2014-03-21 Add a slider for setting the shapeburst fill blur amount Nyall Dawson 2014-03-21 Avoid multiple creation and destruction of arrays during calculation of distance transform in shapeburst fills Nyall Dawson 2014-03-21 More descriptive name for colour parameters in gradient and shapeburst fill data defined symbology dialog Nyall Dawson 2014-03-21 [FEATURE] Add 'shapeburst' fill style. Shapeburst fills implement a buffered gradient fill, where a gradient is drawn from the boundary of a polygon towards the polygon's centre. Configurable parameters include distance from the boundary to shade, use of color ramps or simple two color gradients, optional blurring of the fill and offsets. Nyall Dawson 2014-03-21 Remove invalid/unused anchor point expressions from simple fill data defined expression dialog Larry Shaffer 2014-03-20 Fix some map tool connections, followup to 59a6663 and 6609ca8 Marco Hugentobler 2014-03-20 Revert "WMS server: even more performant png8 conversion" This reverts commit 8990b66eed2f00253653e64c0ceb695c08a359b7. Werner Macho 2014-03-20 [TRANSUP] el by Thodoris Signed-off-by: Werner Macho Werner Macho 2014-03-19 [TRANSUP] fix el Signed-off-by: Werner Macho Werner Macho 2014-03-19 [TRANSUP] nb by james Signed-off-by: Werner Macho Merge: 6609ca8 f9ee716 Werner Macho 2014-03-19 Merge pull request #1256 from thodorisvakkas/master Strings Translation in Greek Denis Rouzaud 2014-03-19 rename removeMessage to discardMessage, complete SIP Denis Rouzaud 2014-03-19 rename displayMessage to emitMessage in QgsMapTool Etienne Tourigny 2014-03-18 change output of QgsGdalProvider::generateBandName() and fix indentation thodoris.vakkas 2014-03-18 el_trans2014031802 Hugo Mercier 2014-03-18 Add unit test for atlas signals Hugo Mercier 2014-02-26 Add signals to atlas generation D'Hont René-Luc 2014-03-17 [Feature][RASTER] Generate band name with NetCDF EXTRA_DIM funded by Ifremer The NetCDF provided extra dimensional information. This information provides metadata on each band. These metadat can be used to explain the name of each band. For example, the bands of a NetCDF file represents the temperature at a given depth. For the user, it is easier to select a band with depth information, rather than the number. If the GDAL version is equal or greater than 1.10.0, the band name is generated with the extra_dim information. Denis Rouzaud 2014-03-18 [joins] display if memory cache is used in layer properties dialog Merge: ef3189e f61f250 mhugent 2014-03-18 Merge pull request #1250 from giohappy/master Add ILIKE filter and % character to safe tokens Merge: cbf755f 88c8ea2 Werner Macho 2014-03-18 Merge pull request #1251 from simogeo/master translation and typo fixes Merge: bd9bca9 a606799 pcav 2014-03-18 Merge branch 'master' of github.com:qgis/QGIS pcav 2014-03-18 Improving IT translation simogeo 2014-03-18 translation and typo fixes Werner Macho 2014-03-18 [TRANSUP] sv by Victor Signed-off-by: Werner Macho giohappy 2014-03-18 Add ILIKE filter and % character to safe tokens Merge: f337dd3 8467d9f Werner Macho 2014-03-18 Merge pull request #1247 from Cracert/i18n [TRANSUP] pl by Robert Hugo Mercier 2014-03-13 Expose QgsMapToPixelSimplifier to Python Robert Szczepanek 2014-03-17 [TRANSUP] pl by Robert: function_help thodoris.vakkas 2014-03-18 el_trans2014031801 Merge: 1a669dc f755781 alexbruy 2014-03-17 Merge pull request #1242 from p0cisk/roadgraph Fix displaying line layers in Road Graph settings (fix #9780) Merge: 1c0d5e2 b7b1931 Denis Rouzaud 2014-03-17 Merge pull request #1127 from 3nids/fix8873 better message display in map edit tools (fix #8873) Denis Rouzaud 2014-03-17 remove unecessary message bar item Denis Rouzaud 2014-03-03 already in QGisApp Denis Rouzaud 2014-01-29 better message display in map edit tools (fix #8873) emit signal from map tool, display message in qgisapp Carl Simonson 2014-03-16 Remove include of QtGui in favor of individual includes The reason for removing instances of "#include " is twofold: 1) Including it will probably include more than is actually needed. Plus, it hide what is actually needed, especially if in a header 2) Qt 5 splits Gui into Gui and Widgets, so being explict about what is needed gets around this problem Carl Simonson 2014-03-16 Fix uses of deprecated Qt methods There are still a few leftovers from the Qt 3 to Qt 4 migration that can be found by defining QT_NO_DEPRECATED. Here is a summary of the changes: * QDir::convertSeparators was changed to QDir::toNativeSeparators with Qt 4 * QRexExp::numCaptures was changed to captureCount with Qt 4 * QTextIStream/QTextOStream was merged into QTextStream with Qt 4 * QFileDialog::selectFilter/filters was changed to selectNameFilter/nameFilters with Qt 4.4 * qVariantCanConvert/qVariantValue was changed to canConvert/value with Qt 4 Note that if a conversion to Qt 5 will happen someday, this will have to be done since Qt 5 removes these deprecations. Juergen E. Fischer 2014-03-15 fix warnings Juergen E. Fischer 2014-03-15 fix deprecation annotation of QgsMapRenderer::mapRenderer Matthias Kuhn 2014-03-14 [spatialite] Update layer statistics after adding new columns Fix #8923 Piotr Pociask 2014-03-14 Fix #9780 Display line layers in Road Graph settings Larry Shaffer 2014-03-14 Add composer svg export label unit tests - Fix composer composition setup to near identical output of canvas->image (finally, expect for symbology, which still seems to be double-antialiased) - Rebuild control images for composer->image output Juergen E. Fischer 2014-03-14 expression: dump binary operations with brackets to break precedence (fixes #9783) Paolo 2014-03-14 More IT translation fixes Marco Hugentobler 2014-03-14 Fix sip binding for eventLayer function Marco Hugentobler 2014-03-14 GeometryAnalyzer: cache geometries in eventLayer function for better performance with 2.x versions Juergen E. Fischer 2014-03-14 german translation fix Juergen E. Fischer 2014-03-14 atlas: don't crash the coverage layer is removed (refs #9779) Marco Hugentobler 2014-03-14 Add OSTN02 info to srs.db. Kindly provided by Nicholas Duggan Werner Macho 2014-03-14 [TRANSUP] nb by James Signed-off-by: Werner Macho Paolo 2014-03-14 More IT translation fixes Paolo 2014-03-13 Minor fix to IT translation Bernhard Ströbl 2014-03-13 [FEATURE] (Processing) Eliminate with smallest polygon Paolo 2014-03-13 Minor fix to IT translation Merge: e5597e2 a3dc722 Werner Macho 2014-03-13 Merge pull request #1237 from simogeo/master translation and typo fixes Merge: 551648f ed5f778 alexbruy 2014-03-13 Merge pull request #1236 from aharfoot/master fix identation in Processing Dissolve tool (fix #9764) add polylines support Larry Shaffer 2014-03-12 Fix pinned labels highlight causing forward transformation error by using QgsRubberBand instead Larry Shaffer 2014-03-12 Fix label map tool crashes and rotation point calc Larry Shaffer 2014-03-12 Fix pinned labels highlight updating by taking labeling results prior to render completion signal simogeo 2014-03-12 translation and typo fixes Paolo 2014-03-12 Improved consistency in IT GUI translation Paolo 2014-03-12 Improved consistency in IT GUI translation unknown 2014-03-12 There is an indentation error in the Dissolve.py script that writes out the intermediate object on every merge with an input feature rather than just once at the end of the processing. This results in very large output file sizes. I have also edited the defineCharacteristics function to allow the tool input to accept polyline features as well as polygons, in line with the fTools UI. Matthias Kuhn 2014-03-11 Fix typo in options Matthias Kuhn 2014-03-11 More LongLong fixes Fix #9761 Juergen E. Fischer 2014-03-11 german translation update and translation string fixes Juergen E. Fischer 2014-03-11 german translation update Marco Hugentobler 2014-03-11 [FEATURE]: Replace value relation strings in GetFeatureInfo output. Move adding layers for joins and relations to a central place Marco Hugentobler 2014-03-10 [FEATURE]: Consider ValueMap in GetFeatureInfo Matthias Kuhn 2014-02-22 Add new CMake option: WITH_INTERNAL_HTTPLIB (default True) If set to False, you have to make sure that the httplib2 package is available on the target platform Fix #9618 Werner Macho 2014-03-10 [TRANSUP] nb by James Signed-off-by: Werner Macho Merge: 60e1a9b 073dbf1 Larry Shaffer 2014-03-10 Merge pull request #1230 from dakcarto/issue_9704_gdal-qsettings Fix #9704, GdalTools file dialogs return QPyNullVariant due to QSettings undefined return type ahuarte47 2014-03-02 #9686: fix simplification of no-closed polygons Nathan Woodrow 2014-03-10 Add missing Layer Definition in Layer menu Nathan Woodrow 2014-03-09 Add load and saving a Layer Definition file. Fix #9688 Marco Hugentobler 2014-03-09 Transform bbox in gml feature info also if geometry is not requested Marcel Dancak 2014-03-06 Mapserver: fixed inconsistencies int WMS GetFeatureInfo response Merge: 637359a 10ddb02 Werner Macho 2014-03-09 Merge pull request #1231 from Cracert/i18n [TRANSUP] pl Robert Szczepanek 2014-03-08 [TRANSUP] pl Larry Shaffer 2014-03-08 Fix #9704, GdalTools file dialogs return QPyNullVariant due to QSettings undefined return type Juergen E. Fischer 2014-03-08 add menu option to reset to ui defaults (implements #9746) Merge: a089cff 04f70240 Larry Shaffer 2014-03-07 Merge pull request #1219 from ahuarte47/Issue_9655-1 Fix bug #9655: some polygons not labelled when layer's simplification is on Merge: 9745dea 0e90729 alexbruy 2014-03-07 Merge pull request #1217 from nirvn/ftool_random_points_fix [ftools] fix random points tool not recognizing memory layer integer column (fix #9695) Juergen E. Fischer 2014-03-06 INSTALL: add note about installation of devscripts to get dch Larry Shaffer 2014-03-06 Add allowable mismatch per group/test for labeling tests Larry Shaffer 2014-03-06 Add allowable mismatch to debug output for render checker Larry Shaffer 2014-03-04 Condense labeling test class inheritance and set up local server params from map settings Larry Shaffer 2014-03-04 Convert label unit tests to using only QgsMapSettings - Rebuild all control images Larry Shaffer 2014-03-01 Refactor composer label test to work with svg, pdf and multi-resolution classes - Initial (untested) svg and pdf render-to-image setup Larry Shaffer 2014-03-01 Update label tests to ensure setup happens only once and load/delete only layer to test Larry Shaffer 2014-02-28 Add some functions to Python unit test utilities Larry Shaffer 2014-02-28 PEP8 cleanups for some unit test modules Juergen E. Fischer 2014-03-06 postgres provider: improve value quoting Marcel Dancak 2014-03-06 Mapserver: fixed inconsistencies int WMS GetFeatureInfo response Alvaro Huarte 2014-03-06 #9655: check geometry polygon better Larry Shaffer 2014-03-05 Possible cross-platform fix for app startup unit test Werner Macho 2014-03-05 [TRANSUP] nb by James Signed-off-by: Werner Macho Luigi Pirelli 2014-02-28 added saveStyle capability - Developed for ARPA Piemonte (Dipartimento Tematico Geologia e Dissesto) changed to use QgsSqliteHandle and added QMessageBox include reread value from style db managing utf8 decoding formatted with astyle.sh Werner Macho 2014-03-05 [TRANSUP] sl by Joze Signed-off-by: Werner Macho Merge: 8a9cc23 d59d191 Jürgen Fischer 2014-03-05 Merge pull request #1225 from rduivenvoorde/docurlfix no html in the url anymore Richard Duivenvoorde 2014-03-05 no html in the url anymore Merge: 08965ed 71c5396 Paolo Cavallini 2014-03-05 Merge pull request #1224 from ghtmtt/master small changes in italian translations ma7730 2014-03-05 small changes in italian translations Merge: 837642b 25241b8 Nathan Woodrow 2014-03-05 Merge pull request #1223 from nirvn/messagebar_auto_crs push a message bar informing user of crs applied to newly added layer missing a crs Mathieu Pellerin (nirvn) 2014-03-05 improve the message string and append friendly name (e.g. WGS84) Mathieu Pellerin (nirvn) 2014-03-05 push a message bar informing user of crs applied to newly added layer missing crs Merge: 2846857 99d030d Jürgen Fischer 2014-03-04 Merge pull request #1222 from nyalldawson/wms_layer_speed Cache result of checking whether axis should be inverted for wms layers Juergen E. Fischer 2014-03-04 remove more msvc deprecation pragmas Juergen E. Fischer 2014-03-04 add GUI_EXPORT and sip bindings to QgsExtentGroupBox, fix sip binding of QgsRasterLayerSaveAsDialog Marco Hugentobler 2014-03-04 [FEATURE]: Expressions in GetFeatureInfo output Marco Hugentobler 2014-03-04 WMS Server: show native type in GetProjectSettings Merge: 86ea4bf a7cb2b2 Nathan Woodrow 2014-03-05 Merge pull request #1208 from nirvn/expression_wordwrap3 [expression] implement a wordwrap function (fix #9412) Martin Dobias 2014-03-04 Fix #9698 (magnified SVG symbols with data-defined rotation) Marco Hugentobler 2014-03-04 More fixes to support embedded groups Martin Dobias 2014-03-04 Merged "save as" and "save selection as" actions - choice moved to the dialog Martin Dobias 2014-03-04 Use QgsExtentGroupBox also in raster Save as dialog Martin Dobias 2014-03-03 Fix #8898 (optional filter extent for vector save as) Nyall Dawson 2014-03-04 Cache result of checking whether axis should be inverted for wms layers. Greatly improves speed of connecting to wms layers when a wms server has many available layers. ahuarte47 2014-03-03 #9655: fix invalid polygons with buffer_0 Marco Hugentobler 2014-03-03 WMS server: fix groups from embedded files if embedded project uses custom drawing order Juergen E. Fischer 2014-03-03 followup aaf6b713: fix commit mixup!? Juergen E. Fischer 2014-03-03 wm(t)s json identify: allow geometryless feature info Merge: 2f2d6ac 02c0d58 Jürgen Fischer 2014-03-03 Merge pull request #1199 from simonsonc/cmake-cleanup-dups Remove duplicate entries from CMake build files Merge: bb7cd40 9c5c065 Jürgen Fischer 2014-03-03 Merge pull request #1120 from 3nids/pasteconvertgeom copy/paste: try to convert geometries (fixes #3604) Denis Rouzaud 2014-03-03 copy/paste: do not transform if layer has unknown geometry Denis Rouzaud 2014-03-03 do not convert multiline to multipolygon if one of the part failed, also consider case of 3 vertices line with first and last vertex identical Merge: 4a3ad4b 540685a Martin Dobias 2014-03-03 Merge pull request #1205 from ahuarte47/Issue_9485 Fix #9456 #9485: Line Offset in symbology generates artifacts Larry Shaffer 2014-03-01 Update qgis/qt/osg plugin Mac-bundled search paths - Ensure Qt plugins path is set before Qt references a plugin, e.g. before splash screen - Strip old Mac-native 'find bundle path' code for simple 'if it is there, use it' code based off of QCoreApplication::applicationDirPath() Juergen E. Fischer 2014-03-02 automatic otfr: * notify on message bar when CRS and OTFR kicks in (refs #9644) * don't automatically change settings of loaded projects Matthias Kuhn 2014-03-02 Populate attribute editor layout with default (Autogenerate) Fix #9668 Martin Dobias 2014-03-02 Fix #9683 (crash in add feature map tool) Matthias Kuhn 2014-03-02 [attrtable] Update filter count when filter is reset Fix #9681 Matthias Kuhn 2014-03-02 [attrtable] Fetch only necessary columns for expression filter Alexander Bruy 2014-03-02 minor cleanup in pluigns CMakeLists.txt Alexander Bruy 2014-03-02 allow to use custom QSettings for managing QgsOptionsDialog parameters. Useful for plugins and custom apps Juergen E. Fischer 2014-03-02 crssync: remove debugging output Juergen E. Fischer 2014-03-02 fix ab105599b Juergen E. Fischer 2014-03-02 german translation update Juergen E. Fischer 2014-02-27 wms provider: * support JSON for feature info * implement feature info for WMTS * cleanup metadata display Nyall Dawson 2014-03-01 Ensure draw line only inside polygon works correctly with multipolygon rings (fix #9624) Juergen E. Fischer 2014-02-28 german translation update Juergen E. Fischer 2014-02-28 tests: make compareWkt more tolerant towards whitespaces Werner Macho 2014-02-28 [TRANSUP] ko by BJ Signed-off-by: Werner Macho D'Hont René-Luc 2014-02-28 BUG #9674 WFS GetFeature Request does not return features The GetFeature Request does not return elements. The response of the request is valid but with a bbox : 0,0,0,0 and no features. The simple request : * SERVICE=WFS * VERSION=1.0.0 * REQUEST=GeTFeature * TYPENAME=* * OUTPUTFORMAT=* return no features. Martin Dobias 2014-02-28 Vector save as dialog: use one column layout (like raster save as) Denis Rouzaud 2014-02-28 added test for QgsGeometry::convertToType Denis Rouzaud 2014-01-22 copy/paste: try to convert geometries Martin Dobias 2014-02-28 Fix the issues with QTimer start/stop in different thread Marco Hugentobler 2014-02-28 Added Denis Rouzaud to authors list Martin Dobias 2014-02-28 Fix #9658 (crash with diagrams) Juergen E. Fischer 2014-02-27 replace deprecation pragmas with macro (followup 5134ef9a) Juergen E. Fischer 2014-02-27 wms provider: fix feature info (fixes #9630) Juergen E. Fischer 2014-02-27 move timer noise from message log to debug output Juergen E. Fischer 2014-02-27 FindQGIS.cmake: delimitedtextplugin moved to core - look for spatialqueryplugin Juergen E. Fischer 2014-02-27 wmts: show common upper levels in item name (relates to #9492) Larry Shaffer 2014-02-26 Update base labeling unit test class to work with QgsMapSettings Martin Dobias 2014-02-27 Fix #9670 (respect map background color in composer) ahuarte47 2014-02-27 #9655: fix invalid simplified geometries ahuarte47 2014-02-22 #9485: OffsetLine uses GEOSOffsetCurve (#if-#else-#endif) option ahuarte47 2014-02-21 #9485: OffsetLine uses GEOSOffsetCurve Juergen E. Fischer 2014-02-26 wms: allow image/jpgpng (fixes #9622) Juergen E. Fischer 2014-02-26 expression: and put blank in front of WHEN too (followup 1844d91) Juergen E. Fischer 2014-02-26 expressions: put black in front of ELSE (fixes #9666) Werner Macho 2014-02-26 [TRANSUP] nb by James Signed-off-by: Werner Macho Martin Dobias 2014-02-26 Fix #9665 (in memory raster not supported in raster calculator) Martin Dobias 2014-02-26 Fix #9661 (labels in composer rendered with wrong size) Juergen E. Fischer 2014-02-26 postgres provider: consider TIN and POLYHEDRALSURFACE as MULTIPOLYGONM (instead of POLYGONM) (fixes #9651) Martin Dobias 2014-02-26 Make rendering related debug messages us QgsDebugMsg Martin Dobias 2014-02-26 Fix crash upon exit in QgsMapToolCapture Radim Blazek 2014-02-26 line fill angle and direction, fixes #9647 Martin Dobias 2014-02-26 Fix #9648 (wrong scale in composer) Merge: 2d21b67 f66c461 Denis Rouzaud 2014-02-26 Merge pull request #1172 from leyan/multiple_snapping replace list of snapping markers with a single marker Mathieu Pellerin (nirvn) 2014-02-26 [ftools] fix random points tool not recognizing memory layer integer column (fix #9695) Larry Shaffer 2014-02-25 Ensure local server tests can run on ubuntu, followup to 7b2640d Larry Shaffer 2014-02-25 Add debian-based setup for local test server Larry Shaffer 2014-02-25 Fix opening test results in browser on Ubuntu Juergen E. Fischer 2014-02-26 fix license display Juergen E. Fischer 2014-02-25 wms provider: fix WMTS bounding box calculation for crs with inverted axis Juergen E. Fischer 2014-02-25 wms provider: fix status messages from data items Juergen E. Fischer 2014-02-25 refine removeLayer() wording Juergen E. Fischer 2014-02-25 make confirmation on layer deletion optional (fixes #9094) Juergen E. Fischer 2014-02-25 creatensis.pl: check md5sums Martin Dobias 2014-02-25 Fix #9643 (overview extent broken) Werner Macho 2014-02-25 [TRANSUP] adding pt_PT translator Signed-off-by: Werner Macho Merge: 48c1b57 76c3998 Jürgen Fischer 2014-02-25 Merge pull request #1216 from minorua/georef_bad_alloc [Georeferencer] fix bad allocation error Martin Dobias 2014-02-25 Do not refresh overview twice on a change Martin Dobias 2014-02-25 Fix #9642 (update overview even if map settings are not valid) Martin Dobias 2014-02-25 Fix #9396 (datum transform in save as dialog) Minoru Akagi 2014-02-25 [Georeferencer] fix bad allocation error Martin Dobias 2014-02-25 Fix #9641 (broken contrast enhancement) Merge: 881b1cc 9021b37 Denis Rouzaud 2014-02-25 Merge pull request #1128 from 3nids/removesnapsegment allow snapping to vertex and segment to remove part/ring Martin Dobias 2014-02-25 Added connection pool for SpatiaLite, improving rendering speed within one DB - refactored PostgreSQL connection pool into generic template classes - used the template classes for SpatiaLite connection pool - pooled SpatiaLite connections are opened with SQLITE3_OPEN_NOMUTEX flag to allow parallel access William Kyngesburye 2014-02-24 update lib paths for phonon_backends Larry Shaffer 2014-02-24 Fix 'geos_c.h not found' build error on Mac Juergen E. Fischer 2014-02-24 use native file selection in new shapefile dialog (implements #9637) Juergen E. Fischer 2014-02-24 * remove deprecated overloads QgsRasterLayer::lastError() and QgsRasterLayer::lastErrorTitle() * deprecate QgsRasterLayer::previewAsPixmap() (doesn't work in background threads) * QImage::fill( QColor ) does not exists prior to Qt 4.8 diff --git a/src/core/raster/qgsrasterlayerrenderer.h b/src/core/raster/qgsrasterlayerrenderer.h index 6ab4a49..40a27a2 100644 --- a/src/core/raster/qgsrasterlayerrenderer.h +++ b/src/core/raster/qgsrasterlayerrenderer.h @@ -8,7 +8,7 @@ class QPainter; class QgsMapToPixel; class QgsRasterLayer; class QgsRasterPipe; -class QgsRasterViewPort; +struct QgsRasterViewPort; class QgsRenderContext; class QgsRasterLayerRenderer : public QgsMapLayerRenderer Juergen E. Fischer 2014-02-24 don't open the identify dialog beforehand if 'Open feature form, if a single feature is identified' is active and there is only one result (fixes #9631) Etienne Tourigny 2014-02-24 add QgsRasterLayer::previewAsImage() for MTR rendering (see bug 9626) Juergen E. Fischer 2014-02-24 oracle provider: replace rownum=0 with 1=0 to retrieve columns (fixes #9633) Merge: 91ecc5f f7a47d5 Werner Macho 2014-02-24 Merge pull request #1214 from Cracert/i18n [TRANSUP] pl: help Juergen E. Fischer 2014-02-24 add 'warning' to the respective python message log tab Juergen E. Fischer 2014-02-24 include qgsmapsettings.h in install Juergen E. Fischer 2014-02-24 fix crash in network access manager (fixes #9626) Juergen E. Fischer 2014-02-24 german translation update Juergen E. Fischer 2014-02-24 fix some deprecation warnings Juergen E. Fischer 2014-02-23 network manager: restore proxy detection Juergen E. Fischer 2014-02-23 indentation update Juergen E. Fischer 2014-02-23 wms provider [hopefully fully adapted to merged threading] * store all given bounding boxes and if available choose the given bbox for the requested srid, otherwise pick one that transforms fin(it)e * remove unused mCoordinateTransform * wmts: show tile matrix size with warnings when the matrix is not large enough to cover the layer extents Juergen E. Fischer 2014-02-23 Include Giovanni in AUTHORS Juergen E. Fischer 2014-02-22 debian packaging fixes * enable globe on jessie * add dependency on libqt4-sql-sqlite to qgis-provider (fixes #8662) Martin Dobias 2014-02-23 Actual fix for the HAVE_TOUCH Martin Dobias 2014-02-23 Quick fix after MTR merge Merge: 5a4f8d0 f9e0093 Martin Dobias 2014-02-23 Merge remote-tracking branch 'origin/master' into threading-revival Conflicts: src/core/qgspallabeling.cpp src/core/qgsrenderchecker.h src/core/qgsvectorlayer.cpp src/core/symbology-ng/qgslinesymbollayerv2.cpp src/core/symbology-ng/qgssymbollayerv2.cpp src/providers/wms/qgswmsdataitems.cpp tests/src/core/testqgsblendmodes.cpp Matthias Kuhn 2014-02-23 [fTools] Spatial join aggregates: handle NULL values Robert Szczepanek 2014-02-22 [TRANSUP] pl: help Etienne Tourigny 2014-02-22 add files for raster histogram (Int16 and Float32) Larry Shaffer 2014-02-22 Define QGIS_MACAPP_BUNDLE in qgsconfig.h so resources can be found when QGIS_MACAPP_BUNDLE=0 Etienne Tourigny 2014-02-22 disable raster histogram test until rendering testing is improved (also this test depends on qwt version 5 vs. 6) Etienne Tourigny 2014-02-22 browser dock search: add normal syntax (with wildcards at begin and end) and case insensitive search, both default (implements #9493) Merge: 3f20928 a582a4d Werner Macho 2014-02-22 Merge pull request #1211 from SrNetoChan/master pt_PT GUI Translations Merge: 0dc0483 60bbc08 Werner Macho 2014-02-22 Merge pull request #1212 from Cracert/master [TRANSUP] pl: help Etienne Tourigny 2014-02-22 disable 'Draw as lines' option when raster layer does not contain int bands' Etienne Tourigny 2014-02-12 change histogram bar outline color from black to lightGray Etienne Tourigny 2014-02-12 allow to plot histogram as boxes with qwt5, using HistogramItem Etienne Tourigny 2014-02-12 implement updateLegend() in HistogramItem Etienne Tourigny 2014-02-12 add HistogramItem from qwt5 examples for use by histogram widget Etienne Tourigny 2014-02-03 draw histogram boxes for Int16/Int32 also Etienne Tourigny 2014-02-03 let the raster provider/interface calculate histogram bin count, and make sure there are no more bins than actual range (max-min) for Int16/32 bands Etienne Tourigny 2014-01-30 add option to draw value as boxes, not lines (currently only with qwt6 and Byte data) Juergen E. Fischer 2014-02-10 support wmts layers to browser (implements #9492) Juergen E. Fischer 2014-02-22 restore master spash screen Juergen E. Fischer 2014-02-22 avoid 'overwriting' readonly files (fixes #9617) Juergen E. Fischer 2014-02-22 fix Alvaro's email address (followup 14699030) Juergen E. Fischer 2014-02-22 include Alvaro Huarte in AUTHORS (and . => dot) Juergen E. Fischer 2014-02-22 Bump version to 2.3 Juergen E. Fischer 2014-02-22 release script: tag release and include prefix in tar ball Larry Shaffer 2014-02-21 Fix #9393, impossible to select 'regular' font style for labels - While ostensibly fixes the issue, there is still a flaw with QFontDatabase.styleString() returning generic style names Juergen E. Fischer 2014-02-22 fix PyQgsBlendModes test (followup da1ebc269) Larry Shaffer 2014-02-21 Update labeling unit tests control image and PAL_SUITE test suite generation Larry Shaffer 2014-02-21 Add label svg background unit tests and control images Larry Shaffer 2014-02-21 Fix #9057, offset value misplaced when exporting composer to image - Add unit test and control images Larry Shaffer 2014-02-21 Add svgSymbolsPath to Python unit test utilities (for defining paths without app instance) Juergen E. Fischer 2014-02-21 osgeo4w: always do a clean build Larry Shaffer 2014-02-21 Add labeling composer unit tests and control images - Initial support for image output at 72 dpi - Comparison against canvas output has slight shift (needs fixed) Larry Shaffer 2014-02-21 Update labeling canvas and server unit tests and output new control images Larry Shaffer 2014-02-21 Fix typo in renderchecker output Robert Szczepanek 2014-02-21 [TRANSUP] pl: help SrNetoChan 2014-02-21 pt_PT GUI Translations Werner Macho 2014-02-21 [TRANSUP] fi by Kari Signed-off-by: Werner Macho Merge: 3f5e883 7d8f151 Werner Macho 2014-02-21 Merge pull request #1209 from SrNetoChan/master pt_PT GUI translations by Nelson Silva Merge: 98401dc ddc0f87 mhugent 2014-02-21 Merge pull request #1210 from marcel-dancak/master Allow LIKE operator in QGIS mapserver's GetFeatureInfo FILTER parameter Marcel Dancak 2014-02-21 Allow LIKE operator in QGIS mapserver's GetFeatureInfo search request (FILTER parameter) Juergen E. Fischer 2014-02-21 raster calculator: exit on error (fix #5075) Alexander Bruy 2014-02-21 russian translation update Mathieu Pellerin (nirvn) 2014-02-20 [expression] check for maximum nb of arguments in wordwrap function Mathieu Pellerin (nirvn) 2014-02-18 [expression] fix function help following argument ordering shift Mathieu Pellerin (nirvn) 2014-02-18 [expression] made wordwrap delimiter string an optional 3rd argument Mathieu Pellerin (nirvn) 2014-02-17 [expression] rework the wordwrap to allow for maximum / minimum line length to wrap, fix test and add two more Mathieu Pellerin (nirvn) 2014-02-17 [expression] add wordwrap function help file Mathieu Pellerin (nirvn) 2014-02-17 [expression] more work on wordwrap function based on wonder-dk comments Mathieu Pellerin (nirvn) 2014-02-16 [expression] implement a wordwrap function (feature request #9412) Martin Dobias 2014-02-21 Change "added/deprecated in 2.1" notes to 2.4 for stuff related to threading Werner Macho 2014-02-21 [TRANSUP] da by Bo Signed-off-by: Werner Macho Paolo 2014-02-21 Minor improvements to IT translation, for consistency Merge: ba2b61c d6b0095 Jürgen Fischer 2014-02-21 Merge pull request #1203 from ahuarte47/Issue_9610 Displacement point: tolerance not saved in project (fixes #9610) Merge: da1ebc2 27dccee Werner Macho 2014-02-21 Merge pull request #1206 from Cracert/i18n [TRANSUP] pl Martin Dobias 2014-02-21 Comments and API improvements of simplification (no functional changes) - moved QgsVectorLayer::SimplifyHint enum to QgsVectorSimplifyMethod - use QFlags instead of int for hints - added few notes about simplification being added in 2.2 Robert Szczepanek 2014-02-20 [TRANSUP] pl Larry Shaffer 2014-02-20 Fix partial labels unit tests and generate new control images Larry Shaffer 2014-02-20 Add deleting server cache function to local test server Larry Shaffer 2014-02-20 Add timeout to GetMap for local test server Werner Macho 2014-02-21 [TRANSUP] ko by BJ Merge: a4d2767 7b11b76 Werner Macho 2014-02-21 Merge pull request #1204 from Jean-Roc/traduction_ui clean&update translators Jean-Roc Morreale 2014-02-20 update french translation Jean-Roc Morreale 2014-02-20 clean&update translators Juergen E. Fischer 2014-02-20 update changelog, add 2.2 api doc to doxygen and merge news updated compiled by Tim Alexandre Neto 2014-02-20 pt_PT GUI translations by Nelson Silva Alvaro Huarte 2014-02-20 #9610: save tolerance of displacement point Martin Dobias 2014-02-20 Show preview for "$area" in expr builder, make preview consistent with result Another partial fix for #9060 Werner Macho 2014-02-20 [TRANSUP] gl by Xan Signed-off-by: Werner Macho Werner Macho 2014-02-20 remove inactive translator Werner Macho 2014-02-20 [TRANSUP] fi by Kari Signed-off-by: Werner Macho Juergen E. Fischer 2014-02-20 add wms caching note to QgsRasterDataProvider::draw() Juergen E. Fischer 2014-02-20 vector layer: fix lazy extent calculation (fixes #9608; introduced in 500116bfe) Martin Dobias 2014-02-20 Added unit test to check correct outcome of axisInverted() ahuarte47 2014-01-15 #9060: fix bad ellipsoid selection from srs Merge: 35791aa 325697d mhugent 2014-02-20 Merge pull request #1201 from marcel-dancak/master Fixed bug #9584 Marcel Dancak 2014-02-20 fixed occurrence of gml:featureMember elements in GetFeatureInfo response in application/vnd.ogc.gml format ahuarte47 2014-01-04 #9060: fix unmanaged selection for NauticalMiles units Werner Macho 2014-02-20 [TRANSUP] nb by James Signed-off-by: Werner Macho Werner Macho 2014-02-20 [TRANSUP] lv by Peteris Signed-off-by: Werner Macho Merge: 4483300 45a95b1 Werner Macho 2014-02-20 Merge pull request #1200 from peterisb/master Latvian translation update Merge: 469f79b 4483300 peterisb 2014-02-20 Merge remote-tracking branch 'upstream/master' peterisb 2014-02-20 lv trans edits Juergen E. Fischer 2014-02-20 trim whitespaces in changelog Carl Simonson 2014-02-19 Remove duplicate entries from CMake build files Werner Macho 2014-02-20 [TRANSUP] da by Bo and es by carlos Signed-off-by: Werner Macho Merge: 7d263be 8155e38 Werner Macho 2014-02-20 Merge pull request #1198 from Cracert/i18n [TRANSUP] pl Larry Shaffer 2014-02-19 Add missing .qml to local server test Robert Szczepanek 2014-02-19 [TRANSUP] pl Juergen E. Fischer 2014-02-20 add release script Juergen E. Fischer 2014-02-20 indentation update Larry Shaffer 2014-02-19 Clean up local test server module and add more usage info Larry Shaffer 2014-02-19 Slightly larger default renderchecker image in html, and fix divide/0 issue if control image is missing Larry Shaffer 2014-02-19 Update tests to work with new test font functions in QgsFontUtils - Cleanup code style Larry Shaffer 2014-02-19 Add more standard test font functions to QgsFontUtils Larry Shaffer 2014-02-19 Move loading of test fonts to QgsFontUtils - Always add testdata.qrc to desktop and server, but only auto-load Roman and Bold if built in debug mode - Test fonts can now be loaded directly, after startup - Add sip binding and unit tests Larry Shaffer 2014-02-19 Add test-labeling master project and italic, bold-italic test fonts Larry Shaffer 2014-02-18 Update test font to Vera San and start workaround for Mac 10.9 font-loading bugs - Test font loading should be moved to QgsFontUtils Larry Shaffer 2014-02-18 Update existing tests to work with new test server Larry Shaffer 2014-02-18 Add getLocalServer and unit test for refactored local test server class Larry Shaffer 2014-02-17 Convert local test server over to controller of web and fcgi servers - Initially using lighttpd/spawn-fcgi Radim Blazek 2014-02-19 fixed composerrotationtest Werner Macho 2014-02-19 [TRANSUP] da by Jacob Signed-off-by: Werner Macho Marco Hugentobler 2014-02-19 Fix missing layers in GetCapabilities if only embedded groups are present Martin Dobias 2014-02-19 Fix incorrectly reported area in identify tool (partly fixes #9060) Occurred with projected layer CRS, non-projected map CRS, planimetric measuring. It was assumed that units of the measurement were in map CRS. Marco Hugentobler 2014-02-19 Fix layer order list in GetProjectSettings Marco Hugentobler 2014-02-19 Make a correct copy of QgsCoordinateTransform for labeling (hope it fixes #9600) Salvatore Larosa 2014-02-19 [pyqgis-console] prepared apis file update Werner Macho 2014-02-19 [TRANSUP] fixes in german language Signed-off-by: Werner Macho Merge: c277f46 63d84ec Jürgen Fischer 2014-02-19 Merge pull request #1195 from Oslandia/issue9599 Fix windows path escaping for QGIS_PLUGINPATH Werner Macho 2014-02-19 [TRANSUP] last string update Paolo 2014-02-19 Minor fix to IT translation Radim Blazek 2014-02-19 fixed blendmodes test and added to report Merge: 2b3e19d b8c6e01 Werner Macho 2014-02-19 Merge pull request #1194 from marcelosoaressouza/translation_pt_BR Finalizing translation (pt_BR) of QgsOptionsBase Radim Blazek 2014-02-19 disabled composermaptest grid anotations Radim Blazek 2014-02-19 updated single symbol rendererstest Merge: 406ff59 a1e23b1 Werner Macho 2014-02-19 Merge pull request #1196 from qgis-jp/for_pull update translation ja yoichigmf 2014-02-19 update translation ja Hugo Mercier 2014-02-19 Fix windows path escaping for QGIS_PLUGINPATH Marcelo Soares Souza 2014-02-19 Finalizing translation (pt_BR) of QgsOptionsBase Merge: 7822abd 4e7fa3a Werner Macho 2014-02-19 Merge pull request #1193 from qgis-jp/for_pull update Translation ja yoichigmf 2014-02-19 update Translation ja Radim Blazek 2014-02-19 composer legend items space, better fixes #9498 Marco Hugentobler 2014-02-19 Fix reverse layer order after embedding group Merge: 58202d0 ab929a8 peterisb 2014-02-19 lv trans edits Martin Dobias 2014-02-19 Fix debug messages Martin Dobias 2014-02-19 Fix #9360 (layer not rendered when simplify geometry is activated) Request's extent rectangle was being randomly overwritten as it was just reference to a temporary object! Merge: 10ce9f9 94658bf pcav 2014-02-19 Merge branch 'master' of github.com:qgis/QGIS pcav 2014-02-19 Minor edits to IT translation Denis Rouzaud 2014-02-19 more coherent fill ring icon (thanks Robert) Werner Macho 2014-02-19 [TRANSUP] es by carlos and small german fixes Signed-off-by: Werner Macho Merge: d754479 73d9784 Werner Macho 2014-02-19 Merge pull request #1190 from Cracert/i18n [TRANSUP] pl: QObject Robert Szczepanek 2014-02-18 [TRANSUP] pl: QObject Merge: 56ff646 0625dfa Werner Macho 2014-02-19 Merge pull request #1189 from tomass/master Lithuanian translation update Tomas 2014-02-18 Lithuanian translation update Radim Blazek 2014-02-18 wcs test made to pass Juergen E. Fischer 2014-02-18 third attempt to fix a simple typo Juergen E. Fischer 2014-02-18 dbmanager versioning: use lower case 'sql' language (fixes #9434) Juergen E. Fischer 2014-02-18 network manager: include QGIS version in user-agent string (related to #7361) Juergen E. Fischer 2014-02-18 fix second occurrency too (followup 580f3dc80; fixes #9593) Borys Jurgiel 2014-02-18 [Plugin Installer] More robust xml parsing: fix lonely ampersands. Fixes #9524 Juergen E. Fischer 2014-02-18 fix typo in french translation (fixes #9593) Juergen E. Fischer 2014-02-18 add scripts/dbdiff.sh to compare sqlite3 databases (defaults to srs.db) Werner Macho 2014-02-18 [TRANSUP] Adding pt_BR translator Signed-off-by: Werner Macho Marco Hugentobler 2014-02-18 Update srs.db with entries for BeTA2007.gsb (thanks to Robert Nuske) Juergen E. Fischer 2014-02-18 german translation update Juergen E. Fischer 2014-02-18 postgres provider: clear primary key for views (potentially fixes #9590) Merge: 43af9ea 6364f13 pcav 2014-02-18 Merge branch 'master' of github.com:qgis/QGIS pcav 2014-02-18 Minor improvements to IT translation Merge: 5e21c55 865ab28 Martin Dobias 2014-02-18 Merge pull request #1188 from 3nids/addpointleftclick only add point with left click Denis Rouzaud 2014-02-18 only add point with left click Matthias Kuhn 2014-02-18 [relations] Preview expression from relation reference field config dialog Fix #9538 Martin Dobias 2014-02-18 Re-enable geometry simplification while rendering Nathan Woodrow 2014-02-18 Faster listing of tables for MS SQL Merge: d4b1bb4 4e3738a Martin Dobias 2014-02-18 Merge branch 'master' into threading-revival Some features are still disabled - will be fixed later Conflicts: python/core/composer/qgscomposition.sip python/core/diagram/qgsdiagram.sip python/core/diagram/qgshistogramdiagram.sip python/core/diagram/qgspiediagram.sip python/core/diagram/qgstextdiagram.sip python/core/qgsdiagramrendererv2.sip python/core/qgsfield.sip python/core/qgslabelsearchtree.sip python/core/qgsmaprenderer.sip python/core/qgsrenderchecker.sip python/core/symbology-ng/qgssymbollayerv2.sip python/gui/qgsmapcanvas.sip src/app/composer/qgscomposerlegendwidget.cpp src/app/qgisapp.cpp src/core/composer/qgsatlascomposition.cpp src/core/composer/qgscomposerattributetable.cpp src/core/composer/qgscomposermap.cpp src/core/composer/qgscomposition.cpp src/core/composer/qgscomposition.h src/core/diagram/qgsdiagram.h src/core/diagram/qgshistogramdiagram.cpp src/core/diagram/qgshistogramdiagram.h src/core/diagram/qgspiediagram.cpp src/core/diagram/qgspiediagram.h src/core/diagram/qgstextdiagram.cpp src/core/diagram/qgstextdiagram.h src/core/qgsdiagramrendererv2.cpp src/core/qgsdiagramrendererv2.h src/core/qgsmaprenderer.cpp src/core/qgsmaprenderer.h src/core/qgsnetworkaccessmanager.h src/core/qgspallabeling.cpp src/core/qgsrenderchecker.h src/core/qgsvectorlayer.cpp src/core/qgsvectorlayer.h src/core/qgsvectorlayerfeatureiterator.cpp src/core/qgsvectorlayerfeatureiterator.h src/core/raster/qgsrasterlayer.cpp src/core/symbology-ng/qgscategorizedsymbolrendererv2.cpp src/core/symbology-ng/qgsgraduatedsymbolrendererv2.cpp src/core/symbology-ng/qgsmarkersymbollayerv2.cpp src/core/symbology-ng/qgssinglesymbolrendererv2.cpp src/core/symbology-ng/qgssymbollayerv2.cpp src/core/symbology-ng/qgssymbollayerv2.h src/core/symbology-ng/qgssymbolv2.cpp src/gui/qgshighlight.cpp src/gui/qgsmapcanvas.cpp src/gui/qgsmapcanvas.h src/gui/qgsmapcanvasitem.cpp src/gui/qgsmaptoolidentify.cpp src/plugins/georeferencer/qgsgeorefplugingui.cpp src/providers/memory/qgsmemoryfeatureiterator.cpp src/providers/ogr/qgsogrfeatureiterator.cpp src/providers/ogr/qgsogrfeatureiterator.h src/providers/ogr/qgsogrprovider.cpp src/providers/oracle/qgsoraclefeatureiterator.cpp src/providers/oracle/qgsoracleprovider.cpp src/providers/postgres/qgspostgresconn.cpp src/providers/postgres/qgspostgresfeatureiterator.cpp src/providers/postgres/qgspostgresfeatureiterator.h src/providers/wfs/qgswfsfeatureiterator.cpp src/providers/wms/qgswmsprovider.cpp src/providers/wms/qgswmsprovider.h src/ui/qgsoptionsbase.ui tests/src/core/CMakeLists.txt tests/src/core/testqgscomposereffects.cpp tests/src/core/testqgscomposerhtml.cpp tests/src/core/testqgscomposerscalebar.cpp tests/src/core/testqgscomposershapes.cpp Merge: 49fbfba f4f450f Martin Dobias 2014-02-18 Merge pull request #1186 from ahuarte47/Issue_9360R2 Bug #9360: Whole layer not rendered (when simplify geometry activated) Merge: fcf1119 0f58a10 Werner Macho 2014-02-18 Merge pull request #1187 from Cracert/i18n [TRANSUP] pl Robert Szczepanek 2014-02-17 [TRANSUP] pl Werner Macho 2014-02-18 [TRANSUP] es by Carlos, nl by Richard Signed-off-by: Werner Macho Werner Macho 2014-02-18 fixing typo in source ahuarte47 2014-02-17 #9360: More safely calculate the simplification transform factor Juergen E. Fischer 2014-02-17 geometry validation: don't consider touching lines as intersection (fixes #3851, fixes #7501, fixes #9580) Juergen E. Fischer 2014-02-17 network authentication: don't crash if a network request is closed while the credentials dialog is open (fixes #9379) Juergen E. Fischer 2014-02-17 osm: transform extents to EPSG:4326 (fixes #8709) Merge: e6e0614 45dc4a5 Werner Macho 2014-02-17 Merge pull request #1184 from marcelosoaressouza/translation_pt_BR Some translations (pt_BR) for Monday... Marco Hugentobler 2014-02-17 Fix crash if adding sublayers via plugin interface Marcelo Soares Souza 2014-02-17 Some translations (pt_BR) for Monday... Paolo 2014-02-17 IT translation completed Werner Macho 2014-02-17 [TRANSUP] da by Jacob, fi by Kari, lv by Peteris Signed-off-by: Werner Macho Werner Macho 2014-02-17 [TRANSUP] nb by James Werner Macho 2014-02-17 typo in description Merge: d31b595 d102a79 Nathan Woodrow 2014-02-17 Merge pull request #1180 from nirvn/legend_spacing_fix2 [composer] fix vertical spacing of hidden layer title in legend items (fix #9498) thomas 2012-06-01 5239_v1 Merge: 24b3ed1 337792b Werner Macho 2014-02-17 Merge pull request #1183 from Cracert/i18n [TRANSUP] pl: QObject Robert Szczepanek 2014-02-16 [TRANSUP] pl: QObject Juergen E. Fischer 2014-02-17 postgres provider: fix detection of character fields (related to #8481) Merge: 26f8be9 e0e5f71 Werner Macho 2014-02-17 Merge pull request #1182 from SrNetoChan/master [TRANSUP] pt_PT GUI Translations Alexandre Neto 2014-02-06 pt_PT GUI Translations PT_pt GUI Translation (QObject) PT_pt GUI Translations Borys Jurgiel 2014-02-16 [Plugin Manager] Fix window title update Juergen E. Fischer 2014-02-16 main: fix installation of qt translator Juergen E. Fischer 2014-02-16 network manager: support system proxy settings on windows (fixes #8600) Martin Dobias 2014-02-16 Fix #9520 (bbox filter doesn't work applied on a WFS datasource) Currently the bbox must have syntax bbox($geometry, geomFromWKT('...')) Mathieu Pellerin (nirvn) 2014-02-16 [composer] fix vertical spacing of hidden layer title in legend items (fix #9498) Werner Macho 2014-02-16 ² Signed-off-by: Werner Macho Merge: e91580f 9b651a5 Werner Macho 2014-02-16 Merge pull request #1179 from asiersarasua/master Basque translation update Merge: c809a82 60813ce Werner Macho 2014-02-16 Merge pull request #1178 from Cracert/i18n [TRANSUP] pl: QObject Merge: 0d304a2 2168cac Werner Macho 2014-02-16 Merge pull request #1177 from marcelosoaressouza/translation_pt_BR Some translations (pt_BR) for the weekend. Merge: be67e6a f094cf9 Werner Macho 2014-02-16 Merge pull request #1176 from tomass/master Lithuanian translation update Merge: 675746c 0ccaafb Gary Sherman 2014-02-15 Merge pull request #1174 from anitagraser/master added new splash for 2.2 asiersarasua 2014-02-15 Basque translation update Robert Szczepanek 2014-02-15 [TRANSUP] pl: QObject Juergen E. Fischer 2014-02-15 wms: use titles in layer name (fixes #4002) Juergen E. Fischer 2014-01-29 wmts: use title instead of identifier (fixes #9391) Marcelo Soares Souza 2014-02-15 Some translations (pt_BR) for the weekend. Martin Dobias 2014-02-15 Fix switched axes problem in WMS 1.3 with non-projected CRS Tomas 2014-02-15 Lithuanian translation update Alexander Bruy 2014-02-15 russian translation update Werner Macho 2014-02-15 [TRANSUP] hr by Zoran Signed-off-by: Werner Macho Werner Macho 2014-02-15 [TRANSUP] es(Carlos),hu(Zoltan),sv(Victor) Signed-off-by: Werner Macho Merge: 366daa7 cd4c4f9 Werner Macho 2014-02-15 Merge pull request #1175 from Cracert/i18n [TRANSUP] pl: QObject, Composer, GRASS, Memory Robert Szczepanek 2014-02-14 [TRANSUP] pl: QObject, Composer, GRASS, Memory Nyall Dawson 2014-02-15 [composer] Fix loading atlas settings from pre 2.2 projects (fix #9567) Juergen E. Fischer 2014-02-14 fix warnings anitagraser 2014-02-15 added new splash for 2.2 Larry Shaffer 2014-02-14 Fix 'geos_c.h not found' build error on Mac Martin Dobias 2014-02-14 Color ramp combo box: do not show "random colors" if gradients-only is on + added option to query whether gradients-only option is enabled Radim Blazek 2014-02-14 fixed backslash validator in OWS connection names Radim Blazek 2014-02-14 Reintroduced Google Mercator 900913 insert into tbl_srs (description, projection_acronym, ellipsoid_acronym, parameters, srid, auth_name, auth_id, is_geo, deprecated, noupdate) values ('Google Mercator','merc','WGS84','+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +over +no_defs',900913,'EPSG','900913',0,0,0); Radim Blazek 2014-02-14 WMS identify GML: clear bytearrya before encoding to utf8, fixes "invalid token" Leyan 2014-02-14 replace list of snapping markers with a single marker Matthias Kuhn 2014-02-14 VL properties/Fields: Remember folder of last used .ui Nyall Dawson 2014-02-14 Fix failing atlas test Nyall Dawson 2014-02-14 [composer] Better method of hiding atlas coverage layer (fix #9506) Martin Dobias 2014-02-14 Do not emit currentLayerChanged signal if the layer has not changed Martin Dobias 2014-02-14 Removed dead legend code pcav 2014-02-14 IT translation almost finished Merge: a81befc 2bd75b6 pcav 2014-02-14 Merge branch 'master' of github.com:qgis/QGIS Werner Macho 2014-02-14 [TRANSUP] big language update preparing release Signed-off-by: Werner Macho Merge: a7c33a3 54c88a5 Werner Macho 2014-02-14 Merge pull request #1170 from Cracert/i18n [TRANSUP] pl: Oracle, help Robert Szczepanek 2014-02-14 [TRANSUP] pl: Oracle, help Werner Macho 2014-02-14 [TRANSUP] fi by Kari Signed-off-by: Werner Macho Juergen E. Fischer 2014-02-13 geometry less features: update add feature tool in digitizing toolbar and icon in attribute table (fixes #8262) Juergen E. Fischer 2014-02-13 paste features: don't skip primary key fields, use default value if present, otherwise value of pasted feature (fixes #9489) Juergen E. Fischer 2014-02-13 merge attributes: new vector api can skip attributes - use default value for skipped field (fixes #5758) Merge: 40b4884 8c95eb6 Werner Macho 2014-02-13 Merge pull request #1169 from marcelosoaressouza/translation_pt_BR More updates on pt_BR translation Martin Dobias 2014-02-13 Fix #9088 (Text Annotation Symbols size is wrong in map composer) Marcelo Soares Souza 2014-02-13 More updates on pt_BR translation Nyall Dawson 2014-02-13 [composer] Set min number of pages for spin box, to prevent 0 page compositions Nyall Dawson 2014-02-13 [composer] Make zoom full action actually zoom to all items, not just page bounds Nyall Dawson 2014-02-13 [composer] Fix scrollbars in composer by correctly calculating scene bounds (fix #7691) Radim Blazek 2014-02-13 wms identify: report error if features types were guessed from GML but no features parsed Martin Dobias 2014-02-13 Fix #9551 (Impossible to see selection or current identify feature if using data defined colours) Radim Blazek 2014-02-13 identify results: use webview also for text/plain Radim Blazek 2014-02-13 show identify dialog before items are inserted so that they can adjust size according to dialog size also the first time dialog is opened Martin Dobias 2014-02-13 [processing] Fix Qt warnings when opening config dialog Merge: 59b62e2 c060164 Martin Dobias 2014-02-13 Merge remote-tracking branch 'slarosa/fix_9328' Merge: 549f5bc f90b3ed Werner Macho 2014-02-13 Merge pull request #1166 from marcelosoaressouza/master Updating the translation to Portuguese-Brazil (pt_BR) Merge: 57dd877 086f26b Werner Macho 2014-02-13 Merge pull request #1168 from Cracert/i18n [TRANSUP] pl: Oracle, Sponsors Robert Szczepanek 2014-02-12 [TRANSUP] pl: Oracle, Sponsors Juergen E. Fischer 2014-02-13 dbmanager: fix 'load as new layer' (fixes #9548) Radim Blazek 2014-02-12 Fixed GML parsing of GetFeatureInfo from GeoServer, fixes part of #9377 Salvatore Larosa 2014-02-12 [processing] fixes #9328: addressed: http://hub.qgis.org/issues/9328 Juergen E. Fischer 2014-02-12 dxf export: add extension (fixes #9544) Juergen E. Fischer 2014-02-12 styles: explictly save symbol XML in UTF-8 (fixes #9045) Juergen E. Fischer 2014-02-12 german translation update Radim Blazek 2014-02-12 identify resutlts dialog: always keep minimum QgsIdentifyResultsWebView height Juergen E. Fischer 2014-02-12 ogr provider: write numeric data in C locale (fixes #8332) Marcelo Soares Souza 2014-02-12 Updating the translation to Portuguese-Brazil (pt_BR) pcav 2014-02-12 Minor edits to IT translation Juergen E. Fischer 2014-02-12 * speed up undo of attribute added with field calculator (fixes #9509) * also improves performance of FilterFid requests in edit mode Martin Dobias 2014-02-12 Fix #8758 (graduated classes on expression broken) Merge: dc08947 33da846 Werner Macho 2014-02-12 Merge pull request #1164 from Cracert/i18n [TRANSUP] pl: CptCity, Split Robert Szczepanek 2014-02-11 [TRANSUP] pl: CptCity, Split Juergen E. Fischer 2014-02-12 osgeo4w: run filetype registration with elevated rights Juergen E. Fischer 2014-02-12 vector layer: fix attributeAdded signal don't assume new attributes are added at end, because in case of joins they are added after the provider fields and before the joined fields. field calculator: prepare expression again after attribute was added (fixes #9320) Juergen E. Fischer 2014-02-11 oracle provider: improve date/time support Werner Macho 2014-02-12 Update contributors.json added myself Martin Dobias 2014-02-11 Fix #9459 (layer fails to render when rule-based symbology make use of $atlasfeatureid) Paolo 2014-02-11 IT translation update peterisb 2014-02-11 lv translation Merge: 7e1c1b9 6b74fee Martin Dobias 2014-02-11 Fix #6995 (db manager's SQL window freezes with long query) Martin Dobias 2014-02-11 [db manager] Also removed completer.py file and its imports Werner Macho 2014-02-11 [TRANSUP] nb by James Signed-off-by: Werner Macho Alexander Bruy 2014-02-06 [db manager] use QScintilla for SQL window Martin Dobias 2014-02-11 Fix #9290 (crashes in symbology on fields with special characters) Fixes several crashes and problems with backwards compatibility. Before expressions were allowed, field names were loaded and saved unquoted, e.g. x.y - with introduction of expressions it was necessary to use properly quoted "x.y" name so that expression is correctly parsed. With these changes both options are possible and when possible, the unquoted field name is used for compatibility Merge: 9fd19a6 1a45003 Werner Macho 2014-02-11 Merge pull request #1161 from Cracert/i18n [TRANSUP] pl: function_help, DlgNumber, QgisApp Robert Szczepanek 2014-02-10 [TRANSUP] pl: function_help, DlgNumber, QgisApp Merge: 85f6fb8 959b05a Werner Macho 2014-02-11 Merge pull request #1160 from Jean-Roc/traduction_ui update fr ui Juergen E. Fischer 2014-02-11 postgres provider: convert M to Z geometries (fixes #9032) Jean-Roc Morreale 2014-02-10 update french translation Sylvain Maillard 2014-02-10 update french translation D'Hont René-Luc 2014-02-10 [DEBUG] #8795 Potential WFS filtering issue OpenLayers can't decode GetFeature response because QGS_NAMESPACE was not well formed Juergen E. Fischer 2014-02-10 debian packaging update Juergen E. Fischer 2014-02-10 wfs: catch end of selected features (fixes #8979) Merge: df0a443 e67eb4a Werner Macho 2014-02-10 Merge branch 'master' of https://github.com/qgis/QGIS Werner Macho 2014-02-10 [TRANSUP] da by Bo Signed-off-by: Werner Macho Marco Hugentobler 2014-02-10 Fix crash in dxf export in no-symbology mode Nyall Dawson 2014-02-10 [composer] Ensure correct mouse cursor is set after releasing pan/zoom shortcut keys Nyall Dawson 2014-02-10 [composer] Improve logic for pan shortcuts (fix #8957) Juergen E. Fischer 2014-02-10 geometry: add some null pointer checks (fixes #8433) Leyan 2014-01-27 store original proj4 representation of a CRS and use it to store a custom CRS Werner Macho 2014-02-10 [TRANSUP] da by Bo Signed-off-by: Werner Macho Werner Macho 2014-02-10 [TRANSUP] nb by James Signed-off-by: Werner Macho Martin Dobias 2014-02-10 Fix #8434 (join by spatial location locks up QGIS) By caching the features of the provider in the inner loop, there is a considerable speedup (compared to doing millions of queries) Martin Dobias 2014-02-10 Fix #9376 (crash when sorting attribute table with no attributes) Martin Dobias 2014-02-10 Code and warning cleanup Merge: 928613c 3a075a6 Martin Dobias 2014-02-10 Merge pull request #1157 from kiith-sa/master Fix #9213 ('bad_alloc' error at QGIS start) Merge: 8c9d336 7927c7e Werner Macho 2014-02-10 Merge pull request #1158 from Cracert/i18n [TRANSUP] pl: function_help Merge: 4aa8607 f70e403 Martin Dobias 2014-02-10 Merge pull request #1154 from slarosa/bbox_help_1 add help for bbox function Robert Szczepanek 2014-02-09 [TRANSUP] pl: function_help Werner Macho 2014-02-10 [TRANSUP] sv by Victor Signed-off-by: Werner Macho Merge: b05c93c 67154d1 Werner Macho 2014-02-10 Merge pull request #1156 from qgis-jp/for_pull update GUI translation ja Kiith-Sa 2014-02-10 Fix #9213 ('bad_alloc' error at QGIS start) yoichigmf 2014-02-10 update GUI translation ja Radim Blazek 2014-02-09 highlight made transparent for other layers again Sandro Santilli 2014-02-09 Fix type of "face_seed" layer in TopoViewer to-kr 2014-02-09 Fix for #8130 - WFS client: invalid columns after copy/paste. Salvatore Larosa 2014-02-09 add help for bbox function Radim Blazek 2014-02-09 sqrt symbol size for ScaleArea before scale to context units, fixes #8887 Martin Dobias 2014-02-09 Fix #8996 (Composer crashes QGIS when setComposition() method called) Merge: f712a79 ee59033 Werner Macho 2014-02-09 Merge pull request #1153 from tomass/master Lithuanian translation update Tomas 2014-02-09 Lithuanian translation update Juergen E. Fischer 2014-02-09 german translation update Merge: 3fdd180 155c769 Werner Macho 2014-02-09 Merge pull request #1152 from qgis-jp/for_pull update GUI translation JA Alexander Bruy 2014-02-09 russian translation update Juergen E. Fischer 2014-02-09 indentation update Juergen E. Fischer 2014-02-09 expressions: only quote when necessary (fixes tests; followup 915f5c1a) Yoichi Kayama 2014-02-09 update GUI translation JA Nyall Dawson 2014-02-09 [composer] Make sure attribute table updates correctly when used with an atlas driven map Nyall Dawson 2014-02-09 [composer] Fix calculation of world file parameters, make sure world file works correctly for atlas prints Martin Dobias 2014-02-09 Fix #8852 (crash when removing invalid postgres table from project) Merge: 8d5862c 41c49bd Werner Macho 2014-02-09 Merge pull request #1151 from Cracert/i18n [TRANSUP] pl: context_help Robert Szczepanek 2014-02-08 [TRANSUP] pl: context_help Nyall Dawson 2014-02-09 [composer] Set printer page orientation when composition page orientation changes (fix #3530) Nyall Dawson 2014-02-08 [composer] Remove uuid from item properties ui (fix #9497) Nyall Dawson 2014-02-08 Use case insensitive check for image filename extension (fix #9482) Juergen E. Fischer 2014-02-08 fix #9515 Juergen E. Fischer 2014-02-08 vector layer: save old attribute values where available to speedup undo (and rollback) (fixes #9509) field calculator & app: use wait cursor while calculating and committing or rolling back Juergen E. Fischer 2014-02-08 identify results: fix value map updates (fixes #8818) dual view: avoid empty undo commands vmora 2014-02-08 demonstrate bug in qgsexpression Sandro Santilli 2014-02-08 Pass extent of loaded views to the provider via URI Completes the speed up loading of view layers in TopoViewer. Finally and definitely fixes #9510. NOTE: the commit also adds a layer for face's MBR, which serves the purpose (among others) to allow for easy computing extent. Juergen E. Fischer 2014-02-08 vector layer: don't crash on missing labels in invalid layers la(fix #9514) Juergen E. Fischer 2014-02-08 expression: quote node column ref in dumps (fixes #9513) Juergen E. Fischer 2014-02-08 vector layer: calculate extents lazily (fixes #9510) Juergen E. Fischer 2014-02-08 map canvas: delay paint event 500ms on resize (fixes #2798) Sandro Santilli 2014-02-08 Pass wkbType and SRID of loaded views to the provider via URI Slighly speeds up loading of view layers in TopoViewer (#9510). Unfortunately there's no way to also pass in the Extent, so loading is still slow. Juergen E. Fischer 2014-02-08 postgres provider: speedup loading of layers by not verifing srid and geometry if given in the uri (fixes #9510) Juergen E. Fischer 2014-02-08 fix offset curve crash (fixes #9446) Sandro Santilli 2014-02-08 Fix loading of face layers after breaking it with 73b49867 Fix #9510 again Sandro Santilli 2014-02-08 Update TopoViewer style templates to 2.2.0 version Fix #9512 Martin Dobias 2014-02-08 Fix #9501 (expression crash when $geometry is used without a feature) Juergen E. Fischer 2014-02-08 enable geometry changing polygon tools only when 'change geometry' capability is available. OGR's postgresql driver apparently doesn't support geometry updates (fixes #9468) Juergen E. Fischer 2014-02-08 don't warn about missing translation for C locale Sandro Santilli 2014-02-08 Reword "Only look in the layer registries" option The wording was confusing in that real table scans can still be performed when the srid or type in the registries are found to be unconstrained. The real effect of the option is to _hide_ layers which are not in the registries. Fix #8730 Sandro Santilli 2014-02-08 Speed up topology loading When loading topology viewer on a PostGIS-2.0+ database, it includes type and srid typmod in the view layers, avoiding a full scan of the datasets. Fix #9510 Piotr Pociask 2014-02-08 [processing]Fix "float division by zero" in polygonize algorithm if no polygons were created. For shapely 1.2.16+ and GEOS 3.2+ unary_union will be used for noding lines - union method sometimes failed to create properly noded polyline. Merge: f06e72e 876e985 Werner Macho 2014-02-08 Merge pull request #1147 from Cracert/i18n [TRANSUP] pl: context_help Robert Szczepanek 2014-02-07 [TRANSUP] pl: context_help Juergen E. Fischer 2014-02-08 debian packaging fix Juergen E. Fischer 2014-02-07 also update links in translation files Juergen E. Fischer 2014-02-07 update qgis.org links Larry Shaffer 2014-02-07 Fix compile error Paolo 2014-02-07 IT translation Martin Dobias 2014-02-08 Fix #8584 (WFS requests with FILTER fails against Geoserver) Martin Dobias 2014-02-07 Fix #6146 (Offline editing tool broken) Adding of features back to remote database didn't work in case of primary keys being auto-generated. With the fix, if the user did not set any value (i.e. it is NULL), the value will be set to provider's default (and thus use the sequence generator) Paolo 2014-02-07 Added an IT translator Juergen E. Fischer 2014-02-07 debian packaging update (trusty) Alexander Bruy 2014-02-07 [processing] fix docstring Alexander Bruy 2014-02-07 rearrange radiobuttons to avoid horizontal scrolling Martin Dobias 2014-02-07 Fix #9445 (crash during histogram diagram creation) Denis Rouzaud 2014-02-07 remove label from standard option dialog template Merge: da8ca46 395fb5d Werner Macho 2014-02-07 Merge pull request #1145 from Cracert/i18n [TRANSUP] pl: QgsOgr, context_help D'Hont René-Luc 2014-02-07 [QGIS-Server][WCS] Add RESPONSE_CRS param Martin Dobias 2014-02-07 Fix #8864 (Random selection with subsampling broken) Nyall Dawson 2014-02-07 [composer] Fix item selection after pasting items Nyall Dawson 2014-02-07 [composer] Keep relative position of items when pasting (fix #8598) Martin Dobias 2014-02-07 Fix #9396 (deactivate datum transform dialog by default) Added a checkbox in Options > CRS > Default datum transformations to re-enable the dialog when desired Martin Dobias 2014-02-07 Fix #8174 (overlaps when using 'avoid intersections' functionality) + test I am not entirely confident if it will work perfectly with older versions of GEOS (< 3.3) because of the lack of unary union (that is emulated by series of unions of two geometries) Robert Szczepanek 2014-02-06 [TRANSUP] pl: QgsOgr, context_help Werner Macho 2014-02-06 [TRANSUP] nl by Richard Signed-off-by: Werner Macho Werner Macho 2014-02-06 [TRANSUP] fix typos Signed-off-by: Werner Macho Merge: ffcbdab 4bff0ed Werner Macho 2014-02-06 Merge pull request #1144 from Jean-Roc/traduction_ui update french translation Nyall Dawson 2014-02-06 [composer] Refresh control images following frame join stle change Nyall Dawson 2014-02-06 [composer] Fix stacking of items breaks after pasting items. Make sure pasted items are always placed in correct order on top of composition. Merge: ddec663 acf2c3f MORREALE Jean-Roc 2014-02-06 Merge pull request #11 from olivierdalang/od_french Corrections de français Merge: 267b960 84975bf Werner Macho 2014-02-06 Merge pull request #1143 from Cracert/i18n [TRANSUP] pl: WMS Robert Szczepanek 2014-02-06 [TRANSUP] pl: WMS Juergen E. Fischer 2014-02-06 fix doxygen warning Juergen E. Fischer 2014-02-06 memory provider: add more native types (fixes #9371) Juergen E. Fischer 2014-02-06 postgres provider: fix saving of multigeometries to tables without geometry_columns entry Juergen E. Fischer 2014-02-05 debian packaging update Merge: 6178860 4b9e181 Giuseppe Sucameli 2014-02-05 Merge pull request #1129 from etiennesky/gdaltools_fixes2 gdaltools: use GDAL python bindings to get raster SRS and extent (fix #9460) Werner Macho 2014-02-05 [TRANSUP] small fix in german translation Signed-off-by: Werner Macho olivierdalang 2014-02-05 faute de majuscule olivierdalang 2014-02-01 faute de grammaire olivierdalang 2013-01-22 translation update Marco Hugentobler 2014-02-05 Update srs.db Werner Macho 2014-02-05 [TRANSUP] added telugu language on request Signed-off-by: Werner Macho Nyall Dawson 2014-02-05 [composer] Standardise capitalization on all controls Nyall Dawson 2014-02-05 [composer] Fix graphical corruption with map grid frames Nyall Dawson 2014-02-05 [composer] Fix qt disconnect warnings Nyall Dawson 2014-02-05 [composer] Use miter joins for item frames (partial fix for #9479) Nyall Dawson 2014-02-05 [composer] Follow up 78ecef6, fix setting line width in scalebars Merge: 03f2ec9 48c91a4 Werner Macho 2014-02-05 Merge pull request #1142 from Cracert/i18n [TRANSUP] pl: QgsOracle cont. Alexander Bruy 2014-02-05 new icon for Fill Ring tool. Thanks, Robert! Robert Szczepanek 2014-02-05 [TRANSUP] pl: QgsOracle cont. Werner Macho 2014-02-04 [TRANSUP] es by Carlos Signed-off-by: Werner Macho Merge: 10947f7 b6f2a92 Denis Rouzaud 2014-02-04 Merge pull request #1125 from ahuarte47/Issue_9454 Fix bug #9454: MapNodeTool unnecessarily refresh the map Nyall Dawson 2014-02-04 [composer] Increase number of decimal places for grid intervals and offset (fix #8828) Nyall Dawson 2014-02-04 [composer] Draw mouse handles and item bounds outside of item's frames, so that snapping occurs to edge of item frame (fix #8943) Merge: 9ddfdd8 f7116f6 Werner Macho 2014-02-03 Merge pull request #1141 from Cracert/i18n [TRANSUP] pl: QgsOracle Robert Szczepanek 2014-02-04 [TRANSUP] pl: QgsOracle Merge: 97cd120 da4c429 Paolo 2014-02-03 Merge branch 'master' of github.com:qgis/QGIS Paolo 2014-02-03 Updated IT translation Sandro Santilli 2014-02-03 Fix query to detect postgis topology availability. Closes #9453 Marco Hugentobler 2014-02-03 Fix for dxf label export Merge: f9861f8 30f7c4f Werner Macho 2014-02-03 Merge pull request #1139 from Cracert/i18n [TRANSUP] pl: DlgAutofill Denis Rouzaud 2014-02-03 revert 7a9e682 and 983b1c9 Robert Szczepanek 2014-02-02 [TRANSUP] pl: DlgAutofill Salvatore Larosa 2014-02-02 add checkbox in db conn dialog in order to keep the window open after adding a table Denis Rouzaud 2014-02-02 fix #9430 followup 7a9e682 Werner Macho 2014-02-02 [TRANSUP] sv by Victor Signed-off-by: Werner Macho Alexander Bruy 2014-02-02 russian translation update Merge: 9ba28b3 c859938 Werner Macho 2014-02-02 Merge pull request #1137 from Cracert/i18n [TRANSUP] pl: QObject, qgsDatum Robert Szczepanek 2014-02-02 [TRANSUP] pl: QObject, qgsDatum Nyall Dawson 2014-02-01 [composer] Ensure url is correctly loaded for html items on project load (fix #9374) Nyall Dawson 2014-02-01 [composer] Set initial background colour on map items to canvas background color (fix #3811) Merge: 041244d b6c1991 Werner Macho 2014-02-01 Merge pull request #1135 from Cracert/i18n [TRANSUP] pl Nyall Dawson 2014-02-01 [composer] Disable snapping when item is rotated for now (not yet implemented) Nyall Dawson 2014-01-30 [composer] Fix snapping during item resize incorrectly snapping to mouse cursor rather then item boundary (fix #9443) Robert Szczepanek 2014-01-31 [TRANSUP] pl Alvaro Huarte 2014-01-29 #9454: avoid unnecessarily refresh the map Werner Macho 2014-01-31 [TRANSUP] danish with new translator added Signed-off-by: Werner Macho Alexia Mondot 2014-01-31 fixes bugs about processing evolution Alexia Mondot 2014-01-17 Update OTB processing modules Alexia Mondot 2014-01-31 import removed to fix bugs Denis Rouzaud 2014-01-31 prevent snapping to non-geometric layers (was leading to multiple logs: Transform error caught inverse transform of ...) Werner Macho 2014-01-31 delete viminfo from news Signed-off-by: Werner Macho Werner Macho 2014-01-31 [TRANSUP] nb by James Signed-off-by: Werner Macho Marco Hugentobler 2014-01-31 Dxf export: fix linestyle export for simple line Alexia Mondot 2014-01-17 add ParameterMultipleExternalInput parameter type Merge: d050b0a db1192f Jürgen Fischer 2014-01-31 Merge pull request #1131 from ahuarte47/Issue_8725R-ST_SnapToGrid Fix bug #8725R: replace ST_Simplify by ST_SnapToGrid to avoid collapsed geometries by postgis Merge: e4f410b 414d59c Werner Macho 2014-01-30 Merge pull request #1132 from Cracert/i18n [TRANSUP] pl: qgsComposer Robert Szczepanek 2014-01-30 [TRANSUP] pl: qgsComposer ahuarte47 2014-01-31 #8725R: Replace ST_Simplify by ST_SnapToGrid Matthias Kuhn 2014-01-30 [ftools] S'part to M'part with non-string columns and NULL values Fix #8625 Werner Macho 2014-01-30 [TRANSUP] es by Carlos Signed-off-by: Werner Macho Matthias Kuhn 2014-01-30 [attrtable] No checks when the model is not based on a request Huge speedup Fix #9315 Matthias Kuhn 2014-01-30 [attrtable] Only update table at the end of an edit command Fix #9315 Juergen E. Fischer 2014-01-30 fix QgsGeometry::moveVertex on polygon (fixes #9442) Marco Hugentobler 2014-01-30 Fix for hiding deprecated datum transforms Marco Hugentobler 2014-01-30 Fix inversion of rotation parameters for epgs datum transformation method 9607 Etienne Tourigny 2014-01-30 use python API to get raster extent, instead of relying on gdalinfo Etienne Tourigny 2014-01-30 use python API to get raster SRS, instead of relying on gdalinfo Denis Rouzaud 2014-01-30 allow snapping to vertex and segment to remove part/ring Nyall Dawson 2014-01-30 Fix failing PyQgsBlendModes test Nyall Dawson 2014-01-30 [composer] Add some anomoly images for scale bar tests Nyall Dawson 2014-01-30 [composer] Fix incorrect calculation of map bounds when a map is switched to atlas control after atlas preview is enabled Nyall Dawson 2014-01-30 [composer] Set the expression context for labels created while atlas preview is enabled (fix #9457) Nyall Dawson 2014-01-30 [composer] Snap items to page edge, not page outlines or shadow (fix #9455) Radim Blazek 2014-01-30 set objectName on QMenu/QAction in C++ core plugins, fixes partially #9134 Marco Hugentobler 2014-01-30 Show NTv2 in datum transform dialog tooltip and do case insensitive filename compare on win Marco Hugentobler 2014-01-30 Fix apply null grid shift for source projection string Denis Rouzaud 2014-01-30 missing action for add part Merge: 12256f1 e150ab1 Werner Macho 2014-01-29 Merge pull request #1126 from Cracert/i18n [TRANSUP] pl: qgsVectorLayer, QgsRelation Robert Szczepanek 2014-01-29 [TRANSUP] pl: qgsVectorLayer, QgsRelation Werner Macho 2014-01-29 [TRANSUP] greek by Thodoris Signed-off-by: Werner Macho Matthias Kuhn 2014-01-29 [attrtable] Don't update sort column cache when unaffected Fix #9424 Juergen E. Fischer 2014-01-29 * fix QgsGeometry::moveVertex for multipolygons() * add test for QgsGeometry::addPart() * remove expectedFailure decoration from PyQgsGeometry.testSimplifyIssue4189 * modify move and translate tests by 1,1 to 1,2 Etienne Tourigny 2014-01-29 fix gdaltools getRasterSRS() and use gdalsrsinfo with gdal >= 1.9 Juergen E. Fischer 2014-01-29 postgres provider: don't look for topology layers without topology support (fixes #9453) Radim Blazek 2014-01-29 identify reprojected raster: use 1x1 pixel context in layer crs to get reasonable search tolerance for WMS GetFeatureInfo, fixes #5896 Merge: 0b882d0 8c47c0e Werner Macho 2014-01-29 Merge pull request #1122 from Cracert/i18n [TRANSUP] pl: WidgetGradient, QgsRel Merge: ec7718b b1aa21d Werner Macho 2014-01-29 Merge pull request #1123 from Jean-Roc/traduction_ui update fr ui MORREALE Jean-Roc 2014-01-29 update fr ui Martin Dobias 2014-01-29 Second part of fix for #9196 (WMTS) If WMTS capabilities do not include a bounding box, try to detect it from tileset matrix information (instead of using conservative assumption that the layer spans the whole world: -180,-90 - 180,90 in WGS84) Martin Dobias 2014-01-29 Partial fix for #9196 - better handling of bounding boxes of WMS layers Do not use WGS84 bounding box for all layers - instead use either bounding box as declared in capabilities document for requested CRS, or make best effort to get bounding box from WGS84 bounding box. Denis Rouzaud 2014-01-29 fix #9430: do not enable copy to layer if nothing to copy Robert Szczepanek 2014-01-28 [TRANSUP] pl: WidgetGradient, QgsRel Merge: 2dabba4 6cd0fa1 mhugent 2014-01-28 Merge pull request #1104 from leyan/projectCRS Consistent management of project CRS properties in project file Etienne Tourigny 2014-01-28 gdaltools batch operations: only update progress when there are input files to process Etienne Tourigny 2014-01-28 gdaltools warp: overwrite existing files when not in batch mode Werner Macho 2014-01-28 [TRANSUP] filename change to bring it closer to webpage and documentation Signed-off-by: Werner Macho Radim Blazek 2014-01-28 Add scale method to data defined size label, related to #8887 Denis Rouzaud 2014-01-28 #9441 add 1 segment line part to multiline layer Merge: ff9c76a 8500e80 Werner Macho 2014-01-28 Merge pull request #1121 from zjankovic/master Refreshed CRO translation Zoran 2014-01-28 Refreshed CRO translation Merge: 6c3f2ed 7df74ae Werner Macho 2014-01-28 Merge pull request #1119 from Cracert/i18n [TRANSUP] pl: ScriptEditor, SettingsDialogPython, Widget.. Nyall Dawson 2014-01-28 [composer] Standardise capitalisation Nyall Dawson 2014-01-27 [composer] Update default toolbar positions Robert Szczepanek 2014-01-27 [TRANSUP] pl: ScriptEditor, SettingsDialogPython, Widget.. Juergen E. Fischer 2014-01-28 sip fixes Juergen E. Fischer 2014-01-27 german translation update and translation string fix Paolo 2014-01-27 Update of IT GUI translation - thanks Stefano Campus Merge: 7b21c72 a8463aa Werner Macho 2014-01-27 Merge pull request #1117 from asiersarasua/master Basque translation update asiersarasua 2014-01-27 Basque translation update Nathan Woodrow 2014-01-27 Fix windows build Nathan Woodrow 2014-01-27 Dump CASE correctly in QgsExpression::dump() Nathan Woodrow 2014-01-23 Drop margins on expression builder olivierdalang 2014-01-26 [composer] fixed composer legends inappropriately connected to the first composer map item on creation from XML olivierdalang 2014-01-26 [composer] ComposerLegend update all now only applies to referenced map's layers (in case they are locked) (fix #7177) Werner Macho 2014-01-27 Typo fix, thanx to Carlos Signed-off-by: Werner Macho Juergen E. Fischer 2014-01-27 sip documentation fix Juergen E. Fischer 2014-01-27 update sip bindings II Merge: af1bdf6 41dd3d6 Werner Macho 2014-01-26 Merge pull request #1115 from Cracert/i18n [TRANSUP] pl Robert Szczepanek 2014-01-27 [TRANSUP] pl Merge: d4e3694 624ef2f Nathan Woodrow 2014-01-26 Merge pull request #1114 from ahuarte47/Issue_9429 Fix bug #9429: no validate featureIds using all feature collection ahuarte47 2014-01-27 #9429: no validate featureIds using all feature collection Juergen E. Fischer 2014-01-26 update sip bindings Radim Blazek 2014-01-26 Fixed point pattern fill usedAttributes(), fixes #7736 Alexander Bruy 2014-01-26 russian translation update Radim Blazek 2014-01-26 render missing SVG symbol (?) if SVG file does not exist Radim Blazek 2014-01-26 Support SVG relative paths in SVG cache to enable relative data defined paths. Fixes #8883 Merge: 16773ae c27d499 Werner Macho 2014-01-26 Merge pull request #1111 from Cracert/i18n [TRANSUP] pl: plugin manager, options Werner Macho 2014-01-26 [TRANSUP] es by carlos, hu by Zoltan, nl by Raymond and Richard Signed-off-by: Werner Macho Juergen E. Fischer 2014-01-25 make sure the symbology-ng db can be copied in qgis_stylev2test Juergen E. Fischer 2014-01-25 debian packaging fix Giuseppe Sucameli 2014-01-22 remove leading dir separator from symbol path when it's relative, SLD: remove file schema from OnlineResource tag's path Juergen E. Fischer 2014-01-25 use qIsNaN to test for NaNs Juergen E. Fischer 2014-01-25 update CODING, regenerate t2t, include CODING.html Juergen E. Fischer 2014-01-25 fix doxygen warnings Juergen E. Fischer 2014-01-25 fix QgsGeometry::asMultiPoint() (followup 6bbd17c2; fixes #9423) Robert Szczepanek 2014-01-24 [TRANSUP] pl: plugin manager, options Larry Shaffer 2014-01-24 Fix globe plugin crash at launch on Mac Juergen E. Fischer 2014-01-25 postgres provider: don't try to detect geometry type or srid, if it's already known (fixes #9421) Juergen E. Fischer 2014-01-24 fix windows build Tim Sutton 2014-01-24 Added jenkins run script Radim Blazek 2014-01-24 fixed horizontal and vertical marker line fill using maximum markers interval, fixes partially #8975 Merge: 95c3c6f ef001fd mhugent 2014-01-24 Merge pull request #1110 from mwa/dev_labeling_from_sld Read labeling from SLD Radim Blazek 2014-01-24 removed color/width from line pattern fill symbol layer widget, fixes partially #8975 Mathias Walker 2014-01-24 read labeling from SLD Merge: 6ca57f9 37efe91 Jürgen Fischer 2014-01-24 Merge pull request #1108 from Oslandia/remove_dead_code_in_qgssinglesymbolrendererv2 remove dead code in qgssinglesymbolrendererv2 Werner Macho 2014-01-24 [TRANSUP] nb by James Signed-off-by: Werner Macho Radim Blazek 2014-01-24 fix line pattern fill misalignements, fixes #8974 Juergen E. Fischer 2014-01-24 fix duplicate translation in several translation files Juergen E. Fischer 2014-01-24 fix build with internal spatialite (followup 0d2c564cf; fixes #9417) Juergen E. Fischer 2014-01-24 fix deleteVertex for POLYGON and MULTILINESTRING Merge: c3f4bef fb08949 volaya 2014-01-24 Merge pull request #992 from fsdias/master Fix Relative_distribution_(distance_covariate).rsx Juergen E. Fischer 2014-01-24 fix nightly build and cppcheck in qwtpolar-0.1 (followup 0d2c564c) vmora 2014-01-24 remove dead code in qgssinglesymbolrendererv2 Werner Macho 2014-01-24 [TRANSUP] fr by JRM, gl by Xan and pl by Robert Signed-off-by: Werner Macho Merge: 524788b 393071f Werner Macho 2014-01-23 Merge pull request #1103 from Jean-Roc/traduction_ui update french translation Merge: a78a003 d5ef0c5 Werner Macho 2014-01-23 Merge pull request #1107 from Cracert/i18n [TRANSUP] pl Robert Szczepanek 2014-01-23 [TRANSUP] pl Juergen E. Fischer 2014-01-24 fix windows build (fixes #9416) Juergen E. Fischer 2014-01-23 german translation update Juergen E. Fischer 2014-01-23 fix mersenne-twister warnings Juergen E. Fischer 2014-01-23 QgsGeometry refactoring: * rework wkb parsing using Qgs(Const)WkbPtr * replaces pointer dereferencing with memcpy * should work on platform that don't allow unaligned accesses * "fix" adjacentVertices() for invalid inputs * improved support for MULTIPOINT * fixes insertion of first vertex into linestrings * fixes inserting into multipolygons Juergen E. Fischer 2014-01-23 fix source path stripping in debug messages Juergen E. Fischer 2014-01-21 add QgsDistanceArea tests and enhance QgsGeometry tests a bit (in preparation for a QgsGeometry wkb update) Juergen E. Fischer 2014-01-21 implement more cppcheck suggestions Juergen E. Fischer 2014-01-21 fix QGis::featureType output Merge: db7cddf f9c5ee0 Larry Shaffer 2014-01-23 Merge pull request #1091 from 3nids/uioptionbase2 dialog base: separator and dialog title as argument to init/restore Marco Hugentobler 2014-01-23 Dxf export: fix copy paste bug Marco Hugentobler 2013-07-11 [FEATURE:] Add point sample class to analysis library Marco Hugentobler 2013-07-10 Add qgstransectsample.sip Marco Hugentobler 2013-07-09 [FEATURE]: class for random transect sampling in analysis lib Merge: 0536cfa b0474d6 Tim Sutton 2014-01-23 Merge pull request #1102 from ahuarte47/Issue_8725R-ST_Simplify2 Fix bug #8725R: no check simplification topology for point geometries in postgis provider Merge: 810773a 31c9333 mhugent 2014-01-23 Merge pull request #1105 from mwa/fix_expression_from_ogc_filter Fix empty expression when reading from OGC filter Mathias Walker 2014-01-23 fix empty expression when reading from OGC filter Leyan 2014-01-23 create the CRS project properties during the project creation Leyan 2014-01-23 group CRS project property updates in the same place Leyan 2014-01-23 update ProjectCrs property in the project file MORREALE Jean-Roc 2014-01-23 update fr ui correct typos Alvaro Huarte 2014-01-23 #8725R: no check simplification topology for point geometries Merge: 5d02020 d5ea0b0 MORREALE Jean-Roc 2014-01-23 Merge pull request #10 from mdouchin/traduction_mdouchin French translation update Juergen E. Fischer 2014-01-23 cleanup 3568fe7 Merge: 3568fe7 80b44a7 Jürgen Fischer 2014-01-23 Merge pull request #1083 from Oslandia/fix_max_on_joined_fields fix bug in max value on joined fields Merge: 467f978 c7ccdc9 Martin Dobias 2014-01-23 Merge pull request #1075 from Oslandia/expressions_in_symbol_rotation_and_scale_for_pr [FEATURE] allow for expressions in symbol rotation and scale Merge: 8b53001 7fca30b Werner Macho 2014-01-22 Merge pull request #1101 from Cracert/i18n [TRANSUP] pl: Globe, expr.editor Merge: 49a807a 2baf403 Tim Sutton 2014-01-22 Merge pull request #1099 from ahuarte47/Issue_8725R-ST_simplify Fix bug #8725R: fix collapsed geometries by ST_simplify function of postgis Robert Szczepanek 2014-01-23 [TRANSUP] pl: Globe, expr.editor Juergen E. Fischer 2014-01-23 fix build with GDAL <=1.9 Nyall Dawson 2014-01-23 [composer] Paste in place should put items in page which cursor is over (fix #9244) Etienne Tourigny 2014-01-22 warn user when trying to add sqlite connection to browser and a connection with sae name already exists (#9404) Alvaro Huarte 2014-01-22 #8725R: fix invalid LineStrings Michael Douchin 2014-01-22 French translation update Merge: 5c1fed5 4077084 Werner Macho 2014-01-22 Merge pull request #1100 from jonnyforestGIS/master [TRANSUP] pt_PT Nathan Woodrow 2014-01-22 Add saving of recent expressions. Fix #6091 João Gaspar 2014-01-22 [TRANSUP] pt_PT adding some translations Alvaro Huarte 2014-01-22 #8725R: fix collapsed polygons by ST_simplify in postgis Alvaro Huarte 2014-01-22 #87525R: refactoring and minor changes Merge: f2d0100 f79dfa1 Jürgen Fischer 2014-01-22 Merge pull request #1087 from ahuarte47/Issue_9360R Fix bug #9360-revival: fix whole layer not rendered (when simplify geometry activated; followup 3305a6c; fixes #9360) Merge: 52d114f 031596c Tim Sutton 2014-01-22 Merge pull request #1094 from ahuarte47/Issue_8725R-maxscale Feature #8725R: support for maximum scale at which the layer should be simplified Nyall Dawson 2014-01-22 [composer] Use better cross hairs cursor Merge: e2b1e33 d61e6da Werner Macho 2014-01-21 Merge pull request #1097 from Cracert/i18n [TRANSUP] pl: Composer, DXF, previous mistake (tnx Werner) Werner Macho 2014-01-22 [TRANSUP] nl by Richard Signed-off-by: Werner Macho Nyall Dawson 2014-01-22 [composer] Don't default to showing grid when opening 2.0 projects Nyall Dawson 2014-01-22 [composer] Switch to select tool after pasting items (fix #8958) Nyall Dawson 2014-01-22 [composer] Always evaluate label expressions (fix #9342) Robert Szczepanek 2014-01-21 [TRANSUP] pl: Composer, DXF, previous mistake (tnx Werner) Merge: 1cd307c ebae947 Werner Macho 2014-01-21 Merge pull request #1095 from Cracert/i18n [TRANSUP] pl: Atlas, Composer Merge: 061dcce 03d1e2b Paolo 2014-01-21 Merge branch 'master' of github.com:qgis/QGIS Paolo 2014-01-21 First update of IT GUI translation Nyall Dawson 2014-01-21 [composer] Use crosshairs cursor when drawing new items Alvaro Huarte 2014-01-21 #9360R: enable ogr simplification for GDAL-OGR >= 1.11 Werner Macho 2014-01-21 [TRANSUP] es by carlos Signed-off-by: Werner Macho Marco Hugentobler 2014-01-21 Consider scale based visibility in dxf export. Const correctness for maplayer accessors Nyall Dawson 2014-01-20 [FEATURE] Add option for simple line symbols to be drawn only inside a polygon. Allows for creation of "national geographic" style borders on maps where a thick border does not overlap into neighbouring polygons. Larry Shaffer 2014-01-20 Ensure binaries run through install_name_tool are user-writable during bundling on Mac Robert Szczepanek 2014-01-20 [TRANSUP] pl: Atlas, Composer ahuarte47 2014-01-21 #8725R: define simplifyDrawingCanbeApplied better ahuarte47 2014-01-21 #8725R: add maximum scale at which the layer should be simplified Merge: 7cb79c4 b440367 Tim Sutton 2014-01-20 Merge pull request #1093 from ahuarte47/Issue_8725R-UIpoints Feature #8725R: hide simplification rendering tab for point layers ahuarte47 2014-01-20 #8725R: remove rendering panel for points layer Juergen E. Fischer 2014-01-20 debian packaging update Denis Rouzaud 2014-01-20 feature action: fix crash at launch Juergen E. Fischer 2014-01-20 wms provider: also include SCALE parameter for UMN mapserver (followup 7e17a841) Alvaro Huarte 2014-01-20 #9360R: disable ogr simplification while OGR_G_SetPoints does not exist Martin Dobias 2014-01-20 Reintroduce geometry caching while rendering (used esp. for snapping) Nyall Dawson 2014-01-19 Add QgsMapLayerAction and QgsMapLayerActionRegistry, which can be used as a generic api for registering actions which can apply to a specific map layer or layer type. Create a QgsMapLayerAction for setting features as the current atlas feature for compositions. This work was kindly sponsored by SIGE (www.sige.ch). Werner Macho 2014-01-20 [TRANSUP] no by james and dk by Jacob Signed-off-by: Werner Macho Denis Rouzaud 2014-01-20 dialog base: separator and dialog title as argument to init/restore Martin Dobias 2014-01-20 Server adjustments (allow usage from build dir, new API) Merge: 9209ef6 5162889 Werner Macho 2014-01-19 Merge pull request #1090 from Cracert/i18n [TRANSUP] pl Robert Szczepanek 2014-01-19 [TRANSUP] pl Borys Jurgiel 2014-01-20 [Plugin Manager] Fix ui layout Borys Jurgiel 2014-01-20 [Plugin Manager] Fix window title issues after recent changes in QgsOptionsDialogBase ahuarte47 2014-01-19 #9360R: enable ogr simplification on provider side only cpp ahuarte47 2014-01-19 #9360R: mix CPP/C code - experimental Alexander Bruy 2014-01-18 add myself to translators, russian translation update Merge: 06b1fbc 1eaefaa Werner Macho 2014-01-19 Merge pull request #1088 from Cracert/i18n [TRANSUP] pl: simple update Robert Szczepanek 2014-01-18 [TRANSUP] pl: simple update ahuarte47 2014-01-19 #9360R: remove ogr_geometry.h ahuarte47 2014-01-19 #9360R: fix bad ogr simplification Juergen E. Fischer 2014-01-18 german translation update Juergen E. Fischer 2014-01-18 debian packaging update Juergen E. Fischer 2014-01-18 update sip some bindings Juergen E. Fischer 2014-01-18 fix typos, indentation and some warnings Merge: bf814c2 b7612f2 Larry Shaffer 2014-01-18 Merge pull request #1082 from 3nids/uioptionbase UI: dialog base: add current category to dialog title if in icon only mode Juergen E. Fischer 2014-01-18 indentation update Juergen E. Fischer 2014-01-18 fix warnings Juergen E. Fischer 2014-01-18 ogr geometry simplifier: - stick to C API - enable simplification only with GDAL >=1.9 Juergen E. Fischer 2014-01-18 debian packaging update: reenable globe plugin on debian unstable Larry Shaffer 2014-01-17 Fix FindQScintilla module for non-standard install locations Juergen E. Fischer 2014-01-17 wms-c: don't crash if tile matrix set isn't available anymore (fixes #9361) Radim Blazek 2014-01-17 use line pattern fill symbol layer line symbol for fill instead of for outline Marco Hugentobler 2014-01-17 Use new unit conversion function to calculate dxf line width Juergen E. Fischer 2014-01-17 german translation update Marco Hugentobler 2014-01-17 Dxf export: fix order in multiline labels Marco Hugentobler 2014-01-17 Fix dxf label size calculation Marco Hugentobler 2014-01-17 Split multiline labels for dxf export Marco Hugentobler 2014-01-15 Set text color and show label boxes for debugging Marco Hugentobler 2014-01-14 Export labels to dxf Merge: 8c9f41c 47d253e mhugent 2014-01-17 Merge pull request #1056 from ahuarte47/Issue_9060_B [Feature]: Centralize conversion units in one unique function Merge: 71360c3 cc13f9d Jürgen Fischer 2014-01-17 Merge pull request #1086 from ahuarte47/Issue_9360 fix bug whole layer not rendered (when simplify geometry activated; fixes #9360) Alvaro Huarte 2014-01-17 #9360: fix bug simplification when transform is activated Werner Macho 2014-01-17 [TRANSUP] Prepare ts files for new Release Juergen E. Fischer 2014-01-17 followup f33c4904d3b: add Q_DECL_DEPRECATED and sip annotation to hasCrsTransformEnabled signal Martin Dobias 2014-01-17 Oracle provider: added featureSource() support Martin Dobias 2014-01-17 Allow Qt to search for Qt plugins (e.g. sqldrivers) in our plugin directory Without this it is necessary to explicitly provide QT_PLUGIN_PATH environment variable for Qt plugins we build (e.g. Oracle DB sql driver) Merge: 2e9d3a8 f4315d7 Werner Macho 2014-01-17 Merge pull request #1085 from tomass/master Lithuanian translation update Juergen E. Fischer 2014-01-17 CRS axis inversion retrieval update: - back to OGRGetAxis() as OSREPSGTreatsAsNorthingEasting() was introduced with GDAL 1.10 (fixes builds with earlier GDALs; related to #9345) - keep using OSRImportFromEPSGA() as that's what retrieves the axis orientation (but only for EPSG codes) Denis Rouzaud 2014-01-16 UI: dialog base: add current category to dialog title Tomas 2014-01-17 Lithuanian translation update Merge: 2db44a5 2af29d1 Jürgen Fischer 2014-01-16 Merge pull request #1081 from ahuarte47/Issue_9345 Bug #9345: fix calculation of axis ordering of CRS Radim Blazek 2014-01-16 identified features highlight clip on zoom out fix Radim Blazek 2014-01-16 signal hasCrsTransformEnabled() renamed to hasCrsTransformEnabledChanged() vmora 2014-01-16 fix bug in max value on joined fields Martin Dobias 2014-01-16 WCS provider: use a download handler (like WMS) vmora 2014-01-16 fixed toSld() & replaced "" by QString Martin Dobias 2014-01-16 Resolved handling of WMS requests in worker threads Merge: 5310040 03a7125 Denis Rouzaud 2014-01-15 Merge pull request #1079 from 3nids/uioptionbase UI: remove top labels, use collapsible groupboxes, and other small improvements Denis Rouzaud 2014-01-15 UI: remove top labels, use collapsible groupboxes, and other small improvements Juergen E. Fischer 2014-01-16 add header installation of simplify methods ahuarte47 2014-01-16 #9345: fix axis invert calculation vmora 2014-01-16 fixed bug in rotation & removed xml encode/decode Nyall Dawson 2014-01-16 Fix warning Radim Blazek 2014-01-15 Set raster no data color back to 0,0,0,0 and overwrite that in raster drawer only for PDF output. Fixes #9101 and #9343 Marco Hugentobler 2014-01-15 Bugfixes for dxf export Denis Rouzaud 2014-01-15 DB Manager: remove text under icons Denis Rouzaud 2014-01-15 followup 4502592: use QgsCollapsibleGroupBox Martin Dobias 2014-01-15 Moved WMS capabilities, URI parsing out of provider class. With this change, all WMS capabilities are kept within one class. When the provider is cloned, the existing capabilities object is passed to new provider, thus not requiring new provider download capabilities again. Data items and GUI dialog do not have to create a dummy provider just in order to get capabilities. Denis Rouzaud 2014-01-15 make icons more consistent in relation editor widget Matthias Kuhn 2014-01-15 Fix warnings Alvaro Huarte 2014-01-15 #8725-R: minor changes ahuarte47 2014-01-15 #8725-R: minor changes and UI update + add comment about 'prepareSimplification' in constructor + fix comment in 'providerCanSimplify' + improve UI messages Alvaro Huarte 2014-01-14 #8275-R: simplification on a per-iterator basis ahuarte47 2014-01-13 #8725-R: no check geometry pointer twice ahuarte47 2014-01-13 #8725-R: no check 0-pointers to delete ahuarte47 2014-01-11 #8725-R: simplify edited geometries in QgsVectorLayerFeatureIterator Alvaro Huarte 2014-01-08 #8725-R: refactoring of simplification API in FeatureIterators Alvaro Huarte 2014-01-07 #8725-R: fix old API in other test cpp files Alvaro Huarte 2014-01-07 #8725-R: fix old API in testqgsblendmodes.cpp Alvaro Huarte 2014-01-07 #8725-R: add "Advanced settings" panel ahuarte47 2014-01-06 #8725-R: include qgsvectorsimplifymethod.sip ahuarte47 2013-12-28 #8725-R: never simplifying the first two or last two vertices in a line This ensure that the angles at the line start and end are the same after simplification ahuarte47 2013-12-28 #8725-R: no simplify point layers in postgres provider ahuarte47 2013-12-28 #8725-R: New vector provider capability for topological simplification Alvaro Huarte 2013-12-27 #8725-R: PostgresProvider simplifies on provider side PostgresFeatureIterator implements simplification on provider side ahuarte47 2013-12-27 #8725-R: OgrProvider simplifies on provider side OgrFeatureIterator implements simplification on provider side ahuarte47 2013-12-27 #8725-R: FeatureIterator and other minor changes ahuarte47 2013-12-24 #8725-R: move VectorSimplifyMethod to other file ahuarte47 2013-12-24 #8725-R: FeatureIterator use SimplifyMethod AbstractFeatureIterator use SimplifyMethod to simplify locally the geometries fetched from data source (provider) ahuarte47 2013-12-24 #8725-R: VectorLayer use SimplifyMethod VectorLayer define QgsVectorSimplifyMethod to configure the new QgsSimplifyMethod member of QgsFeatureRequest ahuarte47 2013-12-24 #8725-R: define QgsSimplifyMethod Define QgsSimplifyMethod to use as optional parameter in QgsFeatureRequest Alvaro Huarte 2013-12-20 #8725-R: simplifier execute in rendering loop Alvaro Huarte 2013-12-18 #8725-R: show map2pixel threshold in panels ahuarte47 2013-12-18 #8725-R: define UseRenderingOptimization Redefine RenderingPrintComposition to UseRenderingOptimization Denis Rouzaud 2014-01-15 credentials: give focus to password if a user is given Merge: 4502592 34809e1 Nyall Dawson 2014-01-15 Merge pull request #1078 from 3nids/uiatlas lighter UI for atlas composer Denis Rouzaud 2014-01-15 UI: splitter for the query builder dialog Denis Rouzaud 2014-01-15 remove outline of items in list widget when they have focus Merge: 89a774a 0f8a99e Jürgen Fischer 2014-01-15 Merge pull request #1049 from lynxlynxlynx/master Two build fixes for Arch Denis Rouzaud 2014-01-15 lighter UI for atlas composer Denis Rouzaud 2014-01-15 add splitters to raster calc dialog, use QgsCollapsibleGroupBox to save collpased state Denis Rouzaud 2014-01-15 fix warning Nyall Dawson 2014-01-15 Fix hue/saturation changes for rasters causing debug noise when raster contains transparent pixels Joshua Arnott 2014-01-14 Fixed bug in the processing toolbox qgis:intersection tool, preventing attempts at writing the wrong geometry type to a shapefile. Tomas 2014-01-14 Lithuanian translation update ahuarte47 2014-01-05 #9060: Enable degrees as valid DisplayUnit in QgsOptions dialog ahuarte47 2014-01-05 #9060: use QGis::fromUnitToUnitFactor in QgsGrassGisLib ahuarte47 2014-01-05 #9060: use QGis::fromUnitToUnitFactor in QgsDecorationScaleBar ahuarte47 2014-01-04 #9060: use QGis::fromUnitToUnitFactor in QgsComposerScaleBar ahuarte47 2014-01-04 #9060: use QGis::fromUnitToUnitFactor in QgsDistanceArea in ahuarte47 2014-01-04 #9060: use QGis::fromUnitToUnitFactor in QgsDxfExport in ahuarte47 2014-01-04 #9060: use QGis::fromUnitToUnitFactor in QgsWmsProvider in ahuarte47 2014-01-04 #9060: define global unit conversor vmora 2014-01-14 changed std::auto_ptr for QScopedPointer vmora 2014-01-14 allow for expressions in symbol rotation and scale the single, graduated and categorised symbol renderers have been refactored to avoid use of raw pointers (auto_ptr are used instead, they are deprecated in c++11 but the change for unique_ptr is an easy one and they clearly state the design intend: exclusive ownership) 2 general use function to quote and unquote strings for/from xml have been added to qgis.h Denis Rouzaud 2014-01-14 fix warning Tim Sutton 2014-01-14 CODING Small typo fix in coding doc Merge: 27f5b8d 8edd6a4 Denis Rouzaud 2014-01-14 Merge pull request #1073 from 3nids/expressiondialogsplitter expression builder: add splitters and change buttons Denis Rouzaud 2014-01-14 expression builder: add splitters and change buttons respect HIG Merge: 2cdc896 6bb9dfe Nyall Dawson 2014-01-14 Merge pull request #1072 from nyalldawson/atlas_multimap3 [FEATURE][composer] Allow for more than one atlas controlled map in comp... Nyall Dawson 2014-01-14 [FEATURE][composer] Allow for more than one atlas controlled map in compositions (or none), by moving some atlas properties to map items (fix #9248) (fix #6484) Martin Dobias 2014-01-14 Make insertVertex/moveVertex/deleteVertex work without cache Werner Macho 2014-01-14 [TRANSUP] Arabic by Hosham, added new translator Signed-off-by: Werner Macho Matthias Kuhn 2014-01-13 Simplified 173e1d7 Matthias Kuhn 2014-01-13 Fix warning Matthias Kuhn 2014-01-13 [attrtable] Force default selection color (regardless of window focus) Fix #8205 Martin Dobias 2014-01-13 Fixed point displacement renderer (and made it faster) Tim Sutton 2014-01-13 Further tweak to pull request docs. Martin Dobias 2014-01-13 delimitedtext: add support for featureSource() Tim Sutton 2014-01-13 Added a little more debug info so show which projects were found and which default was used. Tim Sutton 2014-01-13 Added notes on merging pull requests based on Matthias's message in mailing list. Juergen E. Fischer 2014-01-13 german translation update Martin Dobias 2014-01-13 Fix issue with combination of edit buffer + vector join Martin Dobias 2014-01-13 delimitedtext: move methods specific to feature iterator from provider to FI Radim Blazek 2014-01-12 highlight identified feature using real feature shape Juergen E. Fischer 2014-01-12 avoid saving OGR layer to the very same OGR layer (fixes #9221) Juergen E. Fischer 2014-01-12 fix warnings Merge: 8990b66 183dd8e Nyall Dawson 2014-01-12 Merge pull request #1046 from ahuarte47/Issue_9254 Bug #9254: fix point-style with "outline width" = 0 still show the outline Marco Hugentobler 2014-01-12 WMS server: even more performant png8 conversion Marco Hugentobler 2014-01-12 wms server: call getStyles from getStyle elpaso 2014-01-09 GetStyles: changed layers list from mapLayerFromTypeName to mapLayerFomStyle elpaso 2014-01-09 Fix #9314 Martin Dobias 2014-01-11 GPX: added support for featureSource() Martin Dobias 2014-01-11 GRASS provider updated to support featureSource() Martin Dobias 2014-01-09 GRASS raster: remove superfluous QProcess instances Martin Dobias 2014-01-09 WCS: quick and dirty way to get it working Martin Dobias 2014-01-08 WFS: added featureSource() - now it is possible to do rendering Martin Dobias 2014-01-08 WMS provider fixes for multi-threading This is still far from working nicely or being finished: - cloned provider does not get capabilities copied over, so they are requested again (for each redraw!) - legend graphic download is disabled for now, was causing crashes while resizing window / manipulating docks - tiled requests probably do not work Martin Dobias 2014-01-06 Change the expiration timeout to one minute. Martin Dobias 2014-01-06 Added connection pool for postgres Martin Dobias 2014-01-06 Cleanup rendering jobs in the main thread (fixes a crash in sequential job) vmora 2014-01-03 set droplists if parameter values are already set as a result you can set some parameters in checkBeforeOpeningParametersDialog and they will be the default in the interface. This is especially usefull when your algo as a lot of parameters that you can gues (eg from layer names) Jaka Kranjc 2014-01-02 PyQt4Macros.cmake: also check for a prefixed version of pyuic4 fixes the lookup on Arch, which has python pointing to python3 Jaka Kranjc 2014-01-02 cmake: also look for qwtpolar in the qwt include dir ahuarte47 2014-01-01 #9254: define overloaded wellKnownMarkerFromSld function in sip in sip ahuarte47 2013-12-30 #9254: use Q_DECL_DEPRECATED in wellKnownMarkerXXX functions XXX ahuarte47 2013-12-30 #9254: avoid break compatibility with the 2.0 api ahuarte47 2013-12-30 #9254: prevent compiler warnings ahuarte47 2013-12-30 #9254: Support for OutlineStyle in SLD files ahuarte47 2013-12-30 #9254: QgsSimpleMarkerSymbolLayerV2 use OutlineStyle ahuarte47 2013-12-30 #9254: QgsEllipseSymbolLayerV2 use OutlineStyle Martin Dobias 2013-12-11 Optionally draw little rendering stats (switch on/off with S key) Martin Dobias 2013-12-11 User-configurable update interval Martin Dobias 2013-12-11 Fix unit tests - QgsFeature owns QgsFields (otherwise the assigned QgsFields may get deleted) - updated QgsRenderChecker to use map settings + map renderer job - fixed DPI issue in map renderer to map settings conversion - fixed vector layer cache (failing file operations) There are still few tests that keep failing compared to master branch, but the reason for failure are tiny pixel diffs and we should probably just update the expected images. Martin Dobias 2013-12-10 Update to qgis_bench: use renderer job, allow parallel mode, print other time Martin Dobias 2013-12-10 Invalidate cached image when layer's data or appearance is modified Martin Dobias 2013-12-09 Options: remove legacy rendering options, add parallel rendering Martin Dobias 2013-12-09 Bring back render caching Martin Dobias 2013-12-06 Sync works now between QgsMapRenderer and QgsMapCanvas Martin Dobias 2013-12-06 Various fixes to make it compile on Windows Martin Dobias 2013-12-05 Enable Python in background threads. Fixed drawing of plugin layers. Martin Dobias 2013-12-05 Update Python bindings to match changes in core/gui libraries. Martin Dobias 2013-12-05 Added sync between QgsMapCanvas settings and (legacy) QgsMapRenderer (untested) Martin Dobias 2013-12-04 Restored reading/writing of canvas map settings Martin Dobias 2013-12-04 Draw labeling also in parallel map renderer job Martin Dobias 2013-12-03 Updated memory provider to support feature source (untested yet) Martin Dobias 2013-12-03 Made QgsSpatialIndex implicitly shared class. As a bonus, spatial index is a bit faster (10%) as we do not use random eviction buffer anymore (which makes sense only when using disk storage manager). Added basic tests for spatial index Martin Dobias 2013-12-03 Introduction of concept of feature sources for vector data. Feature sources of providers/layers should act as immutable snapshots of the state of provider or layer, not being affected by any concurrent changes to provider or layer while the source is in use. Currently working just with OGR, Postgres, SpatiaLite providers. Martin Dobias 2013-11-27 Do not block functionality when canvas is drawing, respect frozen/render on flag. Because the rendering is asynchronous, it is not necessary to block user input anymore Martin Dobias 2013-11-27 Remove processEvents() calls that are not necessary anymore Martin Dobias 2013-11-26 Fixed handling of map updates Previously there was a problem that if user panned too quickly, the map item could get completely out of the view of the graphics view and no new paint events would be created for some time. Martin Dobias 2013-11-26 Reporting of rendering errors, safer isActive() for custom painter job Martin Dobias 2013-11-25 Implementation of parallel rendering job (work in progress) More changes: - few improvements to map renderer job API - added basic unit test for map renderer job - map canvas uses P key to switch parallel/sequential rendering Martin Dobias 2013-11-22 Initial support for rendering of rasters Martin Dobias 2013-11-20 Revived labeling and diagrams for vector layers Martin Dobias 2013-11-20 Do not keep pointer to vector layer in vector layer feature iterator. This will make the iterator safe to changes in vector layer while the iterator is still active. Martin Dobias 2013-11-20 Do the rendering of map layers within special classes This is an important change: new class (QgsMapLayerRenderer) is introduced and it keeps all information from layer which is necessary for rendering. Thanks to that, any changes to map layer will have no impact on rendering that may be currently underway: if the user changes renderer, rendering will not crash because it is using a different instance. Work in progress: only vector layers, no labeling, no diagrams, iterator still uses some bits from QgsVectorLayer. Another change: QgsFeatureRendererV2, QgsSymbolV2 do not get access to QgsVectorLayer - only to fields they need. Point displacement renderer did more extensive use of QgsVectorLayer - currently it is not functional. fsdias 2013-11-19 Create Advanced_raster_histogram.rsx Martin Dobias 2013-11-18 Stop using QgsMapLayer's setCacheImage() That caching mechanism is too coarse - it is expected that there is only one map renderer. Instead, caching would need to be done on higher level, e.g. in QgsMapCanvas Martin Dobias 2013-11-18 Allow cancellation of PAL labeling computation Martin Dobias 2013-11-15 Do map rendering inside of QgsMapCanvas QgsMapCanvasMap is now just a simple map canvas item storing an image, all rendering logic has been moved to QgsMapCanvas. Restored functionality of map decorations and cancellation of rendering. When map is going to be refreshed, the old rendered map stays visible for a small amount of time (scaled) and then it is replaced by the new map. Martin Dobias 2013-11-14 Refactoring of QgsPalLabeling The idea was not to expose the labeling engine instance used for rendering to other parts of the application and keep it as an implementation detail within renderer jobs. Resulting placement is kept in a newly created class QgsLabelingResults which is passed from the renderer job's labeling engine to map canvas where it is available for map tools. Global labeling settings are now kept only in QgsProject (there is no instance of QgsPalLabeling which would stay alive all the time). Martin Dobias 2013-11-14 Restore advanced layer effects, labeling in composer. Also fixes DpiY setting in composer + workaround for QPicture DPI issues Martin Dobias 2013-11-13 Removed use of QgsMapRenderer::rendererContext() Deprecated QImage/QPixmap switch in QgsMapCanvas Martin Dobias 2013-11-13 Introduce flags for boolean settings in map settings. Also revived drawEditingInformation setting in render context Martin Dobias 2013-11-13 Simplified map rendering configuration. - scene and painter DPI are always the same - raster scale factor is always 1 - scale factor always means pixels per milimeter - no need to force of custom-computed scale - no "output units" - map settings always use pixels as units The logic used previously was getting too complex: - scene DPI vs painter DPI - enforcing custom scale in composer - unclear logic behind scale factor and raster scale factor settings This is resolved by doing composer-specific tweaks inside composer: - set map cache image's DPI (to get correct scale) - scale printer's painter to switch from mm to pixels (dots) Martin Dobias 2013-11-13 Conversion of composer to use map renderer job fsdias 2013-11-12 Update Relative_distribution_(distance_covariate).rsx Martin Dobias 2013-11-11 Made labeling working without QgsMapRenderer (using QgsMapSettings) Martin Dobias 2013-11-11 More changes to use QgsMapSettings instead of QgsMapRenderer Martin Dobias 2013-11-11 Update QgsTolerance to use QgsMapSettings instead of QgsMapRenderer Martin Dobias 2013-11-11 Deprecated several map canvas signals related to rendering Martin Dobias 2013-11-11 Removed stop rendering button, deprecated QgsMapTool::renderComplete Martin Dobias 2013-11-11 Handling of selection color in QgsMapSettings Martin Dobias 2013-11-06 Map canvas uses renderer to QImage, fix for jumping image after pan Martin Dobias 2013-11-06 Updated overview to use rendering jobs, fixed cancellation Martin Dobias 2013-11-06 Implementation of sequential rendering to QImage Martin Dobias 2013-11-01 Remove mDrawing from canvas - it is now transparent to the user Martin Dobias 2013-11-01 Moving canvas away from QgsMapRenderer, now with OTF projections working Martin Dobias 2013-11-01 Marked few drawing progress reporting signals as deprecated Martin Dobias 2013-11-01 Map canvas has its QgsMapSettings, moving away from QgsMapRenderer Martin Dobias 2013-10-31 Added utility functions to QgsMapSettings Martin Dobias 2013-10-31 Removed QgsMapRendererV2 again in favour of using jobs directly Martin Dobias 2013-10-21 More work in progress Martin Dobias 2013-09-30 Threading - WIP Joshua Arnott 2013-10-26 'Join by location' now creates multipart features in the same way as SinglePartsToMultiparts. Joshua Arnott 2013-10-22 'Join by location' can now use the geometry from the joined layer as output. Joshua Arnott 2013-10-22 Ported 'Join by location' from fTools to Processing Nyall Dawson 2013-01-12 [composer] Add method for hiding background and frame groups from item properties Nyall Dawson 2013-01-12 [FEATURE][composer] Add styling support for composer shapes Nyall Dawson 2014-01-12 [composer] Allow data defined symbol expressions using atlas feature properties for page background Merge: d04239d 4fbf244 Werner Macho 2014-01-11 Merge pull request #1065 from tomass/master Lithuanian translation update Tomas 2014-01-11 Lithuanian translation update Salvatore Larosa 2014-01-11 [processing] small fix for non-ascii string (fixes #9175) Werner Macho 2014-01-10 [TRANSUP] norway by James Signed-off-by: Werner Macho Matthias Kuhn 2014-01-10 Fix vectorlayercache test Marco Hugentobler 2014-01-10 Cleaner handling of dxf symbology and linestyles Stéphane Brunner 2014-01-08 Add missing git ignore Stéphane Brunner 2013-12-05 [diagram] Add expression for diagram attributes and size D'Hont René-Luc 2014-01-10 [BUG][QGIS-Server] Project Properties WCS Layers Row Count I have forgotten to set the row count of the WCS Layers table in the projetc properties. D'Hont René-Luc 2014-01-08 [Processing] Headless scriptability little enhanced Juergen E. Fischer 2014-01-10 reduce debugging noise in attribute table (fixes #9315) Radim Blazek 2014-01-09 missing QgsDistanceArea.setSourceCrs() in SIP Matthias Kuhn 2014-01-09 Categorized renderer: fix memory leak Denis Rouzaud 2014-01-09 indentation Merge: 129bd98 17e8813 Etienne Tourigny 2014-01-09 Merge pull request #1059 from etiennesky/coloramps-inverted add checkbox to invert color ramps in graduated and categorized symbology Juergen E. Fischer 2014-01-09 indentation update Merge: 9b0652f 1f9c378 mhugent 2014-01-09 Merge pull request #1058 from elpaso/master GetStyles split from GetStyle Salvatore Larosa 2014-01-08 [pyqgis-console] APIs file update (pyqgis.pap) Salvatore Larosa 2014-01-07 Fix about dialog (followup 740024c) Salvatore Larosa 2014-01-07 [pyqgis-console] fixes save as action in editor Juergen E. Fischer 2014-01-08 creatensis.pl: default arch to x86_64 Juergen E. Fischer 2014-01-08 fix windows build (also syncs QgsComposition sip binding) jtornero 2013-11-15 [composer] Add nautical miles support to scalebar, more rational default scale Merge: eaf1f38 2155dd8 Jürgen Fischer 2014-01-07 Merge pull request #1060 from ahuarte47/Issue_9308 Bug #9308: fix impossible to remove a group in the legend Larry Shaffer 2014-01-07 Fix Mac build Nathan Woodrow 2014-01-08 Change to darker background for side bar. No Frame for list widget ahuarte47 2014-01-08 #9308: enable remove groups in the legend Radim Blazek 2014-01-07 check if feature has geometry in memory provider iterator, fixes #9309 elpaso 2014-01-07 Fix #8727 Etienne Tourigny 2014-01-07 add checkbox to invert color ramps in graduated and categorized symbology Merge: 6eb72c7 f8247fa elpaso 2014-01-07 GetStyles implementation Merge: 0b10498 6eb72c7 Jürgen Fischer 2014-01-07 Merge pull request #1057 from elpaso/master Fix #9306 elpaso 2014-01-07 Fix #9306 Marco Hugentobler 2014-01-07 Dxf export: more precision for doubles elpaso 2014-01-07 Fix for segfault elpaso 2014-01-07 Fix #9306 and getStyles Matthias Kuhn 2014-01-07 Always emit signal when attribute values change Fix #9268 * Remove QgsVectorLayer::blockSignals() calls from QgsFieldCalculator * Deprecate emitSignal parameter from QgsVectorLayer::changeAttributeValue( fid, field, value, emitSignal ) * Code cleanup to update calls to the new emitSignal-less method Nyall Dawson 2014-01-07 [composer] Don't update atlas filter until editing finished, prevented, prevents errors while creating filter expression Nyall Dawson 2014-01-07 [composer] Tweak interface for atlas previews, fix occasional wrong extent in atlas previews. Juergen E. Fischer 2014-01-07 fix crash in mapserver (introduced with 1215d0b01) D'Hont René-Luc 2014-01-06 [QGIS-Server] Update UI for WCS configuration In the project properties OWS tab, the user can select the layers he would like to publish in a Web Coverage Service. Nathan Woodrow 2014-01-07 Fix side bar colour issue on Linux Juergen E. Fischer 2014-01-07 german translation fix Nathan Woodrow 2014-01-03 Update to new style side bar style for dialogs. - New blue-grey with white text style dialog - Side panel runs top to bottom - Icon size is read from settings - Option to disable in options dialog elpaso 2014-01-06 Initial GetStyles implementation, still segfaults Nyall Dawson 2014-01-06 [composer] Make sure atlas navigation controls are disabled if no matching atlas features are found Nyall Dawson 2014-01-06 [composer] Tweak appearance of compositions so that it's still possible to see page edges when using a transparent paper style Alexander Bruy 2014-01-06 [processing] some refactoring as suggested by Nathan Woodrow Alexander Bruy 2013-10-23 [processing] port QGIS native field calculator Denis Rouzaud 2014-01-06 [composer] update icons for atlas toolbar Nyall Dawson 2014-01-06 Fix warnings Juergen E. Fischer 2014-01-05 rephrase support (fixes #9294) Juergen E. Fischer 2014-01-05 german translation update Juergen E. Fischer 2014-01-03 fix most cppcheck warnings and implement suggestions also update and sync some sip interfaces Juergen E. Fischer 2014-01-05 debian packaging update: also disable globe in sid-oracle D'Hont René-Luc 2014-01-05 [Project-OWS-Tab] Doen't add null CRS to list It was possible to add null CRS in the OWS Tab CRS list. To avoid it, I add a test on return 0 as CRS Id and to set a default CRS with the last in the OWS Tab CRS list. Matthias Kuhn 2014-01-05 Change debug message level of CRS debug messages to keep the compiler warnings clean. Nyall Dawson 2014-01-05 Implement $map variable, which returns the current composer map item id where the map is being drawn, or 'canvas' if the map is being drawn in the main QGIS window. Partly implements #9288. Salvatore Larosa 2014-01-04 [decoration grid] [fixes #9286] fix typo Nyall Dawson 2014-01-04 Fix bad tests in composerview (fix #9285) Nyall Dawson 2014-01-04 [tests] Add test for composer paper styles Nyall Dawson 2014-01-04 [tests] Update composition based tests now that 1px bad row bug is fixed Nyall Dawson 2014-01-04 [composer] Make sure entire page symbol border is included when exporting compositions. Previously half the page border would be cropped out. Also fix nIRV's infamous 1px bad row at bottom of composer exports bug. Nyall Dawson 2014-01-04 Add method for estimating the maximum amount a symbol bleeds out of the drawn polygon. Eg, half of the border width is actually drawn outside of a rectangle. Calculated values are an estimate only since the symbology may be affected by data defined parameters. Juergen E. Fischer 2014-01-03 postgres provider: - fix connection cleanup from threads - fix disconnection of style functions fixes #9280 (adapted PR#1051) Juergen E. Fischer 2014-01-03 fix msvc warnings Tim Sutton 2014-01-03 Updated coding guide to include some info on pull requests Nathan Woodrow 2014-01-03 Fix typo Nathan Woodrow 2014-01-02 Filter params and output before use. Use Enurmerate to count rows Nathan Woodrow 2014-01-01 Use count function Nathan Woodrow 2014-01-01 Use set for getFields Nathan Woodrow 2014-01-03 Reduce margins on processing toolbox Nathan Woodrow 2014-01-03 Fix #9271 - Decrease step for symbol properties Salvatore Larosa 2014-01-01 [processing] set window flags for modeler dialog Salvatore Larosa 2014-01-01 [processing] API v2 update fix: returns str obj instead of QVariant one, it occurs when running Processing headless Merge: 9ef3f86 373adbd Nathan Woodrow 2014-01-02 Merge pull request #1048 from ahuarte47/Issue_9094-revival #9094-R: Use ',' and '.' keys similar to '<' and '>' keys in QgsMapToolNodeTool Alvaro Huarte 2014-01-02 #9094-R: Use ',' and '.' keys similar to '<' and '>' keys Nathan Woodrow 2014-01-02 Fix build error Juergen E. Fischer 2014-01-01 datum transformations: - copy descriptions, preference and deprecation from GDAL - remember position of dialog - allow hiding of deprecated transformations SQL: ALTER TABLE tbl_datum_transform ADD remarks varchar; ALTER TABLE tbl_datum_transform ADD scope varchar; ALTER TABLE tbl_datum_transform ADD preferred boolean; ALTER TABLE tbl_datum_transform ADD deprecated boolean; ALTER TABLE tbl_datum_transform ADD area_of_use_code varchar; Juergen E. Fischer 2014-01-01 postgres provider changes: - ignore infinite filter rectangles - also disconnect selection connection if no supported layers were found Tim Sutton 2014-01-01 Contributors map update Merge: 12eb44e 213b982 Nyall Dawson 2014-01-01 Merge pull request #1036 from nyalldawson/composer_render_speed [composer] Allow render optimisations when in preview mode Nyall Dawson 2013-12-16 [composer] Refresh main map canvas when atlas preview feature changes, allows for easier customisation of maps styled using $atlasfeatureid expressions Nyall Dawson 2013-12-16 [composer] Add shortcut to atlas settings to atlas toolbar and menu. Designed to make atlas features more discoverable for beginners Nyall Dawson 2013-12-16 [composer] Make sure scalebars are updated during atlas previews Nyall Dawson 2013-12-16 [composer] Make sure $feature has the same value in composer labels as it does when used in filename expressions Nyall Dawson 2013-12-16 [composer] Also re-evaluate current features filename so that filename expressions take effect immediately Nyall Dawson 2013-12-15 [composer] Update atlas filename expression when the expression actually changes Nyall Dawson 2013-12-15 [FEATURE] Add seperate controls for printing/exporting whole of atlas composition. Allows single features from an atlas to be printed/exported. Nyall Dawson 2013-12-15 [composer] Add atlas preview actions to new Atlas menu Nyall Dawson 2013-12-15 [composer] Update features if atlas preview enabled and coverage filter/sort changes. Protect against atlas with no matching features Nyall Dawson 2013-12-15 [composer] Show status bar text with current atlas feature Nyall Dawson 2013-12-15 [composer] Recenter overview when checkbox enabled Nyall Dawson 2013-12-15 [composer] Make sure signals for overview extent changing are reconnected after loading composition Nyall Dawson 2013-12-15 [composer] Correctly shift overview frame when moving map item content Nyall Dawson 2013-12-07 [FEATURE] Add atlas preview toggle. Allows for navigating through atlas features and previewing the composition for each feature. Atlas maps can have their extent temporarily tweaked for each atlas feature. Nyall Dawson 2014-01-01 [tests] Update all expected images based on composer tests. Prior to c3ec3b2d75 composer exports had a 1 pixel slightly-gray row at the bottom of images. After c3ec3b2d75 this bottom row is now a slightly transparent white row. The underlying issue causing this row still needs to be fixed, but in the meantime this gets composer tests passing again. Juergen E. Fischer 2013-12-31 fix build error on precise Merge: f73779a 8a80e0e Nathan Woodrow 2013-12-30 Merge pull request #1047 from ahuarte47/Issue_9273 #9273: Fix shortcuts commented in issue #9273. Change full screen to F11 ahuarte47 2013-12-31 #9273: Shortcut changes Nyall Dawson 2013-12-30 Fix compiler warnings Nyall Dawson 2013-12-18 [composer] Only disable render optimisations by simplification when a composer is being outputed. Allows composer previews to benefit from layer simplification optimisations Nyall Dawson 2013-12-30 [composer] Allow exporting compositions with transparent backgrounds Nyall Dawson 2013-09-26 [FEATURE] Allow setting composer page background style (fix #7846) Tim Sutton 2013-12-30 Code foramtting cleanups only Merge: f1aead4 e3e01fc Tim Sutton 2013-12-30 Merge branch 'Issue_9094' of https://github.com/ahuarte47/QGIS nyalldawson 2013-12-30 [composer] Fix failing rotation tests Nyall Dawson 2013-12-30 [composer] Fix labels truncating text Nyall Dawson 2013-12-30 [composer] Fix resizing of item groups with rotated items Nyall Dawson 2013-12-30 [composer] Fix item rotation so that rotation occurs around item center Nyall Dawson 2013-12-30 [composer] Partially fix rotated item scaling nyalldawson 2013-12-30 [composer] Add tests for item rotation nyalldawson 2013-12-30 [composer] Fix picture rotation, optimise scaling of rotated pictures to fit in item bounding box Nyall Dawson 2013-12-30 [composer] Begin tests for composer item rotation Nyall Dawson 2013-12-30 [FEATURE] [composer] Replace custom item rotation with QGraphicsItem rotation, support rotation for all types of composer items (fix #7933, fix #4884) Nyall Dawson 2013-12-30 [composer] Move item rotation control to item widget panel Nyall Dawson 2013-12-30 [composer] Clean up item rotation api, seperate item rotation (for shapes, labels) from map rotation and picture rotation. Maintain compatibility with 2.0 api, deprecate ambiguous rotation/setRotation methods Merge: 77fb9a5 377c13b Tim Sutton 2013-12-29 Merge pull request #1029 from nyalldawson/composer_dialog_fixes Save as Image dialog fixes and improvements Alexander Bruy 2013-12-29 [processing] refactored some helpre functions (contributed by Nathan Woodrow) Nyall Dawson 2013-12-29 Fix warnings Nyall Dawson 2013-12-29 [composer] Add action for showing/hiding rulers Nyall Dawson 2013-12-29 [composer] Prevent overlap of vertical ruler markings Nyall Dawson 2013-12-29 [composer] Make sure ruler size is based off font size (fix #7476). Only do ruler calculations once, not on every paint event. Nyall Dawson 2013-12-29 [composer] Make sure rulers are updated when paper size changes Nyall Dawson 2013-12-29 [composer] Improve appearance of rulers, add small tick marks to ruler (fix #5656) Nyall Dawson 2013-12-29 [composer] Make sure that zooming in/out of composer with mouse wheel always results in an exact change in zoom. Nyall Dawson 2013-12-29 [FEATURE][composer] Add zoom actual size action to composer, zoom indicator and combobox to status bar Nyall Dawson 2013-12-29 [tests] Add some more anomaly images Nyall Dawson 2013-12-29 [tests] Fix failing composerhtml tests, by forcing test html to use a set font size in pixels. nyalldawson 2013-12-29 [tests] Fix python compositionchecker to derive from render checker, fix most python composer tests (fix #9117) nyalldawson 2013-12-29 [tests] Fix failing gradient tests nyalldawson 2013-12-29 [tests] Update atlas tests, add exceptions nyalldawson 2013-12-29 [tests] Fix failing diagram and blend modes tests nyalldawson 2013-12-29 [tests] Update composer scalebar tests, fix exception causing test to fail nyalldawson 2013-12-29 [tests] Update composer html tests nyalldawson 2013-12-29 [tests] Update composer effect tests nyalldawson 2013-12-29 [FEATURE][composer] Add controls for changing zebra frame colors and line thickness, fix output of zebra style grids (fix #8767) nyalldawson 2013-12-29 [tests] Update composer map tests, add anomoly images nyalldawson 2013-12-29 [tests] Update composer shape tests Nyall Dawson 2013-12-29 Rework composition checker to derive from render checker, so that composition tests can have anomoly images Juergen E. Fischer 2013-12-28 german translation update Juergen E. Fischer 2013-12-28 Fix typos (fixes #9261) Merge: 36d9d4b aee4696 Werner Macho 2013-12-28 Merge pull request #1045 from Jean-Roc/traduction_ui update fr ui Matthias Kuhn 2013-12-28 Add attribute dialog: Hide Length/Precision labels when unavailable Fix #9259 Merge: 4b9edc7 720871c volaya 2013-12-28 Merge pull request #1043 from anitagraser/master [processing] allow float values in densify interval input field anitagraser 2013-12-28 undid changes to densify geometries Merge: b40e3c0 e0e65ba MORREALE Jean-Roc 2013-12-28 Merge pull request #9 from Ecologeek/traduction_ui update french translation anitagraser 2013-12-27 allow float values in densify interval input field Merge: 8dd31ff 7050265 Tim Sutton 2013-12-27 Merge pull request #1042 from ErunamoJAZZ/master Patch for issue 8920. C. Daniel Sanchez R 2013-12-27 Patch for issue 8920. Salvatore Larosa 2013-12-27 [georeferencer] reset world file checkbox when transformation differ from Linear (Fixes #9251) Matthias Kuhn 2013-12-26 Safety checks for classification algorithms (Fix #9252) Sylvain Maillard 2013-12-26 update french translation Nyall Dawson 2013-12-22 [composer] Ensure that extent of new map items is centered on current centre of map Victor Olaya 2013-12-20 [processing] minor cosmetic change Merge: 0ad5cc9 a09892f volaya 2013-12-20 Merge pull request #1031 from rldhont/headless_processing Some changes to allow Processing to be run headless It replaces legendInterface with QgsMapLayerRegistry, which is a better option ahuarte47 2013-12-19 #9094: fix incorrect header class D'Hont René-Luc 2013-12-16 [Feature][Processing] Headless To use QGIS Processing in python scripts out of QGIS. The changes made concern the dependence to legendInterface. In cases where the interface.iface is null (None) QGIS Processing uses the QgsMapLayerRegistry instance. Werner Macho 2013-12-19 [TRANSUP] no by James Signed-off-by: Werner Macho Marco Hugentobler 2013-12-19 Fix circle position in dxf export Marco Hugentobler 2013-12-19 Export more simple markers to dxf Marco Hugentobler 2013-12-19 Remove drawEllipse from dxf paint engine (default implementation calls drawPolygon) Marco Hugentobler 2013-12-19 Remove legacy code Marco Hugentobler 2013-12-19 Improve dxf export for svg symbols Marco Hugentobler 2013-12-18 Better conversion of QPainterPath to dxf Merge: f7e5588 889f65f Denis Rouzaud 2013-12-18 Merge pull request #1024 from ahuarte47/Issue_9181 Bug #9181: fix crash trying to resume node editing Marco Hugentobler 2013-12-18 Dxf: store export map extent option Marco Hugentobler 2013-12-18 Dxf: another small improvement in symbology export William Kyngesburye 2013-12-18 phonon needs backends Marco Hugentobler 2013-12-18 Fix bugs in dxf symbology export Matthias Kuhn 2013-12-18 [relations] Fix autogenerated feature forms Matthias Kuhn 2013-12-18 [relations] No crash when clicking remove with no selection Fix #9224 ahuarte47 2013-12-09 #9181: fix crash trying to resume node editing Clears temporal objects to avoid crash trying to resume node editing and disconnects signals to avoid repetitive connects Juergen E. Fischer 2013-12-18 german translation update ahuarte47 2013-12-09 #9094: Use backspace in other similar code ahuarte47 2013-12-08 #9094: AttributeTableDialog use del/backspace use ahuarte47 2013-12-08 #9094: Show info messages about deleting features ahuarte47 2013-12-05 #9094: keyPressed can be overrided in MapTool KeyPressed event of MapCanvas can be overrided in current MapTool. It enables to use 'Delete/Backspace' key as default shortcut to delete selected features, but it can be overrided in current maptool. ahuarte47 2013-12-03 #9094: '+' and '-' keys work as selector nodes '+' and '-' select next and previous to current active node respectively. This commit is for demo proposes. ahuarte47 2013-12-03 #9094: Auto-select adjacent last-removed node Automatically selects the adjacent vertex to last removed selected node ahuarte47 2013-12-02 #9094: fix invalid file ahuarte47 2013-12-02 #9094: implements user/dev advices ahuarte47 2013-11-29 #9094: fix invalid file ahuarte47 2013-11-28 #9094: Add Ctrl+D and D support for remove layers Alvaro Huarte 2013-11-28 #9094: Other shortcut changes ahuarte47 2013-11-25 #9094: Del-key perfom 'delete selected features' Juergen E. Fischer 2013-12-18 fix warnings Juergen E. Fischer 2013-12-17 fix warnings Juergen E. Fischer 2013-12-17 indentation update Merge: accd06d 32d4af2 Jürgen Fischer 2013-12-17 Merge pull request #1028 from ahuarte47/Issue_9191 Bug #9191-#9190: fix enable/disable issues of buttons Merge: 17cd09a 4a75a95 Jürgen Fischer 2013-12-17 Merge pull request #1032 from etiennesky/vsifile-relative fix project saving and reading of vsizip paths (fixes #6369) Merge: 052b2eb 9195356 mhugent 2013-12-17 Merge pull request #980 from ahuarte47/Issue_8725-OGR Feature #8725: Fast rendering of geometries Merge: ba9936e dbb48f2 Denis Rouzaud 2013-12-17 Merge pull request #1030 from alexbruy/fill-ring [FEATURE] fill ring digitinzing tool Alexander Bruy 2013-12-10 [FEATURE] fill ring digitinzing tool Used to cut holes in polygons and automatically fill them with new features. Attributes taken from parent feature. Feature form opens by default. Hold Ctrl key to suppress it. Merge: bda114b 566e5bd Alvaro Huarte 2013-12-17 Merge branch 'Issue_8725-OGR' of https://github.com/ahuarte47/QGIS into Issue_8725-OGR Conflicts: src/app/qgsoptions.cpp src/app/qgsoptions.h src/core/symbology-ng/qgssymbollayerv2.cpp ahuarte47 2013-12-12 #8725: fix texts ahuarte47 2013-12-12 #8725: AA-disabling only for simplify factor>1 AA-disabling only is executed for '1-pixel' geometries when the configuration slider is greater than minimum value. The rendering speed up is lower (http://hub.qgis.org/issues/8725#note-59), but with higher quality result Alvaro Huarte 2013-12-12 #8725: Refactoring to simplifier classes Alvaro Huarte 2013-11-22 #8725: Improvements in strings ahuarte47 2013-11-22 #8725: use default drawing config Alvaro Huarte 2013-11-21 #8725: drawRect faster drawConvexPolygon ahuarte47 2013-11-20 #8725: Improvements in strings ahuarte47 2013-11-20 #8725: Show warning label for big simplify factor Alvaro Huarte 2013-11-13 #8725: Replace malloc by OGRMalloc Alvaro Huarte 2013-11-05 Feature #8725: Simplification is assigned by flag The drawing simplification can be configured using flags that indicates what simplification type can be executed (Point, BBOX and AA) ahuarte47 2013-11-05 Feature #8725: fix merge changes Alvaro Huarte 2013-11-04 Feature #8725: Disable simplification in composer Disable the simplification of geometries when the render request comes from a print composition to avoid rendering quality issues ahuarte47 2013-11-04 Feature #8725: 'AA' disabling uses layer cfg 'AA' disabling for '1-pixel geometries' uses the layer simplification configuration ahuarte47 2013-10-28 Feature #8725: Disable simplify in editmode Disable the drawing simplification when the editmode is enabled, the geometries are cached for snapping ahuarte47 2013-10-28 Feature #8725: Replace '*foo=bar' by 'memcpy' ahuarte47 2013-10-27 Feature #8725: drawConvexPolygon() can be faster On some platforms (e.g. X11), the drawConvexPolygon() function can be faster than the drawPolygon() function. https://qt-project.org/doc/qt-4.8/qpainter.html#drawConvexPolygon ahuarte47 2013-10-26 Feature #8725: Increment 2x the factor in slider ahuarte47 2013-10-26 Feature #8725: Show configuration option Shows a new rendering tab in the layer options form for configure the drawing simplification. ahuarte47 2013-10-24 Feature #8725: Remove unnecesary setPen() ahuarte47 2013-10-24 Feature #8725: Minor improvement ahuarte47 2013-10-24 Feature #8725: Fix dpi bug Alvaro Huarte 2013-10-23 Feature #8725: check QgsFeatureRequest::NoGeometry Alvaro Huarte 2013-10-23 Feature #8725: simplification configurable The simplification is configurable by layer, also this commit contains reording of code. I have pending show in the properties form of layer a check for enable/disable the simplification Alvaro Huarte 2013-10-22 Feature #8725: Fast rendering of geometries Fix compile errors: include "std::limits" ahuarte47 2013-10-21 Feature #8725: FastRendering of geometries Implements fast rendering of LineStrings and Polygons pre-applying a view threshold filter to the geometries to render in qgis. Also disable 'Antialiasing' when it is possible. View Table of test results in 'http://hub.qgis.org/issues/8725' Alvaro Huarte 2013-10-18 Feature #8725: Fast rendering of geom (v-OGR) Implements fast rendering of LineStrings and Polygons pre-applying a view threshold filter to the geometries to render in qgis. Also disable 'Antialiasing' when it is possible. View Table of test results in 'http://hub.qgis.org/issues/8725' (This version of branch implements the improvement in vector-providers) William Kyngesburye 2013-12-17 always bundle QtDbus, just in case Etienne Tourigny 2013-12-16 fix project saving and reading of vsizip paths (fixes #6369) Werner Macho 2013-12-16 [TRANSUP] Hindi by Harish Signed-off-by: Werner Macho Alvaro Huarte 2013-12-16 #9191: More fixes Merge: b192f64 2573cc2 mhugent 2013-12-16 Merge pull request #1025 from rldhont/wcs [FEATURE][QGIS-Server] Add Web Coverage Service support : funded Ifremer ahuarte47 2013-12-16 #9191: fix enable/disable issues of buttons At the http connection dialog, the 'Name' and 'Url' text boxes must be filled to enable 'ok' button. Also disable connect-edit-delete buttons when there is not any connection defined. Nyall Dawson 2013-12-15 Add default file name parameter for getSaveAsImageName dialog Nyall Dawson 2013-12-15 Use native file dialog for save as image under linux Nyall Dawson 2013-12-16 [composer] Make map rectangle preview text a bit more subtle Merge: 27bea19 d132451 volaya 2013-12-15 Merge pull request #1026 from anitagraser/working attempt to fix http://hub.qgis.org/issues/9184 Nyall Dawson 2013-12-16 [composer] Fix overview extent not being drawn on composer outputs if map is set to Rectangle preview mode Juergen E. Fischer 2013-12-15 german translation update and one translation string fix Juergen E. Fischer 2013-12-15 fix warnings Radim Blazek 2013-12-14 convert GDAL no data value to a value representable by data type, fixes #3840 anitagraser 2013-12-13 attempt to fix http://hub.qgis.org/issues/9184 Werner Macho 2013-12-13 translation update: no with new translator added Signed-off-by: Werner Macho ahuarte47 2013-12-12 #8725: fix texts ahuarte47 2013-12-12 #8725: AA-disabling only for simplify factor>1 AA-disabling only is executed for '1-pixel' geometries when the configuration slider is greater than minimum value. The rendering speed up is lower (http://hub.qgis.org/issues/8725#note-59), but with higher quality result Alvaro Huarte 2013-12-12 #8725: Refactoring to simplifier classes Juergen E. Fischer 2013-12-12 debian packaging update D'Hont René-Luc 2013-12-10 [FEATURE][QGIS-Server] Add Web Coverage Service support : funded Ifremer QGIS-Server already supports standards : Web Map Service (WMS version 1.3.0 and 1.1.1) and Web Feature Service (WFS version 1.0.0) and Web Feature Service with Transaction (WFS-T). The French Research Institute, Ifremer, would like that QGIS-Server supports all the OGC standards. We (3Liz) are implementing the Web Coverage Service (WCS version 1.0.0) support in QGIS-Server. Juergen E. Fischer 2013-12-11 WMS: try to interpret response to map requests always as image (fixes #9197) Juergen E. Fischer 2013-12-11 fix warning Juergen E. Fischer 2013-12-11 a unit to network cache size label (fixes #9189) Merge: 36c2f7f bce3588 mhugent 2013-12-11 Merge pull request #1019 from nyalldawson/random_colors Tweak random color ramp for nicer colors Juergen E. Fischer 2013-12-11 WMS/OWS: - add service type to window title (implements #9192) - always fill dpi combobox (fixes #9194) Marco Hugentobler 2013-12-11 Dxf export: modify layer name to be a valid dxf layer name Marco Hugentobler 2013-12-10 Dxf: possibility to export only the features overlapping the map extent Marco Hugentobler 2013-12-10 Add license header for dxfexportdialog Merge: c21c90a f848396 mhugent 2013-12-10 Merge pull request #1023 from 3nids/dxfgeomlayer [DXF] do not list layer without geometry Merge: fc24767 3f37d24 mhugent 2013-12-10 Merge pull request #1022 from 3nids/dxfunselectall [DXF] add (un)select all buttons Merge: 221263d fdc3ba7 Giuseppe Sucameli 2013-12-09 Merge pull request #1021 from etiennesky/gdal_merge fix gdal merge nodata value and UI improvements Yauhen Kharuzhy 2013-12-08 Properly reserve place for arrays in line and polygon clipping routines A QVector::clear() method completely reinitializes the object. Calling a QVector::reserve() before clear() is useless and causes big overhead at array append operations. Give ~6% perfomance gain. Signed-off-by: Yauhen Kharuzhy Yauhen Kharuzhy 2013-12-08 Eliminate creating of unused QString objects in transformCoords Every call of transformCoords() Qstring dir object is created. It uses only for output information about errors, so move its creation to error handling block. Perfomance gain is ~7%. Signed-off-by: Yauhen Kharuzhy Yauhen Kharuzhy 2013-12-08 Optimize simple marker rendering perfomance expression( "..." ) call create QString object at every invocation. For layers with simple markers this overhead take upto 10% of rendering time. Move expression finding to startRender() method. Signed-off-by: Yauhen Kharuzhy Etienne Tourigny 2013-12-09 gdal merge tool: make sure -a_nodata is only added with gdal>=1.9 Matthias Kuhn 2013-12-09 Road graph: don't show 25D data as valid input layers Matthias Kuhn 2013-12-09 Road graph plugin: don't crash with 25D input layers Fix #9174 Denis Rouzaud 2013-12-09 [DXF] do not list layer without geometry Denis Rouzaud 2013-12-09 [DXF] add (un)select all buttons Tim Sutton 2013-12-08 Applied patch from Hans-Peter Jansen to address build issues with python-sip 4.15 and fix srs.db update issue when srs table has no noupdate column. Werner Macho 2013-12-08 translation update by Xan Signed-off-by: Werner Macho Juergen E. Fischer 2013-12-07 different fix for 5a1bcf3 Juergen E. Fischer 2013-12-06 also fix building of tests (followup 5a1bcf38) Juergen E. Fischer 2013-12-06 fix build error on windows and some warnings Juergen E. Fischer 2013-12-06 add script to list github pull request (assignments) Merge: ba76c99 0239b4d Marco Hugentobler 2013-12-06 [FEATURE]: merge dxf_export branch Etienne Tourigny 2013-12-06 use collapsible group box for creation options in gdal merge widget Etienne Tourigny 2013-12-06 fix destination nodata value in gdal merge Marco Hugentobler 2013-12-06 Dxf export for ellipse symbol layer Matthias Kuhn 2013-12-06 [ogr] Only call repack when closing a data provider Fix #8822 Marco Hugentobler 2013-12-06 Write dxf circle Matthias Kuhn 2013-12-06 Attribute edit widgets LongLong support Fix #9145 Marco Hugentobler 2013-12-06 Show success / failure of dxf export in message bar Marco Hugentobler 2013-12-06 Draw default point symbol if dxf export not supported by marker symbol Juergen E. Fischer 2013-12-06 fix warning Juergen E. Fischer 2013-12-05 german translation update Marco Hugentobler 2013-12-05 Add copy constructor and assignment operator for QgsDxfExport Marco Hugentobler 2013-12-05 Fix rotation for svg markers exported to dxf Marco Hugentobler 2013-12-05 Linestyles for Qt pen styles Nyall Dawson 2013-12-06 Tweak random color ramp for nicer colors Radim Blazek 2013-12-05 raster projector improved, also fixes #9101 Juergen E. Fischer 2013-12-05 Disable filter if search checkbox is unticked in database selection dialogs (fixes #9168) Merge: 4df00a8 63c62ad Marco Hugentobler 2013-12-05 Merge branch 'master' of github.com:qgis/Quantum-GIS Merge: f428c86 57d124b mhugent 2013-12-05 Merge pull request #1014 from 3nids/issue9138 fix #9138 Merge: 813459d f428c86 Marco Hugentobler 2013-12-05 Merge branch 'master' of github.com:qgis/Quantum-GIS Matthias Kuhn 2013-12-05 Safety check when joining before accessing fields Fix #9166 Merge: f2fbb2f 4260a23 Marco Hugentobler 2013-12-05 Merge branch 'symbology_copy_paste' Matthias Kuhn 2013-12-05 Cleanup methods for providers (implemented for GDAL and OGR) Fix #8932 Alexander Bruy 2013-12-05 run InitSpatialMetadata(1) on SpatiaLite >= 4.1 also in Offline Editing plugin (addresses #9157) Merge: 6c0e9af 0f52163 Tim Sutton 2013-12-05 Merge pull request #983 from matthias-kuhn/cmake-warning-fix [cmake] Fix warnings. Merge: e1186f1 2c4018b mhugent 2013-12-05 Merge pull request #1017 from matthias-kuhn/dattrans Be less verbose in datum transformation Matthias Kuhn 2013-11-21 Be less verbose in datum transformation Alexander Bruy 2013-12-05 [processing] explicitly set window flags for script editor Radim Blazek 2013-12-04 give objectName to plugin menus to allow customization Merge: f533d53 d39f447 Werner Macho 2013-12-03 Merge pull request #1016 from thodorisvakkas/el_GR_Translation translation update_ gr by theodoris Juergen E. Fischer 2013-12-03 ouch - fix bc825b4b4 Juergen E. Fischer 2013-12-03 fix lpad/rpad (fixes #9158) Radim Blazek 2013-12-03 Convert WMS GetFeatureInfo GML to UTF-8 supported by Expat, fixes #9082 thodoris.vakkas 2013-12-03 Commit20131203 Juergen E. Fischer 2013-12-03 dbmanager: include materialized views (implements #9127) Marco Hugentobler 2013-12-03 [FEATURE]: Add a color ramp class which generates random colors on-the-fly Matthias Kuhn 2013-11-29 [relations] When loading invalid relations from a project, tag them as such Matthias Kuhn 2013-11-28 AttributeForm: Create a dummy button box for intercepting ok clicks when the ok button is hidden and the accept was actually triggered by something else. This allows to continue using custom validation logic without changes. Fixes #8885 Matthias Kuhn 2013-11-28 [relations] Support for .ui file dialogs Marco Hugentobler 2013-12-03 Some updates for ntv2 entries in tbl_datum_transform Marco Hugentobler 2013-12-03 Fix printing for curved labels Merge: f21562c a3f1f7e Richard Duivenvoorde 2013-12-02 Merge pull request #1012 from ahuarte47/Issue_9085-qbrowser Feature #9085: Set refresh to F5 key in qbrowser Marco Hugentobler 2013-12-02 [FEATURE]: possibility to copy/paste entries in renderer widgets (using ctrl+c/ctrl+v) Salvatore Larosa 2013-12-01 [pyqgis-console] fixes #9097 (thanks to Minoru Akagi) Salvatore Larosa 2013-12-01 [pyqgis-console] avoid processEvents for stderr output Salvatore Larosa 2013-12-01 [pyqgis-console] prepared API file update Salvatore Larosa 2013-12-01 [ftools] avoid trivial error for Random selection tool Salvatore Larosa 2013-12-01 [spatialquery] shows the warning in message bar when no layer is loaded in canvas Salvatore Larosa 2013-11-30 fix warning when parsing stylesheet in qgsmessagebar: avoid log message: "Could not parse stylesheet of widget .." Werner Macho 2013-11-30 translation update: BA by Almir Radim Blazek 2013-11-30 use white color for raster nodata Juergen E. Fischer 2013-11-30 debian packaging update Juergen E. Fischer 2013-11-30 indentation update Juergen E. Fischer 2013-11-30 set minimum Qt version to 4.7 and remove #ifdef code depending on prior versions Juergen E. Fischer 2013-11-30 fix warning Marco Hugentobler 2013-11-29 Export layers to dxf in drawing order Marco Hugentobler 2013-11-29 Data defined size / color / rotation for marker export Radim Blazek 2013-11-29 give objectName to fTools menus and actions to allow customisation, see #9134 Denis Rouzaud 2013-11-29 fix #9138 Werner Macho 2013-11-28 translation update: bosnia by Almir Marco Hugentobler 2013-11-28 Fix label size for painting main map with higher dpi Merge: f624792 688952d Denis Rouzaud 2013-11-27 Merge pull request #1013 from tomass/master Fix function example explanation Tomas 2013-11-27 Fix function example explanation Marco Hugentobler 2013-11-27 Add epsg_nr to datum transform table Juergen E. Fischer 2013-11-27 don't allow slashes in http connection names (fixes #9131) Merge: ea47e6f eedab4f volaya 2013-11-27 Merge pull request #1003 from rduivenvoorde/processingtweaks gui tweak: adding margin around processing dialogs Alvaro Huarte 2013-11-27 #9085: Set refresh to F5 key in qbrowser Set refresh to F5 key in qbrowser equally to qapp http://hub.qgis.org/projects/quantum-gis/repository/revisions/32b05836d50b36f443517ef6a76ac26d49b19b89 Merge: 5ac587d f870a38 Werner Macho 2013-11-26 Merge pull request #1011 from tomass/master Lithuanian translation update thodoris.vakkas 2013-11-27 Commit20131127 Tomas 2013-11-26 Lithuanian translation update Merge: 55f8606 c8c2ba2 Jürgen Fischer 2013-11-26 Merge pull request #1000 from matthias-kuhn/filewriter Visual candy for the "Save as" GUI Marco Hugentobler 2013-11-26 Change symbol layer dxf method signature and make first test with a data defined property Matthias Kuhn 2013-11-26 [globe] Add vertical scale (Requires osgEarth >= 2.5) Werner Macho 2013-11-26 updating Layers translation in indonesian language to layer (skip lapisan) Merge: 32b0583 fdeaee8 Werner Macho 2013-11-25 Merge pull request #1009 from Jean-Roc/traduction_ui update fr ui Juergen E. Fischer 2013-11-25 change default refresh key to F5 (implements #9085) Merge: 5228e69 f0d25b1 MORREALE Jean-Roc 2013-11-25 Merge pull request #7 from Ecologeek/translation_ui update french translation Juergen E. Fischer 2013-11-25 wmts: add a default style entry if the server doesn't provide any (fixes #8401) Marco Hugentobler 2013-11-25 Datum transform dialog: show tooltip with transform code and src/dest CRS description Marco Hugentobler 2013-11-25 Change epsg datum transform 9607 to 9606 by switching the sign of the rotation parameters Marco Hugentobler 2013-11-25 More sqlite3_finalize Marco Hugentobler 2013-11-25 Fix finalize statement and close srs.db Matthias Kuhn 2013-11-25 Don't crash when iterating cached features Marco Hugentobler 2013-11-25 Implement write lines in dxf engine Matthias Kuhn 2013-11-25 API documentation Marco Hugentobler 2013-11-25 Cleanup code structure, move code to central functions Matthias Kuhn 2013-11-25 Close CachedFeatureWriterIterator when requested Matthias Kuhn 2013-11-25 Ellipse marker support for color expressions (Fix #9114) Sylvain Maillard 2013-11-25 update french translation Juergen E. Fischer 2013-11-24 indentation update Juergen E. Fischer 2013-11-24 german translation update Sylvain Maillard 2013-11-24 update french translation Nathan Woodrow 2013-11-23 Add $atlasfeatureid and $atlasgeometry Merge: 94c6657 1a88acb Nyall Dawson 2013-11-23 Merge pull request #999 from nyalldawson/composer_pos [composer] Change to pos() for item position Merge: c5cb0ba 836fa73 Werner Macho 2013-11-23 Merge pull request #1004 from tomass/master Lithuanian translation update Merge: a9d92cd 34e1bd2 Marco Hugentobler 2013-11-23 Merge branch 'dxf_export' of github.com:mhugent/Quantum-GIS into dxf_export Marco Hugentobler 2013-11-23 Convert painterpath to polygons for dxf Marco Hugentobler 2013-11-23 Move QgsDxfExport into dxf subdirectory Tomas 2013-11-23 Lithuanian translation update Jean-Roc Morreale 2013-11-22 fetch new strings for french translation Matthias Kuhn 2013-11-22 Fixup:e9a37e9 Matthias Kuhn 2013-11-22 Fix translation error Matthias Kuhn 2013-11-22 Don't crash when iterating empty cache Richard Duivenvoorde 2013-11-22 gui tweak: adding margin around processing dialogs Werner Macho 2013-11-22 translation update: lt, adding new translator Merge: d863715 abcfe7b Werner Macho 2013-11-22 Merge pull request #1002 from Jean-Roc/traduction_ui update french translation Marco Hugentobler 2013-11-22 Start implementation of QgsDxfPaintDevice / Engine to export svg markers to dxf Merge: 80e625f f893863 MORREALE Jean-Roc 2013-11-22 Merge pull request #6 from Ecologeek/translation_ui update french translation Sylvain Maillard 2013-11-22 update french translation Sylvain Maillard 2013-11-22 update french translation Sylvain Maillard 2013-11-22 update french translation Alvaro Huarte 2013-11-22 #8725: Improvements in strings ahuarte47 2013-11-22 #8725: use default drawing config Alvaro Huarte 2013-11-21 #8725: drawRect faster drawConvexPolygon Marco Hugentobler 2013-11-21 apply the IAU2000 sql file to srs.db Adam Licht 2013-10-31 adding a file of inserts for IAU2000 ellipsoids and srs Marco Hugentobler 2013-11-21 Add pt grid shift entries to srs.db (provided by Giovanni) Marco Hugentobler 2013-11-21 Implement diamond simple marker Matthias Kuhn 2013-11-21 QgsRectangle API comment fixes Marco Hugentobler 2013-11-21 Implement simple marker rect / square Marco Hugentobler 2013-11-21 Clean up dxf export sources Juergen E. Fischer 2013-11-21 merge INSTALL changes to doc/INSTALL.t2t, update INSTALL.html link and rerun txt2tags Werner Macho 2013-11-21 [saveas] changes to default sqlite/spatialite values Matthias Kuhn 2013-11-19 [saveas] Hide senseless options for sqlite Werner Macho 2013-11-19 [saveas] UI changes Matthias Kuhn 2013-11-16 [saveas] Cleanup for Save As GUI Add options to aliased vectorfilewriter drivers Werner Macho 2013-10-24 [saveas] updates to default values updates to ui and help Matthias Kuhn 2013-09-15 [saveas] Template for the driver options Nyall Dawson 2013-11-19 [composer] Change to pos() for item position, free up transform for future use ahuarte47 2013-11-20 #8725: Improvements in strings Matthias Kuhn 2013-11-20 Heavier use of feature caching for fully populated caches When a feature cache is set to "FullCache" mode, it will answer requests from this cache instead of querying the backend. Some more documentation for writing custom feature iterators based on QgsAbstractFeatureIterator Fix #9099 Merge: 039a4f5 298a052 Paolo Cavallini 2013-11-20 Merge pull request #998 from ghtmtt/master some small changes ma7730 2013-11-20 some small changes Marco Hugentobler 2013-11-20 Write blocks for point symbols ahuarte47 2013-11-20 #8725: Show warning label for big simplify factor Merge: 944755a 8f7b4c1 Nyall Dawson 2013-11-19 Merge pull request #981 from nyalldawson/composer_settings3 Add composer settings to QGIS options nyalldawson 2013-10-31 Add default grid and guide settings to composer options page nyalldawson 2013-10-21 Add public method for displaying options dialog and switching to a specific page Add shortcut to composer options to composer menu nyalldawson 2013-10-21 Move composer grid style settings to options dialog nyalldawson 2013-10-21 [FEATURE] Add composer settings panel, with option to set default font for compositions Merge: 80e625f ee566a0 Werner Macho 2013-11-18 Merge pull request #997 from yjacolin/englishTypoInUi English typo in ui Yves Jacolin 2013-11-18 Typo in the en sentence Yves Jacolin 2013-11-18 Typo in the en sentence Paolo 2013-11-18 More typos in IT GUI translation Paolo 2013-11-18 Several typos and improvements to IT GUI translation pcav 2013-11-18 Increased number of decimaps for GDAL Contour Marco Hugentobler 2013-11-18 Fix #9070 Marco Hugentobler 2013-11-18 Fix proj string manipulation for reverse datum transformations Juergen E. Fischer 2013-11-18 postgres: use st_estimatedextent with postgis >= 2.1 (fixes #9011) Juergen E. Fischer 2013-11-17 WMS: improve support for legend graphics Juergen E. Fischer 2013-11-17 fix warnings Marco Hugentobler 2013-11-16 Possibility to add / remove default transformations in options tab Marco Hugentobler 2013-11-16 Also consider inverted direct datum transformations Marco Hugentobler 2013-11-16 Consider datum transform in raster projector Merge: dc078b8 836e1a8 ahuarte47 2013-11-15 Merge remote-tracking branch 'upstream/master' into Issue_8725-OGR Juergen E. Fischer 2013-11-15 WMS: - don't let failing (optional) GetLegendGraphic request block every following request - don't refresh legend symbology everytime the extent changes (ie. don't GetLegendGraphic again and again) Matthias Kuhn 2013-11-15 [attrtable] Minimize feature requests on load (Fix #8851) Matthias Kuhn 2013-11-15 Fix crash when showing form with definition for deleted widget (Fix #9064) Matthias Kuhn 2013-11-14 [globe] Cache for osgearth < 2.2 Matthias Kuhn 2013-11-14 [globe] Use 4-digits for year in the date picker widget Matthias Kuhn 2013-11-14 [globe] Add SkyNode configuration options Matthias Kuhn 2013-11-14 Print error message, when syncDatumTransform sqlite query fails Marco Hugentobler 2013-11-14 Apply Larrys fix for datum transform sync Matthias Kuhn 2013-11-14 [attrtable] Be less verbose by default in debug mode Marco Hugentobler 2013-11-14 Use AC1009 only Matthias Kuhn 2013-11-14 [composer] Fix python bindings for composer attribute table Matthias Kuhn 2013-11-14 Fix warnings Matthias Kuhn 2013-11-14 [globe] Enable caching Matthias Kuhn 2013-11-14 [globe] Base layer configuration option (TMS only) Matthias Kuhn 2013-11-14 [spatialite] Don't crash with NULL geometries (Fix #8739) Merge: d02e473 7c359d2 Werner Macho 2013-11-14 Merge pull request #993 from Jean-Roc/master update french translation Juergen E. Fischer 2013-11-14 report found Qt version on build Merge: c26fecf af73f30 ahuarte47 2013-11-14 Merge remote-tracking branch 'upstream/master' into Issue_8725-OGR ahuarte47 2013-11-14 #9062 (FIX): Unmerge, already fixed in master http://hub.qgis.org/projects/quantum-gis/repository/revisions/af73f30c27b5ee4860842d79eb59ad3b584e0965 Juergen E. Fischer 2013-11-14 ogr provider: actually only use relevant fields in feature iterator (fixes #9062) Juergen E. Fischer 2013-11-12 spatialite: update more infinite where clauses (followup 371f9ba17) Merge: 2f35a7b d3cd331 ahuarte47 2013-11-14 Merge remote-tracking branch 'origin/Issue_9062' into Issue_8725-OGR ahuarte47 2013-11-14 #9062 (FIX): Set relevant fields to related layer Fix the #9062 issue to avoid that OgrFeatureIterator always fetchs all feature attributes Marco Hugentobler 2013-11-13 First attempt to write AC1018 Alvaro Huarte 2013-11-13 #8725: Replace malloc by OGRMalloc Merge: e890e14 7dfa21c MORREALE Jean-Roc 2013-11-13 Merge pull request #5 from MarieSilvestre/master fr: some updates on translation MarieSilvestre 2013-11-13 fr: some updates on translation Nathan Woodrow 2013-11-13 Return expression string from QgsExpression::expression(). Don't use ::dump() Marco Hugentobler 2013-11-13 Move dxf dash writing into separated function Denis Rouzaud 2013-11-13 add missing actionFeatureAction() to gui and sip Werner Macho 2013-11-13 fix in name of translator Werner Macho 2013-11-12 translation update: hindi new maintainer Marco Hugentobler 2013-11-12 In case PROJ_LIB is set, disable grid shifts if .gsb file are not there Matthias Kuhn 2013-11-12 [globe] Re-Enable sync extent button and disable home button The home button was a duplicate of the globe in the center of the navigation arrows Marco Hugentobler 2013-11-12 Fix bug in datum transform sync Marco Hugentobler 2013-11-12 Add missing license headers Matthias Kuhn 2013-08-26 [globe] Fix extent synchronisation Juergen E. Fischer 2013-11-12 [FEATURE] leave backup when saving projects Merge: 3d0b286 7613141 volaya 2013-11-12 Merge pull request #986 from p0cisk/processing_crs [processing] Add crs selection panel to scripts Larry Shaffer 2013-11-11 [globe] Make OSG_PLUGINS_PATH CMake option functional on Mac Salvatore Larosa 2013-11-11 [georeferencer] change add raster icon to be consistent with the main app theme Salvatore Larosa 2013-11-11 [georeferencer] does not ask for output file when word file checkbox is checked - restore settings for word file checkbox Victor Olaya 2013-11-11 [processing] R improvements This commit: Deletes Example scripts Replaces Example scripts with more up to date versions Adds general categories for r scripts: Basic statistics, Vector processing, Raster processing and Point pattern analysis adds help files to all r scripts Adds a groups of r scripts entitled Home range analysis, that includes Kernel href, LSCV Kernel, Minimum convex polygon, single linkage cluster analysis and characteristic hull method, using adehabitatHR() Adds the following R scripts contributed by Yury Ryabov ( riabovvv(at)gmail.com ): Advanced raster histogram, Monte carlo spatial randomness, Relative distribution (distance covariate), Relative distribution (raster covariate), Merge: f2ca9a1 371f9ba ahuarte47 2013-11-11 Merge remote-tracking branch 'upstream/master' into Issue_8725-OGR Juergen E. Fischer 2013-11-11 don't use infinite in spatialite where clauses Juergen E. Fischer 2013-11-11 fix moc warning Juergen E. Fischer 2013-11-11 don't crash when transforming between the same CRSes and update map renderer sip bindings Marco Hugentobler 2013-11-11 Fix bug in linestyle export Marco Hugentobler 2013-11-11 Option to remember selected datum transformations Matthias Kuhn 2013-11-11 [composer] Fix crash when removing item group Matthias Kuhn 2013-11-10 [globe] Set a more appropriate home viewpoint Marco Hugentobler 2013-11-11 Add NZGD49<->NZGD2000 to srs.db Werner Macho 2013-11-10 translation update: ht_HR Merge: b21adc1 6aa4d95 Marco Hugentobler 2013-11-08 [FEATURE] selection of datum transformation for otf-reprojection Marco Hugentobler 2013-11-08 Bugfix datum transformation Paolo 2013-11-08 Better formatting for D&D designer dialog Paolo 2013-11-08 Fixes to IT GUI translation Marco Hugentobler 2013-11-08 Change tr() to transformation() and add python binding. Make datum_shift db update in a transaction Marco Hugentobler 2013-11-08 Write linetypes for simple line with custom dash pattern Merge: bff6fe5 e66bd80 Werner Macho 2013-11-08 Merge pull request #990 from rduivenvoorde/cppdocfix Cppdocfix Marco Hugentobler 2013-11-08 Use linetype 1 for polygons, check if iodevice is already open Marco Hugentobler 2013-11-08 Set higher coord_op values for ntv2 to separate them from the entries coming from datum_transform.csv Merge: 2cfe27b bff6fe5 ahuarte47 2013-11-08 Merge remote-tracking branch 'upstream/master' into Issue_8725-OGR Marco Hugentobler 2013-11-07 Use defined datum transform also in server and fix datum transform related bugs Nathan Woodrow 2013-11-07 Set currentfeature expression variable for Atlas printing. Fix #8766 Merge: e63e92e 866cee4 Alvaro Huarte 2013-11-07 Merge remote-tracking branch 'upstream/master' into Issue_8725-OGR Marco Hugentobler 2013-11-07 Highlight: get transformation object from maprenderer and added some consts Marco Hugentobler 2013-11-07 Set legend drawing order if creating a new project Merge: b6f7525 c7a23b4 Werner Macho 2013-11-06 Merge pull request #988 from tomass/master Lithuanian translation update Juergen E. Fischer 2013-11-07 only show dpi mode label in connection dialog for wms (fixes #9021) root 2013-11-06 Lithuanian translation update Richard Duivenvoorde 2013-11-06 forgot one link Richard Duivenvoorde 2013-11-06 fixing the api url's for the template giohappy 2013-11-04 fixed MMQGIS Extract by attributes Victor Olaya 2013-11-06 [processing] allow geometry types to be specified when defining inputs in scripts Victor Olaya 2013-11-06 simplified features method in vector tools Piotr Pociask 2013-11-06 [processing] Add crs selection panel to scripts Marco Hugentobler 2013-11-06 Implement line width and symbol level support Juergen E. Fischer 2013-11-06 fix warning Alexander Bruy 2013-11-06 restore retry variable, removed in 4f937ae667 Juergen E. Fischer 2013-11-05 use title as default name for WMTS layers (implements #8984) Juergen E. Fischer 2013-11-05 oracle provider: optionally use extents from metadata table (implements #8850) Merge: e18dcbf 872e500 mhugent 2013-11-05 Merge pull request #984 from BioEcoForests/master Use the layer type when adding a part to a featureless entry. Fix #8459 Marco Hugentobler 2013-11-05 Add dxf export gui and menu entry in qgisapp Merge: eb6ca1e 2bf0b2e mhugent 2013-11-05 Merge pull request #640 from mhugent/labeling_performance Labeling performance Alvaro Huarte 2013-11-05 Feature #8725: Simplification is assigned by flag The drawing simplification can be configured using flags that indicates what simplification type can be executed (Point, BBOX and AA) ahuarte47 2013-11-05 Feature #8725: fix merge changes Merge: 5441a1e eb6ca1e ahuarte47 2013-11-04 Merge remote-tracking branch 'upstream/master' into Issue_8725-OGR Alvaro Huarte 2013-11-04 Feature #8725: Disable simplification in composer Disable the simplification of geometries when the render request comes from a print composition to avoid rendering quality issues Matthias Kuhn 2013-11-04 [globe] Add Anti-Aliasing option (Enabled by default) Laurent Defert 2013-11-04 Use the layer type when adding a part to a featureless entry. Fix #8459 Marco Hugentobler 2013-11-04 Support multilines / polygons / multipolygons (as closed linestrings for now) Matthias Kuhn 2013-11-04 [cmake] Fix warnings. See http://www.cmake.org/Bug/view.php?id=14441 Radim Blazek 2013-11-04 Load raster category names fix ahuarte47 2013-11-04 Feature #8725: 'AA' disabling uses layer cfg 'AA' disabling for '1-pixel geometries' uses the layer simplification configuration Juergen E. Fischer 2013-11-04 add link to 2.0 api documentation Marco Hugentobler 2013-11-03 Try to find closest color in dxf palette Salvatore Larosa 2013-11-03 [Fixes #8926, #8987] add alpha channel for rubber band in extentSelector Salvatore Larosa 2013-11-03 [ftools] fixes #8988 Salvatore Larosa 2013-11-03 [ftools] disable add to canvas checkbox ìf out file is not selected nyalldawson 2013-11-03 Better default values for gradient fills nyalldawson 2013-11-03 [FEATURE] allow starting/ending a gradient at a features centroid Radim Blazek 2013-11-03 Load raster category names by GDAL provider, fixes #8886 nyalldawson 2013-11-03 [composer] add some more navigation shortcuts - ctrl + scroll wheel = fine zoom, middle button click = recenter composition Salvatore Larosa 2013-11-02 [pyqgis-console] add save button to history dialog, minor fixes for c38b8cb Salvatore Larosa 2013-11-02 [Fixes #8982] adds python bindings for actionZoomNext method update to autocompletion file Salvatore Larosa 2013-11-02 [Fixes #8972] allows to drop PostGIS Raster layers into main app Salvatore Larosa 2013-10-24 [pyqgis-console] fixes some translation string Salvatore Larosa 2013-10-24 [pyqgis-console] allows to remove entries from command history dialog Radim Blazek 2013-11-02 GDALGetCategoryNames TODO note Radim Blazek 2013-11-02 [FEATURE] labels support in QgsPalettedRasterRenderer, fixes #8886 Radim Blazek 2013-11-02 introduced qgssize in rasters instead of size_t to typedef it easily in SIP Marco Hugentobler 2013-11-01 Add null grid transformation if necessary Juergen E. Fischer 2013-10-31 debian packaging: disable globe plugin while libopenscenegraph-dev is uninstallable(followup 78be54c8c; see debian #728318) nyalldawson 2013-11-01 Consolidate all composer tools/add item actions to same toolbar, make this toolbar display on left of compositions by default Merge: ad27dfe 864df0f Nyall Dawson 2013-10-31 Merge pull request #923 from nyalldawson/gradient_fill2 [FEATURE] Add support for gradient fills for polygons Marco Hugentobler 2013-10-31 Add export macro Marco Hugentobler 2013-10-31 Ask datum transformation if vector layer is saved in another CRS Matthias Kuhn 2013-10-31 [Expression] redirect duplicate QString expression() to QString dump() Marco Hugentobler 2013-10-31 Remove debug code Matthias Kuhn 2013-10-31 Add expression constructor to QgsFeatureRequest Marco Hugentobler 2013-10-31 More debug messages Marco Hugentobler 2013-10-31 Add debug informations Marco Hugentobler 2013-10-31 Don't remove layer coordinate transform info if layer is no longer present (layer could be switched off but still present) Marco Hugentobler 2013-10-31 Dxf color palette Larry Shaffer 2013-10-31 Increase number of allowed open files on Mac - Increase from default 256 to 4096-to-8192 range, or OPEN_MAX for process - From code provided by Larry Biehl, Purdue University, USA, from 'MultiSpec' project nyalldawson 2013-10-31 Remove redundant composer selection tolerance setting nyalldawson 2013-10-31 Switch composer select/move icon to more appropriate icon Juergen E. Fischer 2013-10-31 optionally use base url for WMTS GetTile requests (implements #8595) nyalldawson 2013-10-31 Add shortcuts for raise/lower/bring to front/back for composer, fix some other composer shortcuts Nathan Woodrow 2013-10-30 Save precision correctly for composer map. Fix #8963 Marco Hugentobler 2013-10-29 Fix TABLE sections Alexander Bruy 2013-10-29 [processing] bump version to 2.0 Alexander Bruy 2013-10-29 [processing] fix issue wil multiple selection Merge: 9832ed9 ab1766c mhugent 2013-10-29 Merge pull request #976 from nyalldawson/composer_zoom_marquee2 Composer zoom improvements v2 Merge: ac0c5d1 d47e128 mhugent 2013-10-29 Merge pull request #978 from nyalldawson/composer_statusbar Status bar for composer Nyall Dawson 2013-10-24 Add sip bindings for guide controls Nyall Dawson 2013-10-24 [FEATURE] Add clear guides action to composer view menu Nyall Dawson 2013-10-24 Fix composer snap lines disappearing when new lines added Nyall Dawson 2013-10-24 [FEATURE] Move option to snap to guides to composer view menu, add indepenant toggles for showing guides and for enabling smart guides nyalldawson 2013-10-22 [FEATURE] Move option to snap to grid to composer view menu, add independant option to show/hide grid nyalldawson 2013-10-17 [FEATURE] Make sure composer grids are always drawn on top of composition Denis Rouzaud 2013-10-29 rubberband: respect enum order, add new icon type in SIP Leyan 2013-10-22 Replace manual square by creation of a ICON_FULL_BOX icon type for rubber band Martin Dobias 2013-10-29 Plugin layers: added support for legend symbology items Juergen E. Fischer 2013-10-29 translation string fix and german translation update Merge: e6d1093 d90801a Werner Macho 2013-10-28 Merge pull request #979 from Jean-Roc/master update french translation Matthias Kuhn 2013-10-28 [globe] Fix clipping problems when close to the ground Martin Dobias 2013-10-28 Message bar: do not add menu with "close all" if there is just one message Merge: 1d87841 e96dee6 MORREALE Jean-Roc 2013-10-28 Merge pull request #4 from Ecologeek/master update french translation Werner Macho 2013-10-28 translation update: finished finish by Kari Marco Hugentobler 2013-10-28 Added swiss ntv2 transformations Werner Macho 2013-10-28 translation update: fi by Kari Denis Rouzaud 2013-10-28 Followup d4027bb fix multiple results Sylvain Maillard 2013-10-28 update french translation Denis Rouzaud 2013-10-28 move LayerSelection identification to gui Denis Rouzaud 2013-10-28 add LayerSelection idetinfy mode in SIP Merge: 5aac8bb 990a25a Denis Rouzaud 2013-10-28 Merge pull request #974 from leyan/topology_bug correct bug in topology rubberband when OTF is enabled nyalldawson 2013-10-28 Ensure map is centered when updating map extent (fix #6988) Merge: 7508fcc 2689f99 Denis Rouzaud 2013-10-27 Merge pull request #975 from leyan/topology_bug_2 Correct topology rubber band bug for first and last vertexes ahuarte47 2013-10-28 Feature #8725: Disable simplify in editmode Disable the drawing simplification when the editmode is enabled, the geometries are cached for snapping Sylvain Maillard 2013-10-28 update french translation ahuarte47 2013-10-28 Feature #8725: Replace '*foo=bar' by 'memcpy' ahuarte47 2013-10-27 Feature #8725: drawConvexPolygon() can be faster On some platforms (e.g. X11), the drawConvexPolygon() function can be faster than the drawPolygon() function. https://qt-project.org/doc/qt-4.8/qpainter.html#drawConvexPolygon ahuarte47 2013-10-26 Feature #8725: Increment 2x the factor in slider ahuarte47 2013-10-26 Feature #8725: Show configuration option Shows a new rendering tab in the layer options form for configure the drawing simplification. nyalldawson 2013-10-26 [FEATURE] Ctrl+space temporarily switches composer to marquee zoom mode, Ctrl+Shift+Space temporarily switches to zoom out mode Leyan 2013-10-26 Correct topology rubber band bug for first and last vertexes Leyan 2013-10-26 correct bug in topology rubberband when OTF is enabled nyalldawson 2013-10-25 [FEATURE] Add composer zoom tool for marquee based zoom into a specific composer region nyalldawson 2013-10-27 [FEATURE] Add status bar to composer window which shows current cursor position, details about selection resize/move nyalldawson 2013-10-27 Remove button bar from composer Nathan Woodrow 2013-10-26 Add switch for handling pasting WKT from clipboard Juergen E. Fischer 2013-10-26 fix build error Nathan Woodrow 2013-10-25 Read WKT from system clipboard and create geometry on paste Giuseppe Sucameli 2013-10-24 dbmanager: be sure to close db cursors (fix #7679) Marco Bernasocchi 2013-09-28 Force compilers to generate vtable for QgsRendererV2Metadata Fix #8646 Fix #5170 Explanation see: http://trac.osgeo.org/geos/ticket/535#comment:11 Juergen E. Fischer 2013-10-24 fix crash in legend Juergen E. Fischer 2013-10-24 indentation update and a few fixed typos Merge: fc74f66 f6a6a0c Jürgen Fischer 2013-10-24 Merge pull request #966 from luipir/SITA3-WmsGetLegendGraphicManagement WMS getLegendGraphic management in QgsLegend and QgsComposer - Developed with funding from Regione Toscana-SITA ahuarte47 2013-10-24 Feature #8725: Remove unnecesary setPen() ahuarte47 2013-10-24 Feature #8725: Minor improvement ahuarte47 2013-10-24 Feature #8725: Fix dpi bug Paolo 2013-10-23 Comment on the IT GUI translation Juergen E. Fischer 2013-10-23 [FEATURE] add option to make layer with identified features active Marco Hugentobler 2013-10-23 Fix crash if saving raster with low resolution Marco Hugentobler 2013-10-23 Add layer name to datum transform dialog title Alvaro Huarte 2013-10-23 Feature #8725: check QgsFeatureRequest::NoGeometry Marco Hugentobler 2013-10-23 Show datum transform parameters in datum transform selection dialog Alvaro Huarte 2013-10-23 Feature #8725: simplification configurable The simplification is configurable by layer, also this commit contains reording of code. I have pending show in the properties form of layer a check for enable/disable the simplification Juergen E. Fischer 2013-10-22 [FEATURE] - make wms dpi mode configurable (fixes #8929) - enum for tile request attributes - allow setting of User-Agent (fixes #7361) - show error messages on WMS GetCapabilities Juergen E. Fischer 2013-10-22 spatialite provider: fix requests with attribute subsets Alvaro Huarte 2013-10-22 Feature #8725: Fast rendering of geometries Fix compile errors: include "std::limits" Juergen E. Fischer 2013-10-21 osgeo4w: fix packaging scripts for 32bit systems Alexander Bruy 2013-10-03 [processing] use list widget in Multiple selection dialog Werner Macho 2013-10-21 translation update: no by james Marco Hugentobler 2013-10-21 Fix loading of datum transformation from project Marco Hugentobler 2013-10-21 Add Dialog to select datum transformation nyalldawson 2013-10-21 Fix precision problems with composer marquee select by using a QRectF instead of a QRect for marquee bounds Merge: 0f82df1 91c8a3c mhugent 2013-10-20 Merge pull request #901 from sbrunner/legend-rule [qgis server] Add RULE parameter support in GetLegendGraphic ahuarte47 2013-10-21 Feature #8725: FastRendering of geometries Implements fast rendering of LineStrings and Polygons pre-applying a view threshold filter to the geometries to render in qgis. Also disable 'Antialiasing' when it is possible. View Table of test results in 'http://hub.qgis.org/issues/8725' Juergen E. Fischer 2013-10-20 ILIKE function help fix and german translation update Juergen E. Fischer 2013-10-20 osgeo4w: fix creatensis.pl Merge: 2b99414 6aecb09 Werner Macho 2013-10-20 Merge pull request #968 from Jean-Roc/traduction_ui update fr ui Jean-Roc Morreale 2013-10-20 update french translation Jean-Roc Morreale 2013-10-20 fetch new strings for french translation Victor Olaya 2013-10-20 [processing] fixed typo in nviz Victor Olaya 2013-10-20 [processing] fixed wrong indentation Victor Olaya 2013-10-13 [processing] corrected string Merge: 16ac256 6406835 volaya 2013-10-20 Merge pull request #945 from gioman/grassrasterexport [processing] fixes GRASS raster export in order to cope with r.horizon and r.composite Merge: f0c9efb 84b682d volaya 2013-10-20 Merge pull request #949 from gioman/sagarasterimportexport [processing] fixes SAGA import and export rasters Merge: 26702ab 4c80a07 volaya 2013-10-20 Merge pull request #954 from gioman/grassnvizcolor [processing] add COLOR parameter to nviz to allow draping rasters over the digital elevation model Merge: 54c576f 0bb3b23 volaya 2013-10-20 Merge pull request #953 from gioman/grasssagacomposite [processing] fixes SAGA RGBComposite and GRASS r.composite Merge: b7cdf5f c645342 volaya 2013-10-20 Merge pull request #950 from gioman/sagaresampling [processing] suggests to use different parameters with resampling in SAGA and to use the highest resolution when using SAGA raster calculator Merge: f724efd c5d6f70 volaya 2013-10-20 Merge pull request #948 from gioman/r_kappa [processing] no need to escape parameters in r.kappa as processing does it by default Merge: a9fea57 1038cd4 volaya 2013-10-20 Merge pull request #947 from gioman/escapegrassparameters [processing] GRASS parameters values needs always to be escaped Merge: eb2200e b9f7c74 volaya 2013-10-20 Merge pull request #946 from gioman/r_horizon [processing] fixes GRASS r.horizon and adds r.horizon.height Merge: fbfafb9 4db8bba volaya 2013-10-20 Merge pull request #952 from gioman/sagaresamplingdescription [processing] better parameters descriptions for SAGA resampling tool Merge: 5386b28 fd8cb1f volaya 2013-10-20 Merge pull request #955 from gioman/v_select [processing] adds v.select Merge: 99ecb03 78bc437 volaya 2013-10-20 Merge pull request #957 from gioman/sagapointstatsforpoly [processing] Fix SAGA points stats for polygons Merge: 8a11a82 fecccda volaya 2013-10-20 Merge pull request #960 from gioman/sagakriging [processing] fixes Ordinary Kriging for both SAGA 2.10 and 2.0.8 Merge: ac88d9f 10312cc volaya 2013-10-20 Merge pull request #961 from gioman/grassvectorexport [processing] fixes ticket #8814 Merge: a7bf496 d09eb56 Werner Macho 2013-10-20 Merge pull request #967 from tomass/master Lithuanian translation update Tomas 2013-10-20 Lithuanian translation update Juergen E. Fischer 2013-10-20 osgeo4w: merge 32 and 64 bit packaging scripts Matthias Kuhn 2013-10-20 [spatialite] Field length and precision cannot be specified Partial fix for #8481 Matthias Kuhn 2013-10-20 [spatialite] Fix LongLong type for SpatiaLite 4 Juergen E. Fischer 2013-10-19 make QgsMapToolTouch::gestureEvent() public Alexander Bruy 2013-10-19 fix scalecombobox test Alexander Bruy 2013-10-19 use localized representation of scales in scale combobox, improved patch from Alvaro Huarte (fix #8733) Stéphane Brunner 2013-09-15 Add missing test. Witout this the scaleFactor in MM becomes 0. Than we enter in a loop. For example on a GetLegendGraphic with a line style as Steps Stéphane Brunner 2013-09-15 Fix GetLegendGraphic with scale on non scale limited rule Stéphane Brunner 2013-09-15 Fix GetLegendGraphic with scale on Categorized or Graduated symbol Stéphane Brunner 2013-09-15 Don't needed anymore Without this the marker symbol is centered on the symbol place. Stéphane Brunner 2013-09-15 Get the right rule in Categorized and Graduated Stéphane Brunner 2013-09-15 Fix method signature for non rule based symbol Alexander Bruy 2013-10-19 add message about processing completion (fix #8916) Stéphane Brunner 2013-09-15 Fix symbole size Stéphane Brunner 2013-09-14 Add RULE parameter support in GetLegendGraphic Alexander Bruy 2013-10-18 [processing] add warning before clearing log Marco Hugentobler 2013-10-18 Catch datum transform request signal in QgsMapCanvas pcav 2013-10-18 IT GUI translation Merge: 7612e12 ba524fc Marco Hugentobler 2013-10-18 Store relation between layer and coordinate transform in maprenderer class Marco Hugentobler 2013-10-17 Store relation between layer and coordinate transform in maprenderer class Alexander Bruy 2013-09-12 [FEATURE] add Nautical miles to measure units (fix #4017). Initial patch by Jorge Tornero with improvements Luigi Pirelli 2013-09-30 Added managing of WMS legends (getLegendGraphic) in the addLegend of QgsComposer. Added parameters to interactively modify wms legends scale. Add WMS getLegendGraphic draw in composer and add it's size parameters in composer window. Developed with funding from Regione Toscana-SITA Luigi Pirelli 2013-09-30 Added a resolution parameter in option->Canvas&Legend to instruct WMS getLegendGraphic to get WMS legend with a good resolution for printing. Set value to 0 to get default pixmap resolution. Drawback in case of big resolution of the legend, it becames too big to be correctly shown as PopUp in the QgsLegend interface. Developed with funding from Regione Toscana-SITA Luigi Pirelli 2013-09-26 added wms getLegendGraphic management in case of rasterLayerSymbology - Developed with funding from Regione Toscana-SITA This commit add the getLegendGraphic pixmap as legend in the QgsLegend. Due to architectural QgsLegend limitation pixmap is shown of the same dimension of every single legend element (too little) managing of getLegendGraphic popup and refresh - Developed with funding from Regione Toscana-SITA Due the fact that WMS pixmap is too little, has been added a popup to show WMS legend in the original size Has been added feature to refresh getLegendGraphics to every scale change due to extend modification. In this way getLagendGraphic can be updated basing on scale and in the future also basing on viewport. Modified QPixmap to QImage to be device independent set absolute position due to popup is not referred to legendInterface (avoid hiding of the legend) Luigi Pirelli 2013-09-16 added getLegendGrafic feature to WmsDataProvider - Developed with funding from Regione Toscana-SITA better scale management to avoid call getLegendGraphics everytime + some defaults + added code example to manage LegendURL when it will be correctly parsed - Developed with funding from Regione Toscana-SITA Alvaro Huarte 2013-10-18 Feature #8725: Fast rendering of geom (v-OGR) Implements fast rendering of LineStrings and Polygons pre-applying a view threshold filter to the geometries to render in qgis. Also disable 'Antialiasing' when it is possible. View Table of test results in 'http://hub.qgis.org/issues/8725' (This version of branch implements the improvement in vector-providers) Juergen E. Fischer 2013-10-18 postgres provider: support materialized view (implements #8791) nyalldawson 2013-10-14 [FEATURE] Marquee select for composer items nyalldawson 2013-10-13 [FEATURE] Zoom compositions with mouse wheel nyalldawson 2013-10-13 [FEATURE] Add keyboard shortcuts for composer zoom in/out/full, group… … Merge: 591d9df 9290d7a mhugent 2013-10-17 Merge pull request #930 from nyalldawson/pan_composer3 Panning controls and shortcuts for composer Matthias Kuhn 2013-10-17 Fix warning Matthias Kuhn 2013-10-17 use static locals instead of global pointers for some singletons (proably more valgrind happyness; followup 572bda85) Merge: 087b52b d7db4a5 mhugent 2013-10-17 Merge pull request #916 from nyalldawson/composer_grid2 Composer grid fixes Merge: d7c29ae 8eb6c91 Jürgen Fischer 2013-10-17 Merge pull request #965 from luipir/SITA2-WmsTileRetry Added disclaimer to WMS TileRetry feature - Development funded from Regione Toscana - SITA (followup a563f2a and 3e27811) Luigi Pirelli 2013-10-17 added disclaimer - Development funded from Regione Toscana - SITA Matthias Kuhn 2013-10-17 Update timeout of network request, if data is transferred Up to now, any network connection was killed after a max amount of /qgis/networkAndProxy/networkTimeout milliseconds. This led to problems for large or otherwise slow downloads. This patch circumvents timeouts for as long as data is being transferred. Larry Shaffer 2013-10-17 Fix for #8847, blank entries (menu separators) in Customization dialog tree - Do not add separator actions to menu action tree; separators could not be toggled on/off with customization anyways Marco Hugentobler 2013-10-17 Store relation between layer and coordinate transform in maprenderer class gioman 2013-10-17 fixes ticket #8814: gioman 2013-10-17 Fixes Ordinary Kriging for both SAGA 2.10 and 2.0.8 Radim Blazek 2013-10-17 Propagate WMS identify GML schema error and show it in results, fixes part of #8724 nyalldawson 2013-10-17 Fix loading composer item frame thickness (fix #8866) Matthias Kuhn 2013-10-17 API documentation for QgisInterface Borys Jurgiel 2013-10-17 [Plugin installer] fix #8876 nyalldawson 2013-10-17 Don't draw mouse handles in composition outputs (fix #8879) Radim Blazek 2013-10-17 fix set image no data, fixes #8773 gioman 2013-10-17 SAGA Points Statistics for Polygons can work just in SAGA 2.10 gioman 2013-10-17 SAGA Points Statistics for Polygons can work just in SAGA 2.10 Larry Shaffer 2013-10-16 Fix for #8874, right-clicking on message in message bar shows black background for context menu Larry Shaffer 2013-10-16 Fix for #8860, (followup 65200e3) - Hide background of tool button's menu button on Ubuntu Larry Shaffer 2013-10-16 Fix for #8860, overlap of Close drop-down menu button on message bar - Make tool button menu pop indicator a separate single-click button Larry Shaffer 2013-10-16 [tests] Fix OSM unit test on Mac Radim Blazek 2013-10-16 Default OTF modes made radio buttons Radim Blazek 2013-10-16 Calculate better context (extent,size) if not given in WMS, WCS identify. Fixes #8724 Martin Dobias 2013-10-17 [osm] Fix missing nodes with 64-bit ID (#8865) pcav 2013-10-16 Fixes to IT translation pcav 2013-10-16 Fixes to IT translation gioman 2013-10-16 the logic for SAGA raster import was not right Marco Hugentobler 2013-10-16 Add source/dest datum transform as member to coordinate transform and change cache options accordingly gioman 2013-10-16 adds v.select gioman 2013-10-16 add COLOR parameter to nviz to allow draping rasters over the digital elevation model Matthias Kuhn 2013-10-16 Editor widget configuration: Only show one config dialog at a time Matthias Kuhn 2013-10-16 sip: expose QgsEditorWidgetWrapper.initWidget to python gioman 2013-10-15 fixes SAGA RGBComposite and GRASS r.composite Merge: bad4b77 67ac093 Werner Macho 2013-10-15 Merge pull request #951 from tomass/master Lithuanian translation update gioman 2013-10-15 better parameters descriptions for SAGA resampling tool Tomas 2013-10-15 Lithuanian translation update gioman 2013-10-15 suggests to use different parameters with resampling in SAGA and to use the highest resolution when using SAGA raster calculator gioman 2013-10-15 fixes SAGA import and export rasters gioman 2013-10-15 no need to escape parameters in r.kappa as processing does it by default gioman 2013-10-15 GRASS parameters values needs always to be escaped gioman 2013-10-15 fixes GRASS r.horizon and adds r.horizon.height gioman 2013-10-15 fixes GRASS raster export in order to cope with r.horizon and r.composite outputs Werner Macho 2013-10-15 adding indian flag for mr Merge: 125decf 23af7f7 Juergen E. Fischer 2013-10-15 Merge https://github.com/luipir/Quantum-GIS Alexander Bruy 2013-10-15 [processing] update ui for number input dialog Marco Hugentobler 2013-10-15 Initialise coordinate transform with datum transform ids Marco Hugentobler 2013-10-15 Add method to lookup datum transformations in srs.db Merge: e04b426 4f4ac81 Werner Macho 2013-10-14 Merge pull request #934 from Jean-Roc/traduction_ui update fr ui Merge: e04b426 fc9c43b MORREALE Jean-Roc 2013-10-14 Merge pull request #3 from Ecologeek/traduction_ui update french translation Sylvain Maillard 2013-10-14 update french translation Juergen E. Fischer 2013-10-13 spatialite: run InitSpatialMetadata(1) on SL >= 4.1 (fixes #8340) Alexander Bruy 2013-10-13 [processing] add gdal interpolation (data metrics) algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal interpolation (nearest) algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal interpolation (average) algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal interpolation (invdist) algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal color-relief algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal roughness algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal TPI algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal TRI algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal aspect algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal slope algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] add gdal hillshade algorithm (addresses #7201) Alexander Bruy 2013-10-13 [processing] use default icon for fillnodata Alexander Bruy 2013-10-13 [processing] remove unused GDAL icons nyalldawson 2013-10-13 Remove outdated TODO nyalldawson 2013-10-13 Fix graphical corruption during item resize Matthias Kuhn 2013-10-13 [spatialite] Improve field-type handling when changing attributes Matthias Kuhn 2013-10-13 [spatialite] Add proper support for NULL values Juergen E. Fischer 2013-10-12 use static locals instead of global pointers for some ^Cngletons (proably more valgrind happyness; followup 572bda85) Juergen E. Fischer 2013-10-12 spit: use qt templates Juergen E. Fischer 2013-10-12 python's expanduser doesn't necessarily returns utf-8 (followup 4cb37b1a) Matthias Kuhn 2013-10-12 [spatialite] Several fixes for provider (Fix #8636) And fixes the NoGeometry behavior Matthias Kuhn 2013-10-12 Create hash method for QgsPoint (Fix #8775) Alexander Bruy 2013-10-09 [processing] homogenize widgets used for ParameterNumber (fix 8807) Victor Olaya 2013-10-12 [processing] fixed breaklines in script help Merge: f4e0c83 a15cbeb Werner Macho 2013-10-12 Merge pull request #931 from tomass/master Lithuanian translatio update Tomas 2013-10-12 Lithuanian translatio update Merge: 572bda8 860a238 Werner Macho 2013-10-11 Merge pull request #926 from ahuarte47/Issue_8769 Fix #8769 - Missing flags for 3 locales Juergen E. Fischer 2013-10-11 use static local instead of pointer/global to make windows and possibly valgrind happy (followup 9e6e62d9c) Juergen E. Fischer 2013-10-11 fix instant crash on windows again (followup dc3b56a1 and 9d8d3178) Matthias Kuhn 2013-10-11 [relations] Save relation name from add dialog. And some smaller leftover cleanup Werner Macho 2013-10-11 translation update: fi by Kari Matthias Kuhn 2013-10-11 Ignore geometry-less features when calculating layer extent (Fix #8805) Juergen E. Fischer 2013-10-10 support for python plugin directory with accents in username (fixes #2512 again) Juergen E. Fischer 2013-10-10 remove unused QgsMapLayer::mTransparencyLevel Matthias Kuhn 2013-10-10 Fix warnings Victor Olaya 2013-10-10 [processing] fixed wrong signal connection nyalldawson 2013-10-10 [FEATURE] Allow panning of composer by holding space key nyalldawson 2013-10-10 [FEATURE] Allow panning compositions by dragging with middle mouse button nyalldawson 2013-10-10 [FEATURE] Add composer pan action Matthias Kuhn 2013-10-10 [spatialite] Fix crash with a subset of attributes request for joined field Matthias Kuhn 2013-10-10 Add join field to provider request also when requesting a subset of attributes Fixes #8757 nyalldawson 2013-10-10 Add method for preventing composer items from changing mouse cursor and workaround for qt bug 3732 ahuarte47 2013-10-08 Fix #8776 Set the canvas color in 'qgsprojectproperties::apply()' before refresh Matthias Kuhn 2013-10-10 Add option to insert a NULL value in a value map when loaded from layer Merge: 6242025 1261d04 Werner Macho 2013-10-09 Merge pull request #929 from tomass/master Lithuanian translation update Nathan Woodrow 2013-10-10 Add uuid function for expression engine Nathan Woodrow 2013-10-10 Use const pointer for QgsExpression:replaceExpressionText() Tomas 2013-10-09 Lithuanian translation update Juergen E. Fischer 2013-10-09 fix build with Qt <4.7 (eg. Debian Lucid) Juergen E. Fischer 2013-10-03 creatensis: build installed.db for osgeo4w-setup Juergen E. Fischer 2013-10-08 fix link errors on windows Martin Dobias 2013-10-08 Allow listing all available plugin layers ahuarte47 2013-10-08 Fix #8769 - Missing flags for 3 locales Fixed the images related to servian translations, ignore the 'en' translation (overrided for 'en_US') in the load of the QsgOptions dialog. Victor Olaya 2013-10-07 [processing] added extract algorithm as alternative to selection algorithms that can be used in the modeler Victor Olaya 2013-10-07 [processing] minor bug fixes Victor Olaya 2013-10-07 [processing] removed unused algorithm icons Sandro Santilli 2013-10-07 Replace AlArabiya font family with Sans, more likely to be found Matthias Kuhn 2013-10-07 Fix more headers Matthias Kuhn 2013-10-07 Fix header Matthias Kuhn 2013-10-07 Add relation unit test Matthias Kuhn 2013-10-04 Add relations capabilites and widgets Matthias Kuhn 2013-10-04 Move addFeature, startEditing and stopEditing vector layer actions to an abstract base class QgsVectorLayerTools in the gui library, so these can be reimplemented for a custom app, but can also be used from plugins or in the gui library. Matthias Kuhn 2013-10-04 [attrtable] Selection model and request filter * With a selection model, the way the attribute table handles selections can be customized. E.g. synchronized to layer selection or used to pick features. * With request filters, the visible features on an attribute table can be limited. This will effectively reduce the subset of features the attribute table works on. Additional filters by means of a proxy model can of course further reduce the visible subset subsequently. Matthias Kuhn 2013-10-02 QgsFeatureRequest::NoGeometry is optional for non-geometry-layers nyalldawson 2013-09-08 [FEATURE] Add support for gradient fills for polygons Juergen E. Fischer 2013-10-07 osgeo4w: move o4w_env.bat call to top (starts with clean path now) Juergen E. Fischer 2013-10-07 fix warnings Werner Macho 2013-10-06 translation update: lt by tomass Victor Olaya 2013-10-06 [processing] fixed #8770 (error in batch processign interface) Victor Olaya 2013-10-06 [processing] fixed commandline names in gdal algorithms Victor Olaya 2013-09-27 [processing] some refactoring. Removed old-style signals connection Victor Olaya 2013-09-27 made algorithms that require open layers (not just file paths) not to appear in modeler ant batch processign interface Merge: 4072e39 442b236 volaya 2013-10-06 Merge pull request #921 from gioman/master add the -r parameter to r.external (used now to create grass inputs for ... Giovanni Manghi 2013-10-06 Export 3d vectors as such Giovanni Manghi 2013-10-06 New take on v.surf.bspline in processing toolbox, Fixes #5943 Giovanni Manghi 2013-10-05 add the -r parameter to r.external (used now to create grass inputs for processing, replacing r.in.gdal) and so fixes grass modules like r.reclass.area and probably many others Merge: 6d5cf6f 934e485 Chris Crook 2013-10-04 Merge pull request #917 from matthias-kuhn/csv_test_fix Fix CSV test to support python NULL value Matthias Kuhn 2013-10-04 More cont'ness for QgsDistanceArea nyalldawson 2013-10-04 [FEATURE] Holding ctrl while dragging a composer selection temporarily turns off snapping Hugo Mercier 2013-09-09 Emit a signal when layer symbology changes Matthias Kuhn 2013-10-04 Remove outdated SIP version requirements from INSTALL Marco Hugentobler 2013-10-04 Fix renderer items in legend (#8651) nyalldawson 2013-10-04 Fix selection handles showing incorrectly on new compositions Juergen E. Fischer 2013-10-03 postgres provider: fix limit on geometry type detection with estimated meta data enabled Juergen E. Fischer 2013-10-03 fix typo Juergen E. Fischer 2013-10-03 osgeo4w: move system directories to end of PATH (fixes #8629) Marco Hugentobler 2013-10-03 Read available datum transformations from gdal file nyalldawson 2013-10-03 [FEATURE] Pressing shift while moving composer items constrains movement to horizontal/vertical axis nyalldawson 2013-10-03 [FEATURE] Shift-resizing composer items maintains their aspect ratio, ctrl-resizing resizes from item center Salvatore Larosa 2013-10-03 [pyqgis-console] added API file for 2.0 version Salvatore Larosa 2013-10-03 [pyqgis-console] autocompletion file update Salvatore Larosa 2013-10-03 [pyqgis-console] Sets minimum height for input area based of font metric nyalldawson 2013-10-03 Fix position lock not preventing moving or resizing composer items Alexander Bruy 2013-10-03 [processing] add QtDesigner .ui file for Number input dialog Alexander Bruy 2013-10-02 [processing] use QtDesigner .ui for Autofill dialog Alexander Bruy 2013-10-02 [processing] use QtDesigner .ui for Multiple selection dialog Radim Blazek 2013-10-02 Requirements SIP >= 4.12, PyQt >= 4.8.3 SIP >= 4.12 for keyword_arguments Module argument PyQt >= 4.8.3 for QSettings with type argument Alexander Bruy 2013-10-02 [processing] use QtDesigner ui file for Edit rendering styles dialog Alexander Bruy 2013-10-01 [processing] code formatting, make sources more pep8 compliant Matthias Kuhn 2013-10-02 Fix CSV test to support python NULL value Werner Macho 2013-10-02 added hindi language to GUI on request Nyall Dawson 2013-09-17 [FEATURE] Allow multi item drag and resize in composer (fix #7918) [FEATURE] Always draw selection handles on top of composition, add dashed border for selected items (fix #7793) Move responsibility for drawing selection mouse handles and mouse interaction with selection to new class Merge: dd914b8 96bd7e7 pcav 2013-10-01 Merge branch 'master' of github.com:qgis/QGIS pcav 2013-10-01 Improvements to IT GUI translation Radim Blazek 2013-10-01 give correct layer to QgsHighlight in QgsIdentifyResultsDialog, fixes #8724 Alexander Bruy 2013-09-30 [processing] add gdal2xyz tool (fix #8723) Alexander Bruy 2013-09-30 [processing] handle non-ASCII characters in layer name when exporting (fix #8673) Merge: 814ae4c 7004a05 volaya 2013-09-30 Merge pull request #915 from gioman/master Makes SAGA supervised classification work also with SAGA 2.0.8, fixes #8715. Add schema selection to GUI of "Import into PostGIS" tool (fixes #8513). Fixes export of GRASS vectors (fix #8515) Juergen E. Fischer 2013-09-30 fix data retrieval in attribute table from geometryless spatialite tables Giovanni Manghi 2013-09-29 Update GrassAlgorithm.py Giovanni Manghi 2013-09-29 Update ImportIntoPostGIS.py Giovanni Manghi 2013-09-29 Update supervisedclassification.py Giovanni Manghi 2013-09-29 Update supervisedclassification.py Merge: cfa3464 40d41ca Werner Macho 2013-09-29 Merge pull request #914 from tomass/master Lithuanian translation update Tomas 2013-09-29 Lithuanian translation update Merge: a95f07c 3e382da Larry Shaffer 2013-09-28 Merge pull request #905 from yellow-sky/show_partial_labels Show partials labels Merge: 121d76e 315e7e2 Werner Macho 2013-09-28 Merge pull request #913 from tomass/master Lithuanian translation update Larry Shaffer 2013-09-27 Fix for #8705, duplication of composer should inherit custom paper size root 2013-09-27 Lithuanian translation update Merge: 94d7389 9d8d317 pcav 2013-09-27 Merge branch 'master' of github.com:qgis/QGIS pcav 2013-09-27 Fix to IT GUI translation Juergen E. Fischer 2013-09-27 fix instant crash on windows Merge: b6ca151 a5ee91a volaya 2013-09-26 Merge pull request #912 from bstroebl/selectByAttribute [processing] Make select by attribute work Merge: 7a720c2 e5a7210 volaya 2013-09-26 Merge pull request #911 from bstroebl/testEliminate [processing] select features to eliminate in algorithm Alexander Bruy 2013-09-26 [processing] sync GDAL algorithm names with Raster menu Merge: 012e8b1 c222c67 pcav 2013-09-26 Merge branch 'master' of github.com:qgis/QGIS pcav 2013-09-26 Fix #8697 Juergen E. Fischer 2013-09-26 fix #8697 (git grep clickx.*clickx is your friend) yellow-sky 2013-09-26 Unit tests for ShowingPartialsLabels reorganized Merge: b9b4119 770e52b pcav 2013-09-26 Merge branch 'master' of github.com:qgis/QGIS pcav 2013-09-26 Fix to IT GUI translation yellow-sky 2013-09-26 Fix pal settings dialog title Bernhard Ströbl 2013-09-26 [processing] Make select by attribute work Matthias Kuhn 2013-09-12 Modularize editor widgets Alexander Bruy 2013-09-26 [processing] add option to keep resolution when clipping raster Bernhard Ströbl 2013-09-26 [processing] select features to eliminate in algorithm pcav 2013-09-26 Fix to IT GUI translation pcav 2013-09-26 Fix #8668 Nyall Dawson 2013-09-25 Add option for grid snap tolerance, move selection tolerance spin box to new section (fix #8214) Larry Shaffer 2013-09-25 Fix sip API reseting to version 1 (fixes PyQgs* tests currently failing due to reset) Juergen E. Fischer 2013-09-25 fix PyQgsAtlasComposition and PyQgsComposerLabel test Juergen E. Fischer 2013-09-25 osgeo4w: ignore rmdir result pcav 2013-09-25 Typos in IT GUI translation Alexander Bruy 2013-09-25 [processing] fix lidar provider broken in 1ad2334dbe Nyall Dawson 2013-09-24 Improve visual appearance of composer grid by making sure it is always drawn using a 1 pixel width cosmetic pen Remove options for composer pen width Victor Olaya 2013-09-24 [processing] enabled create new script action Victor Olaya 2013-09-24 [processing] improved saga/grass/otb installation checks Victor Olaya 2013-09-24 [processing] minor fixes Victor Olaya 2013-09-24 [processing] renmed setting group from ProcessingQGIS to Processing Victor Olaya 2013-09-24 [processing] improved lidar provider (contributed by Martin Isenburg) Victor Olaya 2013-09-24 [processing] changed ordinary kriging description (adapted to 2.1) Victor Olaya 2013-09-24 Fixed issue when using multiple vector inputs Larry Shaffer 2013-09-24 Add unit test for PYQGIS_STARTUP environment variable - Make PyQgsAppStartup test more general and PEP8 compliant Larry Shaffer 2013-09-24 Add support for PYTHONSTARTUP-like environment variable, PYQGIS_STARTUP - Different than user's 'startup.py,' since it is loaded just after Py_Initialize, specifically from env variable - Useful for cleaning sys.path, e.g. isolating/loading the initial environ without requiring a virt env, like homebrew or MacPorts installs on Mac Larry Shaffer 2013-09-24 Add extra CXXFLAGS flags set by user; can be -D CXX_EXTRA_FLAGS or environment variable - Command line -D option overrides environment variable - Useful for suppressing transient upstream warnings in dependencies, like Qt Juergen E. Fischer 2013-09-24 some more syncs with release-2_0 Juergen E. Fischer 2013-09-21 osgeo4w: more 'improvements' * package(64).cmd: * remove apps/%PACKAGENAME% before install (ie. don't repackage old cruft) * context_help, function_help, qgis_help.db, delimitedtextplugin.dll and diagramoverlay.dll removed in 2.0 * package64.cmd: cmake is in PROGRAMFILES(X86) * nsis: installer don't use 64bit settings when installing 32bit package on 64bit OS Juergen Fischer 2013-09-23 fix gui bindings with SIP 4.15 Juergen Fischer 2013-09-24 revert change of doxygen DOT_GRAPH_MAX_NODES Dražen Odobašić 2013-09-22 apply #8601 Juergen E. Fischer 2013-09-22 debian packaging: add saucy and jessie support also add note about tests and result uploads to INSTALL.t2t Victor Olaya 2013-09-23 [processing] added -TRANSFORM parameter in SAGA Merge: 6c2fa21 ae5c68b Otto Dassau 2013-09-23 Merge pull request #908 from eykamp/patch-1 Grammar eykamp 2013-09-23 Grammar Merge: f758597 1bc397d Marco Hugentobler 2013-09-23 Merge branch 'info_layer_selection' Marco Hugentobler 2013-09-23 Revert "[FEATURE] Pan composer with middle mouse button" This reverts commit 9bc8c805f115d5f1c9067e61899827961a856e40. Merge: 9bc8c80 186b6bd Marco Hugentobler 2013-09-23 [Feature]: Add anchor point setting for marker symbol layers nyalldawson 2013-05-27 [FEATURE] Pan composer with middle mouse button Zoom in and out on composer using mouse scroll wheel Victor Olaya 2013-09-23 [processing] better error handling and some minor fixes solved issue with trailing characters when calling mkdir solved issue with non-ascii characters in help files Nathan Woodrow 2013-09-23 Add __geo_interface__ to QgsFeature and QgsGeometry Marco Hugentobler 2013-09-23 Make Anchor points usable from ellipse symbol layer too Salvatore Larosa 2013-09-21 fix qml file for directed edge layer in topoviewer plugin Alexander Bruy 2013-09-22 [processing] if min and max values not set use redefined ones Alexander Bruy 2013-09-22 [processing] consider min and max values for int values Alexander Bruy 2013-09-22 [processing] add toolbar to modeler dialog Tim Sutton 2013-09-21 Added some red and blue point markers. Salvatore Larosa 2013-09-21 fixes new touch icon Juergen E. Fischer 2013-09-21 osgeo4w: remove package directory before installing Victor Olaya 2013-09-21 [processing] some code cleaning Victor Olaya 2013-09-21 [processing] saga fixes. "2.0.8 is now default target version Victor Olaya 2013-09-21 [processing] changed log and config filenames Victor Olaya 2013-09-21 [processing] modeler now warns before closing if there are changes Victor Olaya 2013-09-21 test models and scripts are now hidden Victor Olaya 2013-09-20 [processing] corrected parameter definition in Eliminate Victor Olaya 2013-09-20 Added "eliminate sliver polygons" algorithm skeleton(still a draft first version) Victor Olaya 2013-09-20 [processing]modified v.overlay description Victor Olaya 2013-09-20 [processing]code cleaning Victor Olaya 2013-09-20 [processing] fixes issue in saga with multiple inputs Merge: 6f638a5 9dbd8fa Werner Macho 2013-09-21 Merge pull request #904 from ndamiens/tradfr update french translation With OK from JR I'll merge this into master for now .. Tim Sutton 2013-09-21 updates to contributors map Nyall Dawson 2013-05-20 [feature] Add select next item above and below commands to composer edit menu nyalldawson 2013-05-20 [feature] CTRL-click in composer to select items below other items (fix #4358) Etienne Tourigny 2013-09-20 add etiennesky to contributors maps Etienne Tourigny 2013-09-20 cpt-city: show all ramps by default when opening dialog and changing view types, unless a ramp has been selected Marco Hugentobler 2013-09-20 Fix data defined label help Marco Hugentobler 2013-09-20 More data defined anchor points Nicolas Damiens 2013-09-20 update french translation Nicolas Damiens 2013-09-20 add non-breaking spaces yellow-sky 2013-09-20 Added unit-tests for ShowingPartialsLabels Juergen E. Fischer 2013-09-20 osgeo4w: cpt-city-qgis-min was just moved to resouces nicolas 2013-09-20 update french translation Denis Rouzaud 2013-09-20 added 3nids to contrib maps Tim Sutton 2013-09-20 Updates to contributors document Tim Sutton 2013-09-19 New android touch icon Salvatore Larosa 2013-09-20 allows to enable the field calculator toolbar icon even for point layers if editable yellow-sky 2013-09-20 Added python binding for ShowingPartialsLabels Marco Hugentobler 2013-09-19 Anchor points for font marker Salvatore Larosa 2013-09-19 adds myself to contributors json file Salvatore Larosa 2013-09-19 [pyqgis-console] added more settings for fonts color Tim Sutton 2013-09-19 Updates to downloads stats spreadsheet Tim Sutton 2013-09-19 Contributors list added Juergen E. Fischer 2013-09-19 add support for FilterFids to oracle provider (followup 0c90f320) Matthias Kuhn 2013-09-18 Add featureiterator tests Matthias Kuhn 2013-05-20 QgsFeatureRequest: New filters FilterExpression and FilterFids Juergen E. Fischer 2013-09-18 more URL updates (followup 8c479db7) Merge: 27ee738 a781e1e Nathan Woodrow 2013-09-18 Merge pull request #786 from minorua/gdaltools_of2 GdalTools: apply selected name filter to -of parameter (fix #8408) Merge: 718f556 8c479db Nathan Woodrow 2013-09-17 Merge pull request #900 from simonokeefe/patch-1 Update GitHub URL Simon O'Keefe 2013-09-18 Update URL Tim Sutton 2013-09-17 New splash from Anita Juergen E. Fischer 2013-09-17 update welcome image for standalone installer (fixes #8623) nyalldawson 2013-09-16 Select previously locked items after running Unlock All nyalldawson 2013-09-15 Make composer history track lock/unlock state Move unlock/lock functions from QgsComposerView to QgsComposition Add keyboard shortcuts to lock item/unlock all Marco Hugentobler 2013-09-17 Apply anchor point in svg marker symbollayer and widget Juergen E. Fischer 2013-09-17 indentation update (note to self: always run scripts/prepare-commit.sh before committing) Marco Hugentobler 2013-09-17 Implement anchor point shift and expose in simple marker dialog nyalldawson 2013-09-16 [FEATURE] Setting for corner radius for composer rectangle shapes, allows creation of rounded rectangles in composers Add tests for composer shapes Larry Shaffer 2013-09-16 Fix crash on launch of bundled Mac app Larry Shaffer 2013-09-16 [gui] Fix color button where initially set color is same as default, but does not set background of button Salvatore Larosa 2013-09-17 [pyqgis-console] reject changes in settings if they are not applied Larry Shaffer 2013-09-16 [gui] Fix excessive height on resize of About dialog on Mac Juergen E. Fischer 2013-09-16 debian packaging update Juergen E. Fischer 2013-09-15 move creation of gdal_pam to createDB (fixes #8613) Alexander Bruy 2013-09-16 [processing] several fixes in config dialog yellow-sky 2013-09-16 Mapserver read ShowingPartialsLabels configurations from project file now and added default init value to QgsPalLabeling Marco Hugentobler 2013-09-16 Consider scale for data defined symbology properties Marco Hugentobler 2013-09-16 Prepare color palette matching for dxf Juergen E. Fischer 2013-09-16 sqrt with an integer ambiguous on MSVC Werner Macho 2013-09-16 translation update: pt_BR by Arthur Merge: 68d12b4 8fb9816 Tim Sutton 2013-09-15 Merge pull request #898 from dakcarto/test_appstartup_1 [tests] Make app startup test work on Mac Larry Shaffer 2013-09-15 [tests] Make app startup test work on Mac - Handle bundled app path on Mac - Move test writes to temporary, instead of source, directory - Add Mac code for options.ini parent directory - Add Mac options.ini file for plugin path test - Clean up imports Salvatore Larosa 2013-09-15 [pyqgis-console] autocompletion file update Salvatore Larosa 2013-09-15 [pyqgis-console] added some typing setting: - auto insertion "import" string - auto insertion "):" for classes and methods yellow-sky 2013-09-15 Added user interface for changing ShowPartialsLabels setting value Tim Sutton 2013-09-15 Nicer icons for QGIS in debian packages Juergen E. Fischer 2013-09-15 german translation update and some function help fixes Alexander Bruy 2013-09-15 [processing] improve some gdal algoruthms update resources_rc.py Victor Olaya 2013-09-15 [processing] small fix in modeler dialog Victor Olaya 2013-09-15 [processing] fixed issue with saga optimizations Victor Olaya 2013-09-15 [processing] corrected fix introduced in 7fc592989f26c346e72465e43a5ed790d67968ac Victor Olaya 2013-09-15 [processing] fixed issue with non-visible outputs in batch processign interface Alexander Bruy 2013-09-15 fix typo Marco Hugentobler 2013-09-15 More symbology updates for dxf Merge: 5d60b28 1670a27 Werner Macho 2013-09-15 Merge pull request #897 from astroidex/master new help texts for operators astroidex 2013-09-15 new help texts for operators Juergen E. Fischer 2013-09-15 cleanup on e50f042 Juergen E. Fischer 2013-09-15 rename QgsVectorLayer::listAllFeatureIds() to allFeatureIds() (followup dd48cd3) Denis Rouzaud 2013-09-09 added listAllFeatureIds and check that features exist when setting selection Juergen E. Fischer 2013-09-15 fix warnings Hugo Mercier 2013-09-09 Remove st_force2d from postgres provider Hien TRAN-QUANG 2013-08-29 Fix Blocker issue 8487 Custom CRS are saved if cannot find an existing one with same parameters (except datum which may be optionnal, as GDAL seems to have drop it) Hugo Mercier 2013-08-20 Add support for 3D types in the PostGIS provider Alexander Bruy 2013-09-15 [processing] attempt to fix proximity algorithm Alexander Bruy 2013-09-15 [processing] fix fTools Clip algorithm (fix #7281) Alexander Bruy 2013-09-15 [processing] restore Polygonize algorithm functionality (fix #8252) Merge: a0ff6d5 6ec9e75 Werner Macho 2013-09-15 Merge pull request #896 from astroidex/master added new help files for geometry functions astroidex 2013-09-15 added help for confexHull function astroidex 2013-09-15 added new help files for geometry functions astroidex 2013-09-15 added new help files for geometry functions astroidex 2013-09-15 added new help files for geometry functions Nathan Woodrow 2013-09-15 Add expression to graduated renderer Nathan Woodrow 2013-09-15 Add expression to categorized renderer Borys Jurgiel 2013-09-15 [Plugin Manager] Simplify the filter behaviour: always search in names + descriptions + authors + tags. Additionally, a tag: prefix to search in tags only Alexander Bruy 2013-09-15 follow up 702445960f Alexander Bruy 2013-09-15 remove obsolete import Alexander Bruy 2013-09-13 [FEATURE] save Processing model as image (fix #5926) Borys Jurgiel 2013-09-15 translation update: pl Borys Jurgiel 2013-09-15 [Plugin Manager] New tab for all plugins. New class QgsPluginItemDelegate Juergen E. Fischer 2013-09-15 fix 56ba1d74d Victor Olaya 2013-09-15 [processing] saga import/export optimization Victor Olaya 2013-09-15 [processing] cleaned up options (threaded execution and table-like parameters dialog Victor Olaya 2013-09-14 [processing] Reduced number of conversion operation when running saga algorithms Alexander Bruy 2013-09-15 fix rebase conflicts Alexander Bruy 2013-09-14 add compiled .ui file Alexander Bruy 2013-09-14 use default style for R code Alexander Bruy 2013-09-03 fix rebase issues Alexander Bruy 2013-04-17 [processing] start work on R lexer Alexander Bruy 2012-12-08 [FEATURE] new Scintilla-based script editor for Processing Merge: 64c947b 617fa68 mhugent 2013-09-15 Merge pull request #893 from sbrunner/scalehint Fix Scales in qgis server Marco Hugentobler 2013-09-15 Dxf: add more header fields, min/max extent and a test linestyle Merge: 503d32b a8b9d43 Tim Sutton 2013-09-15 Merge pull request #749 from Oslandia/issue8045b Unit tests for command line arguments Merge: 7e171ef 9494365 mhugent 2013-09-15 Merge pull request #894 from sbrunner/legend-scale Use scale parameter to display concerned class Merge: a1a95c1 6e31245 Tim Sutton 2013-09-15 Merge pull request #720 from Oslandia/issue6483 Fix #6483 - Thanks Vincent! yellow-sky 2013-09-15 Added settings to PAL for enable/disable partial shown labels Marco Hugentobler 2013-09-14 Write additional header field and table section Larry Shaffer 2013-09-14 [globe] Fix crashes occurring after globe is unloaded Larry Shaffer 2013-09-11 [globe] Fix Mac dependencies so plugin can run from app bundle Alexander Bruy 2013-09-14 [processing] add GDAL rasterize algorithm (fix #5854) Alexander Bruy 2013-09-14 [processing] fix passing distunits parameter for GDAL proximity (fix #8247) Alexander Bruy 2013-09-14 [processing] fix parsing of selection options in scripts Alexander Bruy 2013-09-14 [processing] add Extract projection algorithm Alexander Bruy 2013-09-14 [processing] impove Build Pyramids algorithm Alexander Bruy 2013-09-14 [processing] add GDAL Contour algorithm Alexander Bruy 2013-09-14 [processing] add Clip By Mask algorithm Victor Olaya 2013-09-14 [processing] some code cleaning Victor Olaya 2013-09-14 [processing]fixed issue with temporal filename (was previously solved but reverted) Victor Olaya 2013-09-14 Revert "[processing]fixed bug with wrong characters in output filenames" (caused circular import) This reverts commit ff5e1ee3a8745ae44db85b1a9511a5f81f6a85fd. Stéphane Brunner 2013-09-14 Fix class name Stéphane Brunner 2013-09-13 Use scale parameter to display concerned class Salvatore Larosa 2013-09-14 [pyqgis-console] allows to set font color in python lexer Victor Olaya 2013-09-11 [processing] adapted algorithm to function refactoring Also set threaded execution to false by default, since it was behaving strangely Victor Olaya 2013-09-13 [processing]fixed bug with wrong characters in output filenames refactored to reuse string cleaning function Victor Olaya 2013-09-13 [processing] added some in-code docs and comments Victor Olaya 2013-09-13 [processing] fixed minor saga file issue Victor Olaya 2013-09-13 `processing]improved doc of example algorithm Victor Olaya 2013-09-13 [processing]fixes in saga filename handling fixed saga buffer description Victor Olaya 2013-09-12 [processing] improved non-threaded execution Victor Olaya 2013-09-12 [processing] added progress display in qgsMessageBar Victor Olaya 2013-09-12 [processing] Added schema parameter to ImportIntoPostGIS.py Victor Olaya 2013-09-12 [processing] refactoring to move common functions to tools package Victor Olaya 2013-09-11 [Processing] added GRASS m.cogo Victor Olaya 2013-09-11 move ftools utils to tools utils module Nathan Woodrow 2013-09-14 Add delete keyboard action for rules Nathan Woodrow 2013-09-14 Rule copy and paste shortcut keys Stéphane Brunner 2013-09-13 By default use the reference OGC dpi Calculate from the OGC reference pixel size Stéphane Brunner 2013-09-13 Fix scale informations in the WMS GetCapabilities Marco Hugentobler 2013-09-14 Server: option to set the maximum cached layers in environment variable MAX_CACHE_LAYERS Nathan Woodrow 2013-09-14 Paste rule at the bottom if no selection Nathan Woodrow 2013-09-14 Fix crash in rule paste Juergen E. Fischer 2013-09-13 fix retrieval of PYTHON_SITE_PACKAGES_DIR - broke debian builds Merge: b14e133 2b4e139 mhugent 2013-09-13 Merge pull request #889 from sbrunner/string More general string value. … Merge: e7956a5 ccda1c4 mhugent 2013-09-13 Merge pull request #887 from sbrunner/environ_mapfile Add QGIS_PROJECT_FILE environement option Marco Hugentobler 2013-09-13 Allow rotation +-360 degrees in ellipse marker widget Marco Hugentobler 2013-09-13 First implementation of dxf feature writing (but it does not work yet) vmora 2013-09-13 - improved wraning msg, removed useless test Borys Jurgiel 2013-09-13 [Plugin Installer] Better error handling for parsing metadata Marco Hugentobler 2013-09-13 Write dxf header and eof Alexander Bruy 2013-09-10 [processing] add two Extract values models (for CSV and shape) Alexander Bruy 2013-09-10 [processing] add Extract raster values to shapefile algorithm Alexander Bruy 2013-09-09 [processing] add Extract raster values to CSV algorithm Alexander Bruy 2013-09-03 [processing] add Points from vector algorithm Alexander Bruy 2013-08-27 fix rebase conflicts Alexander Bruy 2013-08-13 [processing] add Points from lines algorithm (still needs some improvements) Alexander Bruy 2013-08-09 [processing] add Points from polygons algorithm Alexander Bruy 2013-08-06 [processing] add zonal statistics algorithm Alexander Bruy 2013-08-06 [processing] update points displacement alg to new ParameterVector syntax Alexander Bruy 2013-07-30 [processing] add points displacement algorithm Radim Blazek 2013-09-13 GRASS topology layers - display internal topo info Marco Hugentobler 2013-09-13 [FEATURE]: Start implementation of native dxf export Borys Jurgiel 2013-09-13 [Plugin Installer] Make version compare behaviour unified with the repository app Alexander Bruy 2012-12-05 [FEATURE] Model-View based config dialog for Processing (fix #5427) Merge: 9ce316d 6d5df7c Borys Jurgiel 2013-09-13 Merge pull request #892 from alexbruy/deprecated_plugins Deprecated plugins support for plugin manager Alexander Bruy 2013-09-11 [FEATURE] add option to show/hide deprecated plugins in plugin manager Alexander Bruy 2013-09-11 [FEATURE] clearly mark deprecated plugins in plugin manager Alexander Bruy 2013-09-12 [processing] add Clip raster by extent algorithm (fix #8602) Nathan Woodrow 2013-09-13 Move updating of else rules list out of render feature Borys Jurgiel 2013-09-12 [Plugin Installer] More uniform behaviour when comparing versions: always exclude any non-numeric parts Stéphane Brunner 2013-09-08 Add GML format in GetFeatureInfo requests Stéphane Brunner 2013-09-08 Copy things from WFS server to WMS server Nyall Dawson 2013-05-22 [FEATURE] Add select all, select none and invert selection to composer edit menu Nyall Dawson 2013-05-20 [FEATURE] New edit menu for composer Change cut/copy/paste functions to actions and add to edit menu Move undo/redo/delete to edit menu Rearrange layout menu to logical order Stéphane Brunner 2013-09-12 Add French translation Stéphane Brunner 2013-09-12 Run scripts/update_ts_files.sh Stéphane Brunner 2013-09-12 More general string value. This option is used for GetFeature and GetfeatureInfo And for WKT and GML format Merge: 885c8b4 8a50ddb alexbruy 2013-09-12 Merge pull request #731 from ddanielvaz/bugfix-6063 Preserve attributes in Convex Hull (fix #6063) Stéphane Brunner 2013-09-12 Add QGIS_PROJECT_FILE environement option To be able to configure the project file in apache configuration like: SetEnv QGIS_PROJECT_FILE .qgs Merge: e72088c 272b6e1 alexbruy 2013-09-12 Merge pull request #799 from slarosa/warning_simplifyTool [ftools] add warning for simplify tool when no one layer has been selected Alexander Bruy 2013-09-12 [fTools] homogenize UI (contributed by Salvatore Larosa) Nathan Woodrow 2013-09-12 Fix #8590 - Copy and paste for rules Nathan Woodrow 2013-09-12 Add ELSE to rule based renderer Larry Shaffer 2013-09-11 [globe] Add path to gui images when running from build directory Merge: 4200046 ba4e438 Luigi Pirelli 2013-09-11 Merge remote-tracking branch 'upstream/master' Tim Sutton 2013-09-11 Fix from Salvatore to fix project macros Tim Sutton 2013-09-11 Fix missing 1.8 heading in news (thanks Leyan) Tim Sutton 2013-09-11 Added small note about 2.0.1 in news Juergen E. Fischer 2013-09-10 install qbrowser manpage Marco Hugentobler 2013-09-10 [Feature]: anchor points for marker symbols Tim Sutton 2013-09-10 Tweaked BUGS documentation Tim Sutton 2013-09-10 Updated install doc Tim Sutton 2013-09-10 Regenerate changelog Tim Sutton 2013-09-10 Added script to create changelog from http://binarystatic.wordpress.com/2010/02/18/how-to-convert-git-log-to-changelog/ Tim Sutton 2013-09-10 Put GPL version to 2 instead of 3 in the readme Tim Sutton 2013-09-10 Updated news Merge: 641359d f361e11 Denis Rouzaud 2013-09-10 Merge pull request #741 from 3nids/splitpart [Feature] split part of multi-geometry Denis Rouzaud 2013-09-10 return the proper error code Denis Rouzaud 2013-04-22 split part of multi-geometry nyalldawson 2013-05-27 [FEATURE] Pan composer with middle mouse button Zoom in and out on composer using mouse scroll wheel Christian Urich 2013-09-10 fix #8507 made void connectNotify( const char * signal ) protected instead of private made bool eventFilter( QObject *obj, QEvent *event ) protected instead of private made void showEvent( QShowEvent * ) and void hideEvent( QHideEvent * ) instead of private Merge: 5f61dd1 b61b5b0 Larry Shaffer 2013-09-09 Merge pull request #881 from mbernasocchi/android Various android updates from mbernasocchi Marco Bernasocchi 2013-09-10 make honoring -DPYTHON_LIBRARY more solid. as cmake --help-module FindPythonLibs states If you'd like to specify the installation of Python to use, you should modify the following cache variables: PYTHON_LIBRARY - path to the python library PYTHON_INCLUDE_PATH - path to where Python.h is found (please note it is PYTHON_INCLUDE_PATH (deprecated) and not PYTHON_INCLUDE_DIR (new in 2.8) since we require cmake >= 2.6.2) Marco Bernasocchi 2013-09-10 set correct prefixPath() Marco Bernasocchi 2013-09-09 added confirm quit for android Marco Bernasocchi 2013-09-08 Removed tooltip that shows how many messages are logged on android. This tooltip was rendered as a fullscreen yellow widget in android. Larry Shaffer 2013-06-26 [Android] Fix for Qt Ministro hiding app's menubar in favor of native Android menus - Brings back composer window menu bar Larry Shaffer 2013-06-24 [Android] Fix for Qt Ministro hiding app's menubar in favor of native Android menus - Brings back main window menu bar Larry Shaffer 2013-06-23 [Android] Update library path Larry Shaffer 2013-06-23 [Android] Change order of finding QtMobility package so Qt isn't 'found' twice Marco Bernasocchi 2013-05-19 worcarounds to make sip generation work on android Marco Bernasocchi 2013-05-19 less invasive workaround for #7859 Marco Bernasocchi 2013-05-18 workaround for issue #7859 Marco Bernasocchi 2013-05-03 #7752 for android sip generation issue fix Larry Shaffer 2013-09-09 Fix #8587, show/hide labels tool throws Qt warning Merge: 3216390 c705034 Luigi Pirelli 2013-09-09 Merge remote-tracking branch 'upstream/master' nyalldawson 2013-09-06 [FEATURE] Add "Lock Selected Items" and "Unlock All" to composer layout menu and toolbar Tamas TEVESZ 2013-09-09 fix gdb backtrace on FreeBSD Tim Sutton 2013-09-09 Bumped version number on splash screen Salvatore Larosa 2013-09-09 [pyqgis-console] fix undo/redo actions when autocompletion bracket is enabled Tim Sutton 2013-09-09 Added current sponsor logos to about screen Salvatore Larosa 2013-09-08 [pyqgis-console] fix autocompletion in editor after 6e19748 Juergen E. Fischer 2013-09-08 don't use own message handler on android Juergen E. Fischer 2013-09-08 indentation update Juergen E. Fischer 2013-09-07 fix another bunch of warnings Merge: feb79a8 5d093f4 Luigi Pirelli 2013-09-08 Merge remote-tracking branch 'upstream/master' Marco Hugentobler 2013-09-08 Intendention update Hugo Mercier 2013-07-11 Fix number precision in world file generation Hugo Mercier 2013-06-24 Fiw world file generation (wrong line ordering) Hugo Mercier 2013-06-14 Change computeWorldFileParameters signature and fix Python unit test Hugo Mercier 2013-06-12 Add unit test for world file generation Hugo Mercier 2013-06-12 Add world file generation option. Work funded by Tuscany Region - SITA. Contract Support to the use of GFOSS \(Geographic Free and Open Source Software\) Desktop tools \(CIG Z3B06FA6D7\) Merge: 6b2fa67 f66f9aa Luigi Pirelli 2013-09-07 Merge branch 'master' of https://github.com/qgis/Quantum-GIS Larry Shaffer 2013-09-06 Fix build error, add missing enum to sip file Larry Shaffer 2013-09-06 Followup to 3b6d4ef, add sip bindings and update console auto-complete file Larry Shaffer 2013-09-06 Fix Mac error when building qgis_app Tim Sutton 2013-09-07 Applied android fix from Marco B. Juergen E. Fischer 2013-09-06 make qgis_app a shared library and fix some more stl warnings with msvc Merge: 609bd69 3896c73 Tim Sutton 2013-09-06 Merge pull request #871 from slarosa/fix_crash_core_plugins Fix crash in core plugins Merge: 721fe27 c2d98e7 Tim Sutton 2013-09-06 Merge pull request #870 from etiennesky/browsericons use svg icons in browser dock for uI consistency Juergen E. Fischer 2013-09-06 german translation update Juergen E. Fischer 2013-09-06 fix more warnings (followup 1c9d6ebce) Juergen E. Fischer 2013-09-06 fix size_t vs. int warnings Juergen E. Fischer 2013-09-06 german translation fix (fixes #8580) Alexander Bruy 2013-09-05 [processing] write table header only when necessary adopt Point distance alg to use OutputTable Alexander Bruy 2013-09-05 [processing] fix Statistics by categories algorithm Alexander Bruy 2013-09-05 [processing] use csv module for table writer Victor Olaya 2013-09-06 fixed saga installation checking Werner Macho 2013-09-06 translation update: nl by richard and es by carlos Larry Shaffer 2013-09-05 [FEATURE] Add 'Suppress attribute form pop-up after feature creation' option to vector layers; overrides application-wide option Salvatore Larosa 2013-09-06 fix crash in Compass plugin Salvatore Larosa 2013-09-06 fix crash in GRASS plugin Radim Blazek 2013-09-05 add OS X specific lib to app tests, hopefully fixes #8577 Sandro Santilli 2013-07-29 Use ST_Force2D for PostGIS 2.1+ Sandro Santilli 2013-05-31 Add field name in layers from postgis relation with multiple spatial fields NOTE: only works with browser, not with "Add PostGIS Layer" dialog pcav 2013-09-05 MInor fixes to IT GUI translation Denis Rouzaud 2013-06-24 listActions() method for attribute action Nyall Dawson 2013-05-22 [FEATURE] holding shift while pressing cursor keys results in large movements in composer Matthias Kuhn 2013-08-30 Fix spatialite provider for Null QVariant instead of Invalid QVariant Matthias Kuhn 2013-08-02 Add setSourceCrs( QgsCoordinateReferenceSystem ) Nyall Dawson 2013-05-22 [FEATURE] Shift-clicking a selected composer item should deselect it Radim Blazek 2013-09-05 qgis_app lib link deps, fixes partialy #8575 pcav 2013-09-05 Typo in IT GUI translation Juergen E. Fischer 2013-09-05 temporary fix for #8575 (building app as DLL is more involved and requires a CORE/GUI/APP_EXPORT macro dance...) Juergen E. Fischer 2013-09-05 fix atlas composition warnings with msvc 64bit Merge: 1aa5daf 00041e6 Paolo Cavallini 2013-09-05 Merge pull request #665 from Oslandia/overview_centering [2.1] Overview centering Juergen E. Fischer 2013-09-05 german translation update Werner Macho 2013-09-05 translation update: fi by Kari Radim Blazek 2013-07-05 added date type support Radim Blazek 2013-07-05 set field typeName in gml xsd parser Radim Blazek 2013-07-04 added change signal to clipboard Radim Blazek 2013-07-03 copy/paste as test unit Radim Blazek 2013-07-03 Paste as - new memory layer name dialog Save as dialog collapsible OGR options Radim Blazek 2013-07-02 [FEATURE] Paste features as new vector layer Juergen E. Fischer 2013-09-05 osgeo4w: fix shortcut removal Merge: dcc9b2a cf6ad67 Jürgen Fischer 2013-09-04 Merge pull request #873 from Cracert/i18n [function help] In strpos() needle is string, not number Merge: 7030b1a 51f42dd Werner Macho 2013-09-04 Merge pull request #872 from Cracert/tr Polish translation update Robert Szczepanek 2013-09-05 [function help] In strpos() needle is string, not number Robert Szczepanek 2013-09-04 pl translation update Salvatore Larosa 2013-09-05 fix crash in Georeferencer plugin Salvatore Larosa 2013-09-05 fix crash in Dxf2Shp plugin Salvatore Larosa 2013-09-05 fix crash in SpatialQuery plugin Salvatore Larosa 2013-09-05 fix crash in GPS Importer plugin Salvatore Larosa 2013-09-05 fix crash in SPIT plugin Juergen E. Fischer 2013-09-04 fix crash in coordinate capture plugin Merge: 7fc8ad8 f6e0bbc Jürgen Fischer 2013-09-04 Merge pull request #852 from borysiasty/installer_v2 [Plugin Installer] Remove hardcoded 2.0 v in order to use the native 2.0 Juergen E. Fischer 2013-09-04 debian packaging: update version to 2.1 Tim Sutton 2013-09-04 Bumped master version to 2.1.0 Juergen E. Fischer 2013-09-04 fix warnings Etienne Tourigny 2013-09-04 use svg icons in browser dock for uI consistency Merge: e6a4f2f 3d3f81d Borys Jurgiel 2013-09-04 Merge pull request #869 from Cracert/master Polish translation update Robert Szczepanek 2013-09-04 pl translation update: small fix Juergen E. Fischer 2013-09-04 sort embedded layer by drawing order (fixes #7673) Nathan Woodrow 2013-09-04 Update about icon, and 16x16 icon pcav 2013-09-04 Minor edit to IT GUI D'Hont René-Luc 2013-09-04 QGIS Server: Exclude composers in OWS tab does not work In the current QGIS server, if one uses a list of "Exclude composers" in the OWS tab, QGIS server lists only the excluded composers and not the composers the map author actually wants. So it acts as a white list and not as a black list. Juergen E. Fischer 2013-09-04 update TRANSLATORS file Merge: d4e8e1f 4bd91f2 Werner Macho 2013-09-04 Merge pull request #868 from artfwo/master translation update: ru Artem Popov 2013-09-04 translation update: ru Matthias Kuhn 2013-09-04 [dual view] Propagate sort order to feature view (e.g. selected on top) Matthias Kuhn 2013-09-04 [dualview] Fix crash when removing features Werner Macho 2013-09-04 translation update: nl by diethard Merge: 14f639d 164d2fe Werner Macho 2013-09-03 Merge pull request #866 from Cracert/master Polish translation update Robert Szczepanek 2013-09-03 pl translation update; function_help cont. Tim Sutton 2013-09-04 Added South African north orientated CRS definitions for #8487 Salvatore Larosa 2013-09-04 load SLD properly if fill style polygon is defined: followup 4bc1beb Giuseppe Sucameli 2013-09-04 sld: fix #8567 Juergen E. Fischer 2013-09-04 osgeo4w: use nircmd also on 32bit Juergen E. Fischer 2013-09-04 nsis: add 64 support Juergen E. Fischer 2013-09-03 creatensis.pl: update to support 32 and 64bit packages Juergen E. Fischer 2013-09-03 indentation update Martin Dobias 2013-09-03 Updated QgsFields docs, moved some code into .cpp Juergen E. Fischer 2013-09-03 german translation update Merge: b0664f4 cf0b7b0 Werner Macho 2013-09-03 Merge pull request #864 from Jean-Roc/traduction_ui update fr translation Merge: e7a3215 c331f1e Werner Macho 2013-09-03 Merge pull request #865 from yoichigmf/forpullreq update TRANSLATION ja Jean-Roc Morreale 2013-09-03 update fr translation yoichigmf 2013-09-04 update TRANSLATION ja Salvatore Larosa 2013-09-03 fixes "Add to Overview" action, also removes shortcut pcav 2013-09-03 Upadated list of IT translators pcav 2013-09-03 IT GUI translation almost finished Merge: 70841a8 eb11479 Nathan Woodrow 2013-09-03 Merge pull request #804 from nyalldawson/bug_8311 Fix some bugs relating to display fields for new vector layers (fixes #8311) Denis Rouzaud 2013-09-03 [postgres] do not update feature count if it was not set before Nathan Woodrow 2013-09-03 Fix #8561 - Handle change layer in node tool vmora 2013-07-30 - fix #7441 - reset unit settings to original ones when deactivating OTF projection - added OTF status (on/off) to mesuredialog title - resets prefered units and selected srs - when OTF transfo is deselected, this resets the units value to the original ones Matthias Kuhn 2013-09-03 [diagram] Workaround floating point errors leading to diagram distortion Fix #8554 Merge: 9014d5c 5be1807 Werner Macho 2013-09-02 Merge pull request #862 from Cracert/master Polish translation update Robert Szczepanek 2013-09-02 pl translation update; function_help Werner Macho 2013-09-03 translation update: es by Carlos Merge: a339702 f5d41d5 Werner Macho 2013-09-02 Merge pull request #861 from Jean-Roc/traduction_ui update french translation Larry Shaffer 2013-09-02 [gui] Address situation where applying style enables deprecated labels Jean-Roc Morreale 2013-09-02 update french translation Matthias Kuhn 2013-09-02 [dualview] Remove unrequired connect() Merge: 91b9c11 8ff0f02 Werner Macho 2013-09-02 Merge pull request #860 from Cracert/master Polish translation update Robert Szczepanek 2013-09-02 pl translation update; topology, style manager, SVG, WFS, WCS, WMS, checkDock Victor Olaya 2013-09-02 [processing] fixed bug when editing help of example models Victor Olaya 2013-09-02 added scintilla based editor to R scripts editor Victor Olaya 2013-09-02 [processing] improved handling of output files and file naming Victor Olaya 2013-09-01 [processing] modified saga ids description and fixed example script bug Victor Olaya 2013-09-01 [processing] added extent as output type and made it available in modeler Victor Olaya 2013-09-01 [processing] improved script edit dialog Victor Olaya 2013-09-01 [processing] modified saga checking to support 2.0.8 Matthias Kuhn 2013-09-02 [dualview] Default preview text shows also up for NULL values Matthias Kuhn 2013-09-02 [dualview] Fix add/delete crash and fieldcalc behavior of feature form Larry Shaffer 2013-09-02 [tests] Add preconfigured project to test local server connection Werner Macho 2013-09-02 translation update: chinese with adding new translator Matthias Kuhn 2013-09-02 [dualview] Fix crash when adding columns with feature form open Salvatore Larosa 2013-09-02 [pyqgis-console] update pyqgis.pap file after 2d63dcf Merge: a2a2d7a 87e2ad7 Werner Macho 2013-09-02 Merge pull request #859 from Jean-Roc/traduction_ui update french translation Jean-Roc Morreale 2013-09-02 update french translation Larry Shaffer 2013-09-02 [gui] Fix crash when loading a vector layer style, due to lack of checks for removed deprecated labels tab Denis Rouzaud 2013-09-02 fix missing sip methods for rubber bands Werner Macho 2013-09-02 translation update: sv by Victor Merge: d8b05c2 868974e Werner Macho 2013-09-02 Merge pull request #857 from artfwo/master Russian translation update. Artem Popov 2013-09-02 Russian translation update. Larry Shaffer 2013-08-25 [tests] Add support for locally spawned fcgi process - No building of spawn-fcgi or managing of spawned process, yet pcav 2013-09-02 More IT GUI translation Merge: f4b2c16 514e899 Werner Macho 2013-09-01 Merge pull request #855 from asiersarasua/master Basque translation update Werner Macho 2013-09-02 translation update: id by Trias and ko_KR by BJ Merge: c48243c 33fe3c8 Werner Macho 2013-09-01 Merge pull request #856 from Cracert/master Polish translation update Larry Shaffer 2013-09-01 [gui] Update Mac icons with latest vectorized logo - Add qml and mldata (memory layer) to file extension mappings Robert Szczepanek 2013-09-02 pl translation update; PostgreSQL, SpatiaLite asiersarasua 2013-09-01 Basque translation update Borys Jurgiel 2013-09-01 [Plugin Manager] Fix #8542 Salvatore Larosa 2013-09-01 [pyqgis-console] add prefix OSGeo_ to GEOS API file Werner Macho 2013-09-01 translation update: gl and zh_CN Merge: cae08e4 d876560 Werner Macho 2013-09-01 Merge pull request #854 from Jean-Roc/traduction_ui update french translation Larry Shaffer 2013-08-31 [gui] Remove deprecated labeling properties tab for new projects or older ones that don't use them - Deprecated tab remains active for older projects, if any layer uses them - Deprecated tab an be disabled/enabled via console commands for project entry, e.g.: QgsProject.instance().writeEntry('DeprecatedLabels', '/Enabled', bool) or QgsProject.instance().removeEntry('DeprecatedLabels', '/') Salvatore Larosa 2013-09-01 Fix untranslatable strings: does not break translation with a different language from english the plugin menus are not removed. this commit fixes the problem. Jean-Roc Morreale 2013-09-01 update french translation Werner Macho 2013-09-01 translation update: german Werner Macho 2013-09-01 make alg work in modeller Werner Macho 2013-09-01 translation update: danish by jacob Merge: 3ac0759 7c726ee Werner Macho 2013-09-01 Merge pull request #853 from gioman/master pt_PT translators list updated Salvatore Larosa 2013-09-01 [dbmanager] Replace DropRasterTable func (deprecated) with DROP TABLE: fixes #8521 Salvatore Larosa 2013-09-01 [pyqgis-console] add GEOS API file for autocompletion: - add GDAL-1.10.0, QScintilla-2.7.2 api files Salvatore Larosa 2013-09-01 [dbmanager] another small fix for italian translation: fixes #8489 Giovanni Manghi 2013-09-01 pt_PT translators list updated Werner Macho 2013-09-01 translation update: es gl and ja Merge: 74b60c6 f516759 Werner Macho 2013-09-01 Merge pull request #850 from yoichigmf/translate_ja Translate ja pcav 2013-09-01 More IT GUI translation Borys Jurgiel 2013-09-01 [Plugin Installer] Remove hardcoded 2.0 version in order to use the native 2.0 Salvatore Larosa 2013-09-01 [dbmanager] small fix for import/export layer UI yoichigmf 2013-09-01 update ja translation Larry Shaffer 2013-08-31 [gui] Fix triple-modal issue on Mac for point displacement dialog - Ensure initial dialog is a 'sheet' or gui will freeze after closing next opened modal (new color) dialog Werner Macho 2013-08-31 another dutch translation update Larry Shaffer 2013-08-31 [gui] Fix excessive fixed height of vector properties (actually labeling) dialog - Should now fit on laptops with limited screen height Larry Shaffer 2013-08-31 [labeling] Further fix for #8367, 'font missing' text keeps showing up - Move to more generic test on font family Werner Macho 2013-08-31 translation update: pl by robert Merge: 6e19748 735f534 Werner Macho 2013-08-31 Merge pull request #849 from gioman/master pt_pt translations contributed by Nelson Silva Larry Shaffer 2013-08-31 [pyqgis-console] Fix build error. Revert adding of qsci-pap-master target - Leave only qsci-pap-src target for updating default pyqgis.pap in source tree - Mark WITH_QSCIAPI as advanced in CMake, since it mostly a dev function Giovanni Manghi 2013-08-31 pt_pt translations contributed by Nelson Silva Werner Macho 2013-08-31 as always .. forgot one Werner Macho 2013-08-31 last translation update before branching Merge: 460b007 e56b1bc Werner Macho 2013-08-31 Merge pull request #847 from Cracert/tr Correct spelling in polish translators names Robert Szczepanek 2013-08-31 Correct spelling in polish translators names Salvatore Larosa 2013-08-31 [pyqgis-console] adds a "\n" at the end of the header text if it has not been inserted from translators Salvatore Larosa 2013-08-31 [pyqgis-console] minor fixes for italian translation Werner Macho 2013-08-31 translation update: fr and it Larry Shaffer 2013-08-31 [pyqgis-console] Fix pyqgis.pap building targets/script for auto-completion in console - Add fixed default pyqgis.pap Larry Shaffer 2013-08-30 [labeling] Fix python bindings for access to data defined properties Merge: f5585d8 94a440f pcav 2013-08-31 Merge branch 'master' of github.com:qgis/Quantum-GIS pcav 2013-08-31 List of IT translators updated and sorted Merge: 9b72523 b14ffb7 Nathan Woodrow 2013-08-31 Merge pull request #844 from minorua/union_attrs fTools/union: fix output attribute shift Merge: 17d5fe9 1380e45 Werner Macho 2013-08-30 Merge pull request #843 from Cracert/master Polish translation upadte Minoru Akagi 2013-08-31 fTools/union: fix output attribute shift Robert Szczepanek 2013-08-31 pl translation upadte: raster layers Merge: dc46285 53d8cf4 Werner Macho 2013-08-30 Merge pull request #841 from Cracert/master Polish translatioin update Larry Shaffer 2013-08-29 [pyqgis-console] Add targets and python script for generating console's QScintilla .pap file, for auto-completion - Run 'make;make qsci-pap-src; make install' to update the default .pap file in source tree - Run 'make;make qsci-pap-master[; make install]' for local-only .pap that overrides the default .pap (when testing new bindings) - Update console to override default .pap if master.pap is available - Include new qgis.core.NULL attribute defined in /python/__init__.py for QPyNullVariant comparisons - Update 11-month-old default .pap Robert Szczepanek 2013-08-30 pl translation update; forms Merge: b99d51d e162506 Werner Macho 2013-08-30 Merge pull request #840 from artfwo/master Russian translation update. Salvatore Larosa 2013-08-30 [pyqgis-console] avoids IndexError when attempts to run unselected code by keybinding Ctrl+E Matthias Kuhn 2013-08-30 Add != (not equal) support to python NULL value Victor Olaya 2013-08-30 [processing] fixed issue when opening link from MissingDependencyDialog.py Artem Popov 2013-08-27 Russian translation update. Werner Macho 2013-08-30 adding new dutch translator Werner Macho 2013-08-30 translation update: nl pcav 2013-08-30 More IT GUI translation - only help files missing now Hien TRAN-QUANG 2013-08-28 Fix Blocker Issue #7871 : SVG Marker fill and outlin colors are restored when changing widget or reopening style window Merge: 8c4c57b 2d163e3 Werner Macho 2013-08-29 Merge pull request #839 from Cracert/master Polish translation update Robert Szczepanek 2013-08-30 pl translation: vector layers properties Matthias Kuhn 2013-08-29 [postgres] some more precision/length fixes Matthias Kuhn 2013-08-29 Fix some postgres field precision and length inconsistencies Matthias Kuhn 2013-08-29 [spatialite] Use QVariant::LongLong as int type consistently Matthias Kuhn 2013-08-29 Set min field precision even when hidden (Fix #8480) Matthias Kuhn 2013-08-29 QPyNullVariant() equals to QPyNullVariant(), qgis.core.NULL >>>> from qgis.core import NULL >>>> lyr.getFeatures().next().attributes()[0] == NULL True Matthias Kuhn 2013-08-29 Small UI fix for "New PostGIS connection" dialog Merge: 84e38ca fe2f18a Werner Macho 2013-08-28 Merge pull request #837 from Cracert/master Polish translation update Robert Szczepanek 2013-08-29 labeling, vector style pcav 2013-08-29 More IT GUI translation Werner Macho 2013-08-28 latest danish translation update Alexander Bruy 2013-08-28 [processing] fix html in error handler text Alexander Bruy 2013-08-28 cleanup Werner Macho 2013-08-28 typo fixes for danish language Merge: b0ed8ed 2101af5 Werner Macho 2013-08-28 Merge pull request #835 from artfwo/more-strings-fixes-in-vector-layer-properties More untranslatable string fixes in vector layer properties. Artem Popov 2013-08-28 More untranslatable string fixes in vector layer properties. Alexander Bruy 2013-08-28 [processing] handle loading empty models in modeler (fix #8153) Alexander Bruy 2013-08-28 correctly unload Globe plugin (fix #4185) Werner Macho 2013-08-28 translation update: dk by Jacob Matthias Kuhn 2013-08-28 [spatialite] uniqueValues() return values instead of strings Matthias Kuhn 2013-08-28 Monkey patch QPyNullVariant to be represented as 'NULL' Matthias Kuhn 2013-08-28 [spatialite] Represent NULL attributes as QVariant/NULL Instead of QVariant/Invalid Matthias Kuhn 2013-08-28 python: represent NULL attributes as QPyNullVariant Werner Macho 2013-08-28 translation update: fi by Kari Merge: 3e27811 4c73b65 Luigi Pirelli 2013-08-28 Merge remote-tracking branch 'upstream/master' Salvatore Larosa 2013-08-28 [processing] sextante => processing renaming: fix example provider plugin Merge: 6552638 a10c1e3 Werner Macho 2013-08-27 Merge pull request #833 from Cracert/master Polish translation update Robert Szczepanek 2013-08-27 pl translation update Werner Macho 2013-08-27 translation update: pt_BR by Arthur Matthias Kuhn 2013-08-27 [ogr] Blacklist datetime field type for OGR provider Werner Macho 2013-08-27 translation update: sl_SI by Joze Matthias Kuhn 2013-08-27 [ogr] Fix date field length for native type Marco Hugentobler 2013-08-27 Fix transparent 1 pixel borders in raster layer, caused by rounding to int Salvatore Larosa 2013-08-27 fix capture coordinate plugin: refs pull request #803 Salvatore Larosa 2013-08-27 [pyqgis-console] small fix for autocompletion bracket, also sets to False the default setting Merge: 97a3a4f 2398105 Borys Jurgiel 2013-08-27 Merge pull request #769 from vinayan/topol Fix #5181,#4761 - Ftools-Distance Matrix Juergen E. Fischer 2013-08-27 fix 16f768f9 Merge: e0a1d15 2800191 Werner Macho 2013-08-27 Merge pull request #832 from asiersarasua/master Basque translation update asiersarasua 2013-08-27 Basque translation update Werner Macho 2013-08-27 translation update: ko_KR by BJ Jang Marco Hugentobler 2013-08-27 Consider default CRS in new shape / spatialite dialogs Matthias Kuhn 2013-08-27 [dualview] Disable fields when ending an edit session Werner Macho 2013-08-27 translation update for gl, id, nl and pt_PT Merge: 80c9199 c6e4838 Werner Macho 2013-08-27 Merge pull request #831 from artfwo/raster-minmax-label-fix Untranslatable strings and formatting of the raster min/max label Artem Popov 2013-08-16 Untranslatable strings and formatting of the raster min/max label pcav 2013-08-26 More IT GUI translation Juergen E. Fischer 2013-08-26 show word size (32/64 bit) in about box title Werner Macho 2013-08-26 translation update: sv by victor Werner Macho 2013-08-26 translation update: fi by Kari Merge: b08f47d 071fa92 Artem Popov 2013-08-26 Merge remote-tracking branch 'upstream/master' Werner Macho 2013-08-26 translation update for all languages Werner Macho 2013-08-26 reverting c9e9260d Juergen E. Fischer 2013-08-26 german translation update Merge: f5ca533 45c5a8c Werner Macho 2013-08-25 Merge pull request #815 from artfwo/raster-minmax-label-fix Untranslatable strings and formatting of the raster min/max label Merge: 58a3f01 dffd64c Werner Macho 2013-08-25 Merge pull request #816 from artfwo/properties-untranslatable-tooltip Fix untranslatable tooltip in project properties. Merge: 78264a0 3706786 Werner Macho 2013-08-25 Merge pull request #830 from artfwo/master Russian translation update. Merge: 3706786 78264a0 Artem Popov 2013-08-26 Merge remote-tracking branch 'upstream/master' Artem Popov 2013-08-26 Russian translation update. Victor Olaya 2013-08-26 [processing] aded dual support for saga 2.1 and 2.0.8 several minor bugs and improvements Juergen E. Fischer 2013-08-25 german translation update Werner Macho 2013-08-25 translation update: nl by Richard Merge: bb798b4 8e43791 mhugent 2013-08-25 Merge pull request #829 from mhugent/ogr_odbc_subset Fix subset for ODBC ogr layers Juergen E. Fischer 2013-08-25 speedup creation of spatialite database in tests pcav 2013-08-25 More IT GUI translation Juergen E. Fischer 2013-08-25 osgeo4w64: run Nightly instead of Experimental Juergen E. Fischer 2013-08-25 fix doxygen and unused warnings Juergen E. Fischer 2013-08-25 indentation update Juergen E. Fischer 2013-08-25 remove line decoration symbol layer test (followup aaef9478) Juergen E. Fischer 2013-08-25 cleanup c++filt Juergen E. Fischer 2013-08-25 german translation update Juergen E. Fischer 2013-08-25 show running GEOS version in about Juergen E. Fischer 2013-08-25 creatensis.pl: allow installation from other osgeo4w url and collect license texts Merge: 6937e4f 6899a17 mhugent 2013-08-24 Merge pull request #800 from minorua/8440 If ignoreShapeEncoding is false, clear SHAPE_ENCODING after creating shapefile with SHAPE_ENCODING="" (fix #8440) Werner Macho 2013-08-24 changes to make function help look the same Werner Macho 2013-08-24 translation update: es by carlos pcav 2013-08-23 One translator missing pcav 2013-08-23 Updated list of translators Merge: c9cf745 8aa7795 pcav 2013-08-23 Merge branch 'master' of github.com:qgis/Quantum-GIS pcav 2013-08-23 More IT GUI translation Marco Hugentobler 2013-08-23 Move subset string creation in own method to avoid code duplication Marco Hugentobler 2013-08-23 Fix subset in ogr provider for ODBC driver Matthias Kuhn 2013-08-23 Update docstring Matthias Kuhn 2013-08-23 [dualview] Remove attrs from feature dialog when deleted (Fix #8504) Marco Hugentobler 2013-08-23 Fix form annotations not showing in composer Merge: f8ac3a4 fc2a4a1 Giuseppe Sucameli 2013-08-23 Merge pull request #827 from slarosa/fix_6892 [dbmanager] skip RuntimeError: fixes #6892 Merge: 418ba87 dd0eda2 Werner Macho 2013-08-23 Merge pull request #828 from Jean-Roc/traduction_ui update french translation Jean-Roc Morreale 2013-08-23 update french translation Juergen E. Fischer 2013-08-22 debian packaging update Juergen E. Fischer 2013-08-22 german translation update Juergen E. Fischer 2013-08-22 remove line decoration symbol layer (fixes #8379) Salvatore Larosa 2013-08-22 [dbmanager] skip RuntimeError: fixes #6892 Merge: 1bb2725 a765b5a mhugent 2013-08-22 Merge pull request #824 from rldhont/8473 FIX BUG #8473 Cannot rename layers in composer legend D'Hont René-Luc 2013-08-19 FIX BUG #8473 Cannot rename layers in composer legend If the layer is a raster layer, the layer label is not updated with the user defined text. If the layer is a vector layer with simple symbol the symbol label cannot be updated and be blocked at layer name. The label can be the symbol user label, the layer user label, the layer title or the layer name. Salvatore Larosa 2013-08-22 remove context help for mapserver export plugin: followup 441a46b Salvatore Larosa 2013-08-22 [pyqgis-console] sextante => processing renaming: followup ec82b52 Luigi Pirelli 2013-08-22 better message logging for WMS retry Luigi Pirelli 2013-08-22 WMS Tile retry feature Werner Macho 2013-08-22 translation update: no by james and es by carlos Larry Shaffer 2013-08-20 [labeling] Add local preconfigured test server unit tests class - Add control images for server output - Add class for comparison against canvas output Larry Shaffer 2013-08-20 Add simple local test server convenience classes for unit tests Larry Shaffer 2013-08-20 [labeling] Update unit test control images, features db and .qml styles Larry Shaffer 2013-08-20 [labeling] Make test font available for app, tests, server without requiring font install - Load test font from testdata.qrc if app or server built with ENABLE_TESTS - Add global loading of test font in utilities.py Merge: 363b5de 54b45e7 Werner Macho 2013-08-21 Merge pull request #825 from yoichigmf/for_pull_req update GUI translation JA yoichigmf 2013-08-21 update GUI translation JA Werner Macho 2013-08-21 allowing negative values in fixed buffer distance Borys Jurgiel 2013-08-20 translation update: pl Juergen E. Fischer 2013-08-20 followup b9b8a039: wthh? Juergen E. Fischer 2013-08-20 fix #8488: use QgsMimeDataUtils to decode uris when dropping into db_manager Matthias Kuhn 2013-08-20 Followup 2995bdcf: Don't iterate changed geometries twice Matthias Kuhn 2013-08-20 Render added/changed features on top Alexander Bruy 2013-08-20 [processing] drop old icon Alexander Bruy 2013-08-20 also update icon Alexander Bruy 2013-08-20 update console for sextante renaming Alexander Bruy 2013-08-20 more fixes after sextante renaming Alexander Bruy 2013-08-20 [sextante] more import fixes Alexander Bruy 2013-08-20 [sextante] regenerate ui and resources Alexander Bruy 2013-08-20 [sextante] fix imports Alexander Bruy 2013-08-20 fix CMakeLists.txt after renaming sextante Victor Olaya 2013-08-12 renamed "sextante" to "processing" Larry Shaffer 2013-08-19 [labeling] Reinstate old pan icon for label placement section's icon Daniel Vaz 2013-08-17 Update feature count on layer modification (Fix #8445) Borys Jurgiel 2013-08-19 translation update: pl Werner Macho 2013-08-19 translation update and changes in galician language naming Alexander Bruy 2013-08-19 [sextante] fix handling of vectors in scripts and R providers (closes #8483) Marco Hugentobler 2013-08-19 Add png8 format string for qgis server and umn Juergen E. Fischer 2013-08-18 * also intialize mCalc member of QgsExpression in protected ctor (fixes #8475) * avoid nesting ogc:Filter in ogc:Filter (createFunctionElement already returns a filter) Juergen E. Fischer 2013-08-18 debian packaging: disable globe plugin on sid (apparently doesn't support OSG 3.2 in sid yet) Juergen E. Fischer 2013-08-18 msvc: build with multiple processes Radim Blazek 2013-08-18 Disable VSI cache before GDALGetOverviewCount, workaround for GDAL ticket 5170, hopefully fixes #8356 William Kyngesburye 2013-08-17 check for bundled GRASS for gisbase on OS X Merge: 0b5c4eb b1bad51 Werner Macho 2013-08-17 Merge pull request #821 from asiersarasua/master Basque translation update asiersarasua 2013-08-17 Basque translation update Werner Macho 2013-08-17 translation update: fi by Kari Larry Shaffer 2013-08-16 Fix crash when server source select dialogs go into background on Mac Larry Shaffer 2013-08-16 [labeling] Refactor unit tests so all render check tests can be inherited by all output test classes (canvas, composer, server) - Add openInBrowserTab function to utilities Juergen E. Fischer 2013-08-16 sync GPL with original Borys Jurgiel 2013-08-16 translation update: pl Merge: 6366f5b 4957d57 Werner Macho 2013-08-16 Merge pull request #820 from Jean-Roc/traduction_ui update french translation Jean-Roc Morreale 2013-08-16 update french translation Juergen E. Fischer 2013-08-16 german translation update Alexander Bruy 2013-08-15 update to new icon (follow up 0150799e78) Werner Macho 2013-08-16 translation update: da_DK by Jacob Werner Macho 2013-08-16 translation update: no by James Werner Macho 2013-08-16 translation update: string update for all languages Merge: 116bbff 2a4f4d6 Nathan Woodrow 2013-08-16 Merge pull request #818 from 3nids/undodigitize fix crash at undo in digitize Merge: 4e69997 96834b2 Werner Macho 2013-08-16 Merge pull request #819 from artfwo/master Russian translation update. Artem Popov 2013-08-16 Russian translation update. Denis Rouzaud 2013-08-16 fix crash at undo in digitize Marco Hugentobler 2013-08-16 Fix #8471 Merge: 2046342 d10872a mhugent 2013-08-15 Merge pull request #817 from artfwo/save-style-window-title-fix Fix window title in qgssavetodbdialog.ui Artem Popov 2013-08-16 Fix window title in qgssavetodbdialog.ui Artem Popov 2013-08-16 Fix untranslatable tooltip in project properties. Artem Popov 2013-08-16 Untranslatable strings and formatting of the raster min/max label Merge: 74367c5 9d19752 Werner Macho 2013-08-15 Merge pull request #814 from slarosa/fix_8469 [topology-checker] skips raster layers: fixes #8469 Salvatore Larosa 2013-08-15 [topology-checker] skips raster layers: fixes #8469 Marco Hugentobler 2013-08-15 Simple marker: use limit for cache image size. Fixes #8386 Nathan Woodrow 2013-08-16 Remove messageitem id Nathan Woodrow 2013-08-15 Add GUI_Export, Reorder widgets Denis Rouzaud 2013-08-15 add destructor Denis Rouzaud 2013-08-09 more complete QgsMessageBarItem: inherits from QWidget to allow further editing Merge: 25e79f9 66a7afa Tim Sutton 2013-08-15 Merge pull request #698 from 3nids/svgpan SVG for pan icons Denis Rouzaud 2013-07-04 replace pan icon by a hand, and accord panToSelected to already used colors Merge: 58b7910 93a5879 Nathan Woodrow 2013-08-14 Merge pull request #811 from 3nids/fixrubber fix appearance of point rubber bands at small scales Denis Rouzaud 2013-08-15 fix mixing pixels and map units in calculation of update rectangle Denis Rouzaud 2013-08-14 avoid duplication of points in rubberbands of point geometry Juergen E. Fischer 2013-08-14 osgeo4w: fix install in directory with blanks (fixes #8398) Alexander Bruy 2013-08-14 [sextante] update modeller to changes in parameter vector Merge: fef6e2b bc07232 Nathan Woodrow 2013-08-14 Merge pull request #810 from 3nids/fixwarning fix warning Denis Rouzaud 2013-08-14 fix warning Larry Shaffer 2013-08-13 [labeling] Unit tests update - Fix unpacking of render check results (fix false positives) - Push opening of report to background process for Linux - Report all failures to one random temp HTML file - Better HTML output for report Merge: d1768b8 fcb6d64 Salvatore Larosa 2013-08-13 Merge pull request #806 from 3nids/fix8399 fix #8399 do not use pattern in SVG Denis Rouzaud 2013-08-13 homgenize oracle icons Denis Rouzaud 2013-08-13 do not use pattern Matthias Kuhn 2013-08-13 [SIP] Change all occurences of convert[From|To]Instance to convert[From|To]Type Removal of these deprecated calls is expected to improve stability Radim Blazek 2013-08-13 correctly delete last digitized point, fixes #8462 Alexander Bruy 2013-08-13 remove mapserver_export plugin (manual merge for pull-request 642) Radim Blazek 2013-08-13 Disable VSI cache before GDALRasterIO, workaround for GDAL ticket 5170, fixes #8356 Larry Shaffer 2013-08-12 [labeling] Unit test cleanup and add ability to output reports on bad render checks to web browser Nyall Dawson 2013-08-13 Fix indexOf checks in setDisplayField, make sure they are case insensitive Nyall Dawson 2013-08-13 Make sure updateFields() is called before setDisplayField for new vector layers (fix #8311) Nathan Woodrow 2013-08-13 Set alpha for rubber bands. Fix #8463 Larry Shaffer 2013-08-12 [pluginmanager] Fix horizontal stretch of vertical tabs sidebar Chris Crook 2013-08-13 Fixing potential infinite loop when rescanning file too early and removing unnecessary multiple rescans as file is progressively updated Richard Duivenvoorde 2013-06-09 purge olde PluginInstallerDialog context help there will be a new QgsPluginManager help file Matthias Kuhn 2013-08-12 Fix some minor messagebar issues Juergen E. Fischer 2013-08-07 update for visual c++ 2010: * use shorter target names for python plugins * add build scripts for 64bit * use nircmd in postinstall Alexander Bruy 2013-08-12 correct handling for non ASCII characters in plugin installer (fix #8452) Alexander Bruy 2013-08-12 fix copying to clipboard in fTools (closes #8442) Matthias Kuhn 2013-08-12 Get rid of compiler warnings Werner Macho 2013-08-12 translation update: hu by Zoltan Nathan Woodrow 2013-08-12 Fix #7012 Minoru Akagi 2013-08-12 If ignoreShapeEncoding is false, clear SHAPE_ENCODING after creating shapefile with SHAPE_ENCODING="" (fix #8440) Spit: apply SHAPE_ENCODING to shape layer opening Larry Shaffer 2013-08-08 [labeling] Initial python unittest setup and some tests - Note: some tests will fail until differences in platform dpi are worked out Merge: 58477fe 0d34eb1 Werner Macho 2013-08-11 Merge pull request #801 from yoichigmf/work_translation translation update: ja by Yoichi yoichigmf 2013-08-11 update GUI translation JA Werner Macho 2013-08-11 translation update: es by Carlos Salvatore Larosa 2013-08-10 [pyqgis-console] fixes translation strings: avoids UnicodeEncode error Salvatore Larosa 2013-08-10 [pyqgis-console] more encoding fix. Victor Olaya 2013-08-09 [sextante] edited/added saga descriptions Werner Macho 2013-08-09 translation update: da_DK and es Juergen E. Fischer 2013-08-09 german translation update Artem Popov 2013-08-07 Fix untranslatable strings in qgsstylev2managerdialog.cpp pcav 2013-08-09 Updated list of IT translators Merge: 2087de1 c1cde94 Nathan Woodrow 2013-08-08 Merge pull request #798 from 3nids/maptoolcapturerubber [fix #8395] Add a second rubber band in map tool capture Nyall Dawson 2013-08-09 Add note that non-greedy regular expressions are not supported to function help pcav 2013-08-08 More IT GUI translation Salvatore Larosa 2013-08-08 [ftools] add warning for simplify tool when no one layer has been selected Denis Rouzaud 2013-08-08 set pen/brush style for rubber band alpha channel for color of digitizing rubber band second rubberband to distinguish drawn vertices from next possible point in digitization Salvatore Larosa 2013-08-08 [ftools] fix export/add geometry tool: refresh attributes map Matthias Kuhn 2013-08-08 Split feature tool: Feedback in the messagebar instead of QMessageBox Werner Macho 2013-08-08 translation update: another kr update Matthias Kuhn 2013-08-08 [attrtable] Dismiss cached data when column is removed (Fix #8405) Alexander Bruy 2013-08-08 [sextante] fix obtaining vector layers Merge: b88b76b 0523e89 alexbruy 2013-08-08 Merge pull request #760 from ddanielvaz/partial-fix-7708 Partial fix for #7708 Merge: 6fe077c 25c4337 alexbruy 2013-08-08 Merge pull request #755 from ddanielvaz/fix-4189 Fix #4189 Werner Macho 2013-08-08 translation updates: fi, kr, and new translator added Merge: 1a18fba a523fa5 Werner Macho 2013-08-08 Merge pull request #792 from lynxlynxlynx/master Translation update, combobox fix and triviality Salvatore Larosa 2013-08-08 [dbmanager] set columns tab as default in edit table widget (before was indexes tab) Merge: 1e28ce5 34344c5 Werner Macho 2013-08-08 Merge pull request #797 from Jean-Roc/master update frenchu translation Merge: 41f8abb 001ad12 alexbruy 2013-08-08 Merge pull request #791 from alexbruy/annotation-dialog set HTML annotation dialog title (fix #8414) Nyall Dawson 2013-08-08 Fix regexp_substr expression to correctly return only first matched group, not entire matched string Nathan Woodrow 2013-08-08 Follow up for Fix #8411 Nathan Woodrow 2013-08-08 Fix #8411 Suppress warnings for setNamedColour. Warnings reneder composer unusable on windows, even for testing reasons. Merge: 113e6fb e63aaa0 MORREALE Jean-Roc 2013-08-07 Merge pull request #2 from haubourg/master contribution de traduction pour le QgS labeling GUI Salvatore Larosa 2013-08-07 [pyqgis-console] encoding to utf-8 when open or save a script file: again fixes for non-ascii chars Régis Haubourg 2013-08-07 update fr translation labeling gui Alexander Bruy 2013-08-07 skip NaN values when calculating zonal statistics Nathan Woodrow 2013-08-07 Remove ERDAS EULA for now. Will be added on release Salvatore Larosa 2013-08-07 [pyqgis-console] small fix for non-ascii chars Nathan Woodrow 2013-08-07 Don't hardcode alpha in rubberband Nathan Woodrow 2013-08-07 Add ERDAS ECW licence terms. New licence tab in about dialog Denis Rouzaud 2013-08-07 add menu entry for select by expression Marco Hugentobler 2013-08-07 Mapserver: fix automatic normalisation of layer bbox (invalid bbox must stay invalid) Merge: 6149b3a 86a0da0 Werner Macho 2013-08-06 Merge pull request #793 from 3nids/typo typo Denis Rouzaud 2013-08-07 typo Merge: 020ed2c 7608faf Nyall Dawson 2013-08-06 Merge pull request #789 from nyalldawson/bug8192 Fix bounding box calculation for features with NULL geometry (fixes #8192, #8194) Jaka Kranjc 2013-08-06 doc/TRANSLATORS: added myself to the list was "only" in CONTRIBUTORS before Jaka Kranjc 2013-08-06 i18n: slovenian ellipsis is "non-contact" unless used for an unfinished word Jaka Kranjc 2013-08-06 i18n: slovenian translation update (not full) Jaka Kranjc 2013-08-06 QgsDecorationGridDialog: fixed the "Horizontal and Vertical" option It was set with a lowercase v and then checked with an uppercase one: qgsdecorationgriddialog.cpp:57: tr( "Horizontal and vertical" ) ); qgsdecorationgriddialog.cpp:145: else if ( text == tr( "Horizontal and Vertical" ) ) The lowercase variant is newer when you check the translation files - nobody has it translated without also having the uppercase one too. Jaka Kranjc 2013-08-05 FindQsci: removed the unused exception holder variable master didn't build without that: -- Found PyQt4 version: 4.10 File "~/carina/Quantum-GIS/cmake/FindQsci.py", line 41 except ImportError, e: ^ SyntaxError: invalid syntax Alexander Bruy 2013-08-06 set HTML annotation dialog title (fix #8414) Werner Macho 2013-08-06 translation update: no by james Alexander Bruy 2013-08-06 [sextante] update algorithms to changes in ParameterVector Alexander Bruy 2013-08-06 [sextante] allow to select multiple geometry types for ParameterVector Minoru Akagi 2013-07-18 OgrProvider: fix query encoding issues Régis Haubourg 2013-08-06 Revert "minor fr ui translation" This reverts commit 73142defece5bb47f32af3aca9d322d266c5ebd9. Matthias Kuhn 2013-08-06 Memory provider iterator: setFields on filtered requests ... so QGIS doesn't crash on name based lookups of attributes Salvatore Larosa 2013-08-06 [ftools] fix polygon from layer extent tool: with the "Calculate extent for each feature separately" option ticked, it generates a python error. Merge: 018e958 73142de Werner Macho 2013-08-05 Merge pull request #790 from haubourg/master minor fr ui translation Régis Haubourg 2013-08-05 minor fr ui translation My first commit using github, please tell me if something is not done correctly. régis Borys Jurgiel 2013-08-04 [Plugin Installer] fix #8410 Merge: 53e6d8c 9292333 Jürgen Fischer 2013-08-04 Merge pull request #643 from rduivenvoorde/optionalcleanups Optional cleanups nyalldawson 2013-08-04 Skip missing geometries when calculating extent (fixes #8192, #8194) nyalldawson 2013-08-04 Return minimal QgsRectangle as boundingBox if geometry not available, since QgsRectangle(0,0,0,0) may be a valid bounding box for some geometries Merge: e76fc95 21fcfd1 Werner Macho 2013-08-04 Merge pull request #787 from Jean-Roc/master update fr ui Merge: 834c5ab 3720feb MORREALE Jean-Roc 2013-08-04 Merge pull request #1 from msemchaoui/msemchaoui_branche MàJ_traductionQGIS2_Mehdi Minoru Akagi 2013-08-04 GdalTools: apply selected name filter to -of parameter (fix #8408) Nathan Woodrow 2013-08-04 Add tooltips for expression builder. Fix #7978 Larry Shaffer 2013-08-03 Switch targets staged_[plugin_dir_name] to staged-[plugin_dir_name], as noted in comments - Only plugin directories should have underscores, targets should have hyphens Larry Shaffer 2013-08-03 [dbmanager] Add missing InvalidDataException import Larry Shaffer 2013-08-03 [dbmanager] Fix settings default and Python type for connection with postgis plugin - Saved connections with empty password raised a QPyNullVariant parameter error due to lack of str default Larry Shaffer 2013-08-03 [dbmanager] Fix non-clickable checkbox in Null column when creating table (on Mac) - Switch from checkbox delegate to Qt::CheckStateRole for column - Enable all triggers for table view Merge: 0367182 4cb5d04 volaya 2013-08-03 Merge pull request #784 from ricardogsilva/sextante_issue_8407 Fix for issue #8407 - Allow selecting between file or directory when using a File Parameter in the modeler msemchaoui 2013-08-03 MàJ_traductionQGIS2_Mehdi ricardogsilva 2013-08-03 added the possibility to choose between file or folder for File Parameters in the modeller Nathan Woodrow 2013-08-03 Add schema for mssql when setting where clause Nathan Woodrow 2013-08-03 Add __iter__ for QgsFeature Juergen E. Fischer 2013-08-03 german translation update Artem Popov 2013-08-02 Correct window title in the export error messagebox. Artem Popov 2013-08-02 Add plural form in QgsMessageBar Artem Popov 2013-07-30 Russian translation update. Artem Popov 2013-07-30 Fix untranslatable string in QgsRasterDataProvider Artem Popov 2013-07-29 Russian translation update. Werner Macho 2013-08-03 change window title Salvatore Larosa 2013-08-02 [ftools][fix #8390] fix typo Salvatore Larosa 2013-08-02 [dbmanager] avoid double extension when exports to file a table Salvatore Larosa 2013-08-02 [pyqgis-console][fix #8392] automatically removes the redundant char when autoclosing brackets option is enabled Juergen E. Fischer 2013-08-02 Update 'Add WMS Layer...' to 'Add WMTS/WMTS Layer...' (followup d1de07a2) and finish german translation -- perl -0777 -i.bak -pe 's#Add WMS Layer...(\s+#Add WMS/WMTS Layer...$1 type="unfinished">#' i18n/qgis_*.ts perl -i.bak -pe 's#Add WMS Layer...#Add WMS/WMTS Layer...#' i18n/qgis_*.ts Matthias Kuhn 2013-08-02 Fix possible crash on exit Werner Macho 2013-08-02 translation update: da by Jacob Juergen E. Fischer 2013-08-02 fix #8396 Matthias Kuhn 2013-08-01 Fix QgsVectorLayer::EditType API doc Merge: 7c312f8 efd84bd Giuseppe Sucameli 2013-08-01 Merge pull request #780 from slarosa/db_manager_fix Small fix for DB Manager Salvatore Larosa 2013-07-31 [dbmanager] set focus to SQL query TextEdit and change to ScrollToPixel the result query area Werner Macho 2013-07-31 translation update Merge: 200fae7 d7119f0 Werner Macho 2013-07-31 Merge pull request #766 from imincik/slovak Slovak translation update. Marco Hugentobler 2013-07-31 Fix point displacement in print (ticket #8377) Marco Hugentobler 2013-07-31 Quote layer names in raster calculator pcav 2013-07-31 More IT GUI translation Merge: b9c9ec4 3aad6df Nathan Woodrow 2013-07-30 Merge pull request #779 from ajdunlap/patch-1 Call QCoreApplication.processEvents() after writing to Python console. Fix #8343 Alexander J. Dunlap 2013-07-30 Update console_output.py Call QCoreApplication.processEvents() after writing to Python console, enabling incremental output from Python scripts. Fixes #8343. Borys Jurgiel 2013-07-30 [Plugin Installer] Don't forget about plugins in QGIS-PLUGINPATH env variable. Fix #8376 Marco Hugentobler 2013-07-30 Server: apply project related labeling settings Matthias Kuhn 2013-07-30 [ogr] Rename columns with non-unique name (Fix #8385) Matthias Kuhn 2013-07-30 Followup for 8414345 Remove unreleased code Victor Olaya 2013-07-30 [sextante] made parameter harcoded in saga shapestogrid algorithm Matthias Kuhn 2013-07-30 Doc for editor widget types Marco Hugentobler 2013-07-30 Fix rounding in composer item text width calculation Matthias Kuhn 2013-07-30 [symbology] Markerline does not crash on empty lines (Fix #8381) Merge: 812d1ed 6fce142 Nathan Woodrow 2013-07-29 Merge pull request #765 from 3nids/rightclickdigitize right click ends digitizing without adding a vertex Denis Rouzaud 2013-07-25 right click ends digitizing without adding a vertex Merge: a13cdf8 eeaa867 Nathan Woodrow 2013-07-29 Merge pull request #776 from Oslandia/issue7926 - fix #7926 Juergen E. Fischer 2013-07-29 osgeo4w: update to grass 6.4.3 Larry Shaffer 2013-07-29 [sextante] fix duplicate plugin install target build error Matthias Kuhn 2013-07-29 Drag and drop editor: Don't crash with hidden field (Fix #8380) Alexander Bruy 2013-07-29 [sextante] add example provider code Larry Shaffer 2013-07-29 Fix some more icon path warnings vmora 2013-07-29 - fix #7926 - the painting is ended if image cannot be allocated in renderer Matthias Kuhn 2013-07-28 Switch from deprecated sip*Instance* calls to sip*Type* calls Min SIP version 4.8 Merge: 8b41570 9cabd33 Nathan Woodrow 2013-07-28 Merge pull request #773 from slarosa/fix_8366 Fix #8366 Salvatore Larosa 2013-07-28 [pyqgis-console] remove unused code Salvatore Larosa 2013-07-28 Fix #8366 Juergen E. Fischer 2013-07-28 fix a3c1326 Juergen E. Fischer 2013-07-28 add install of missing API headers Juergen E. Fischer 2013-07-28 use gdb only for crash reports (followup e4fed741) Larry Shaffer 2013-07-28 Fix some icon path warnings Juergen E. Fischer 2013-07-27 remove qgis.xpm from images.qrc (followup 8b5f22eef) Juergen E. Fischer 2013-07-27 debugging improvements Juergen E. Fischer 2013-07-27 labeling: fix missing fonts warning Juergen E. Fischer 2013-07-27 - fix runtime gui warnings - remove xpms - also use qgis-icon-60x60.png as window icon on linux Juergen E. Fischer 2013-07-27 raise Qt dependency to 4.5 Juergen E. Fischer 2013-07-26 qgsexpression: lazy initialization of geometry calculator Victor Olaya 2013-07-27 [sextante] fixed proximity algorithm. modified wrong test model Victor Olaya 2013-07-27 [sextante]renamed wrong saga description file Radim Blazek 2013-07-27 Workaround for GDAL ticket 5170, fixes #8356 Nathan Woodrow 2013-07-27 Clean up return from form Python init function Larry Shaffer 2013-07-26 Initialize bool for showing label drop shadow debug rectangles Larry Shaffer 2013-07-26 Fix help viewer bundled lib path on Mac with symlink Juergen E. Fischer 2013-07-26 fix vc warnings vinayan 2013-07-26 fix distance matrix k and k-1 issue Matthias Kuhn 2013-07-26 Dismiss render cache when selection is modified (Fix #8346) Nathan Woodrow 2013-07-26 Keep the return value of Python init function alive while form open Tim Sutton 2013-07-26 Python formatting cleanups for zonal stats and raster layer tests Tim Sutton 2013-07-26 Small optimisation for zstats so that we dont do more expensive geoemtry operation when we know that cell value is null already. Ivan Mincik 2013-07-26 Slovak translation update. Juergen E. Fischer 2013-07-25 partly revert 1d5712c4 D'Hont René-Luc 2013-07-12 [QGIS-Server] Add vectorJoins Vector joins is based on qgsMapLayerRegistry. Vector joins has to be used for getFeatureInfo and getMap WMS Server Request and for describeFeatureType and getFeature WFS Server Request. Nathan Woodrow 2013-07-25 Change colour of snap marker to make it easier to see Nathan Woodrow 2013-07-25 Fix missing alpha picker Nyall Dawson 2013-07-25 Also set focus to text box after double clicking lists in vector field dialog Werner Macho 2013-07-24 translation update: sv by victor Werner Macho 2013-07-24 translation update: vietnamese Werner Macho 2013-07-24 translation update: czech by Jan Merge: 382e300 09b6bf9 Werner Macho 2013-07-24 Merge pull request #764 from imincik/slovak Slovak translation update. Ivan Mincik 2013-07-24 Slovak translation update. Marco Hugentobler 2013-07-24 Fix double layer space in GetLegendGraphic and remove code redundancy Merge: 0e55d55 a1632d9 Werner Macho 2013-07-23 Merge pull request #763 from SrNetoChan/master PT_pt GUI Translation Nyall Dawson 2013-07-24 Set focus to expression text box after double clicking lists in expression builder widget SrNetoChan 2013-06-03 PT_pt GUI Translation Nathan Woodrow 2013-07-23 Revert "Delete rubberband if deactivating capture tool" Fix #8348 This reverts commit b5a5264c7fcf165d9c2a8dc48db180ea6f9e8fb6. Werner Macho 2013-07-23 translation update: es by carlos Victor Olaya 2013-07-23 [sextante] file selector and iterator buttons can be hidden now in parameters dialog if algorithm does not support them Victor Olaya 2013-07-23 [sextante] fixed error introduced in fields calculator Werner Macho 2013-07-23 translation update: nb_NO by James Merge: 5c2e3f3 82deaae Werner Macho 2013-07-23 Merge pull request #762 from sbrunner/typo-fr Typo in qgis_fr.ts Stéphane Brunner 2013-07-23 Typo in qgis_fr.ts Victor Olaya 2013-07-23 [sextante]fixed preprocessing of parameters Victor Olaya 2013-07-23 [sextante] fixes in saga algs an models Victor Olaya 2013-07-23 added modeler-only tools to simplified classification Victor Olaya 2013-07-23 [sextante] added preprocessing of input params for saga algorithms Werner Macho 2013-07-23 translation update: es, fi, ko_KR thanks to contributors Merge: 5ea75bd c7ca40a Jürgen Fischer 2013-07-23 Merge pull request #761 from minorua/label_enc fix an encoding issue of QgsPalLabeling (fix #8347) Minoru Akagi 2013-07-23 fix an encoding issue of QgsPalLabeling (fix #8347) Daniel Vaz 2013-07-22 Partial fix #7708 Juergen E. Fischer 2013-07-22 symbology-ng: restore rotation (followup 1d5712c) Juergen E. Fischer 2013-07-22 symbology-ng: fix data defined properties of centroid fill markers (fixes #8318) Juergen E. Fischer 2013-07-22 allow debug messages with backtrace on linux Juergen E. Fischer 2013-07-22 symbology-ng: make dump() methods const Juergen E. Fischer 2013-07-22 QgsCredentials: fix sip bindings dbmanager: QgsCredentials is in core (fixes #8345) Juergen E. Fischer 2013-07-22 sync qgsrasterblock sip (followup eaa27aa4f) Merge: bfcdc93 335d7f0 Jürgen Fischer 2013-07-22 Merge pull request #758 from 3nids/siprasterblock [SIP] raster block: missing hasNoData() Denis Rouzaud 2013-07-22 raster block: add missing hasNoData method in sip Merge: d0d2511 d394811 Werner Macho 2013-07-22 Merge pull request #754 from ddanielvaz/ptBR pt-BR translation Nathan Woodrow 2013-07-22 Auto save Python script file Daniel Vaz 2013-07-21 Fix #4189 Juergen E. Fischer 2013-07-21 indentation update Juergen E. Fischer 2013-07-21 raise cmake dependency to 2.8 Daniel Vaz 2013-07-21 Partial translation Daniel Vaz 2013-07-21 partial translation to pt-BR Daniel Vaz 2013-07-19 Partial translation Juergen E. Fischer 2013-07-21 test fixes: * use compareWkt in PyGeometry nad PyQgsRectangle * skip PySpatialiteProvider if pyspatialite is unavailable * show information about used fonts Juergen E. Fischer 2013-07-21 topology checker: catch difference error (fixes #7845) Juergen E. Fischer 2013-07-21 renderchecker: create world files Nathan Woodrow 2013-07-21 Add missing alpha value option for colour ramps Juergen E. Fischer 2013-07-20 gml download: fix progress noise Juergen E. Fischer 2013-07-20 fix warning Juergen E. Fischer 2013-07-20 composer item group: fix destruction Juergen E. Fischer 2013-07-20 wfs feature iterator: support ExactIntersect (fixes #8310) Juergen E. Fischer 2013-07-20 composer: save/restore item groups (fixes #7675) Juergen E. Fischer 2013-07-20 german translation update Juergen E. Fischer 2013-07-20 debian packaging updates Nathan Woodrow 2013-07-19 Update to new icon. Fix #6688 Juergen E. Fischer 2013-07-20 fix typo Juergen E. Fischer 2013-07-20 browser: add credential dialog (fixes #6044) Juergen E. Fischer 2013-07-19 GdalTools: use int to compare versions (fixes #8323) Juergen E. Fischer 2013-07-19 test fixes: * port python test to sip api v2 (fixes #8314) * introduce compareWkt for more tolerant WKT comparisions in C++ tests * require UTF-8 locale for regression1141 test on linux Juergen E. Fischer 2013-07-19 catch transformation exceptions in pal labeling (fixes #7730) Marco Hugentobler 2013-07-19 Fix vertical alignment in data defined labeling D'Hont René-Luc 2013-07-19 Transform layerName for typeName in WFS GetCapabilities Merge: ddef9a9 1faadbc Werner Macho 2013-07-19 Merge pull request #750 from artfwo/master Fix misc typos and untranslatable strings Artem Popov 2013-07-19 Fix misc typos and untranslatable strings Juergen E. Fischer 2013-07-19 fix some tests: * put spatialite test database into temp path * relaxed WKT comparison Juergen E. Fischer 2013-07-19 also determine primary key in spatialite 4 Victor Olaya 2013-07-19 [sextante]adapted some saga names Some code cleaning Werner Macho 2013-07-18 translation update: sv by Victor Marco Hugentobler 2013-07-18 Fix scaling of rotated svg markers if printing a QGIS server WMS with QGIS desktop Victor Olaya 2013-07-18 Changed how postexecution errors are handled in algorithms caling external apps Improved R error messages Victor Olaya 2013-07-17 [sextnate] minor algorithm improvements and renaming Victor Olaya 2013-07-17 [sextante] adapted SAGA binding to support different versions in windows and linux Victor Olaya 2013-07-15 Revert "[sextante] removed "lib" prefix in saga calls" This reverts commit 1c2e49ed249a89480c1195f50c96614dc72700d3. Conflicts: python/plugins/sextante/saga/SagaAlgorithm.py pcav 2013-07-18 More IT GUI translation vmora 2013-07-18 fix rubberband test Matthias Kuhn 2013-07-18 Some further small improvements to QgsRubberband vmora 2013-07-18 fix #4819 improves rendering speed of complex rubberbands vmora 2013-07-17 - fix issue4819 - modify polygon render to exclude consectuvie points that are less than a pixel appart - moved inner loop debug prints to level 3 and 4 since they where slowing down too much the code in debug Hugo Mercier 2013-07-18 refs #8045 Fix python plugin path encoding issues Hugo Mercier 2013-07-18 refs #8045 Fix the way main() parse path names with special characters Hugo Mercier 2013-07-18 refs #8045 Add unit tests for path passed from command line Juergen E. Fischer 2013-07-18 adapt some tests to 'better' wkt (followup b1efd479) Alexander Bruy 2013-07-18 fix PyQgsSymbolLayerV2 test Merge: ab4fc78 728ec25 Werner Macho 2013-07-18 Merge pull request #748 from Jean-Roc/mywork update french translation Alexander Bruy 2013-07-18 fix PyQgsVectorLayer test Jean-Roc Morreale 2013-07-18 update french translation Juergen E. Fischer 2013-07-18 run REPACK after deleting features (fixes #8317) Nathan Woodrow 2013-07-18 Disable field in attribute table if field is not editable Juergen E. Fischer 2013-07-17 - introduce qgsDoubleToString for format double with maximum precision - usage in mssql provider fixes #7638 - read precision in mssql provider (fixes #5966) - commit errors are only shown once Merge: f1e0498 73a9255 Werner Macho 2013-07-17 Merge pull request #745 from yoichigmf/for_pull_req update GUI translation JA yoichigmf 2013-07-17 update GUI translation JA Alexander Bruy 2013-07-17 fix PyQgsMemoryProvider test Juergen E. Fischer 2013-07-17 vector join: put subset string in parentheses (followup af8479e72; closes pull request #571; fixes #7743) Juergen E. Fischer 2013-07-17 manually merge pull request #744 (fixes #7444) Nathan Woodrow 2013-07-17 Set sip api in __init__.py Alexander Bruy 2013-07-17 update layer fields after zonal statistics calculation Alexander Bruy 2013-07-15 unittest for QgsZonalStatistics Alexander Bruy 2013-07-15 handle truncating of long fieldnames (mainly for shapefiles) Daniel Vaz 2013-07-14 Fix #6063 Daniel Vaz 2013-07-14 Fix #6063 Daniel Vaz 2013-07-14 commit vmora 2013-07-12 - added warning and chance to cancel Natural break classification for dataset >50k records - modified test script to generate gowing sizes tables (for timing) vmora 2013-07-11 - script to generate a database to reproduce the bug - no crash observed with qgis natural breaks (jenks) nyalldawson 2013-07-08 Fix calculation of heatmap raster size (fix #8194) - merged for further testing Merge: f4ac684 cf0676c Nathan Woodrow 2013-07-16 Merge pull request #743 from ddanielvaz/fix-7620 Fix #7620 Daniel Vaz 2013-07-16 Fix #7620 Werner Macho 2013-07-17 translation update: korea Juergen E. Fischer 2013-07-16 wfs provider: fix support for non-ascii wfs layer names (fix #7848) Juergen E. Fischer 2013-07-16 vector join: fix quoting in subset string D'Hont René-Luc 2013-07-16 Bug #8166 GetFeatureInfo: clickable area too small for points For point layers, clicking exactly on the point is difficult, and the user misses the popup very often. Better define a larger clickable area. This commit enlarge the area for point by 2. Juergen E. Fischer 2013-07-16 fix 2fa77362 Juergen E. Fischer 2013-07-16 vector file writer: add support for DBF files (fixes #7507) Juergen E. Fischer 2013-07-16 ogr provider: move REPACK into createSpatialIndex. Don't REPACK in deleteFeatures as there might still be pending changes that depend on the current feature ids (fixes #7472) Merge: 530610d d476aed Nathan Woodrow 2013-07-16 Merge pull request #732 from ddanielvaz/fix-5789 Fix #5789 Merge: bbd257f 00615ae Nathan Woodrow 2013-07-16 Merge pull request #742 from 3nids/colorconform better color uniformity Juergen E. Fischer 2013-07-16 also accept first ellipsoid (followup be7a026190) Merge: 13c71d4 df627b1 volaya 2013-07-16 Merge pull request #738 from radosuav/sextante_file_extensions [sextante] Append output file extension if missing Merge: 29a4bc0 be7a026 Jürgen Fischer 2013-07-16 Merge pull request #736 from Oslandia/issue7441 fix issue7441 Merge: 2fa7736 45ab8cc Jürgen Fischer 2013-07-16 Merge pull request #715 from Oslandia/issue7550 solves Issue7550 Nathan Woodrow 2013-07-16 Only restore geometry for non custom attribute forms Juergen E. Fischer 2013-07-16 dbmanager: fix spatialite connection error message Juergen E. Fischer 2013-07-16 german translation update Merge: 9093bcd eea246a Jürgen Fischer 2013-07-16 Merge pull request #739 from minorua/fixbld fix build (follows 0e7b60e) Denis Rouzaud 2013-07-16 better colors Marco Hugentobler 2013-07-16 Fix memory leak in multiband color renderer Merge: dc489df 805be41 Nathan Woodrow 2013-07-15 Merge pull request #740 from 3nids/snapfirstnode Visual snapping when adding first node or starting feature (fix #8300) Denis Rouzaud 2013-07-16 Visual snapping when adding first node or starting feature (fix #8300) Nathan Woodrow 2013-07-16 Include system proxies Minoru Akagi 2013-07-16 fix build (follows 0e7b60e) Juergen E. Fischer 2013-07-16 fix windows build of grass fake library Juergen E. Fischer 2013-07-16 fix build on debian squeeze Nathan Woodrow 2013-07-16 Refresh canvas after show/hide layers. Fix #8096 Werner Macho 2013-07-15 translation update: es by Carlos rmgu 2013-07-15 [sextante] If no extension is specified for an output file append the extension from the selected file filter. Juergen E. Fischer 2013-07-15 fix #6978 Merge: 133398b b54c981 Jürgen Fischer 2013-07-15 Merge pull request #730 from palmerj/wfs_client_fixes WFS client fixes Juergen E. Fischer 2013-07-15 wfs related fixes: - wfs server: only filter by bbox if there was one given (fixes #8287) - wfs provider: make feature attribute field types stick to the values - vector layer properties, field properties: add (Qt) type column - attribute table: sort Date and DateTime as such - spatialindex: return false when an exception on insertion occured Merge: edf32f9 71c9c36 Jürgen Fischer 2013-07-15 Merge pull request #737 from Oslandia/issue7856 Refs #7856. Fix model reference Borys Jurgiel 2013-07-15 Follow up commit:7a7e54270 Hugo Mercier 2013-07-15 Refs #7856. Fix model reference Borys Jurgiel 2013-07-15 [Plugin Installer] Handle all exception types when loading plugins. Fixes #8295. Breaks string freeze because it's a critical fix. Werner Macho 2013-07-15 changes to norwegian language due to two possibilities and added the new maintainer of the language Juergen E. Fischer 2013-07-15 also remove superfluous query items from WFS and WCS connections (as in WMS; fixes #7848) Nathan Woodrow 2013-07-15 Fix #8297. Select all when expression is blank Werner Macho 2013-07-15 translation update: id and no Juergen E. Fischer 2013-07-15 spatialite: fix handling of empty geometry column (fixes #8299) Merge: b5f38e3 6fcce28 Nathan Woodrow 2013-07-15 Merge pull request #697 from 3nids/svgzoomicon SVG icons for zoom related icons Merge: 1a77cde 0f638fc Nathan Woodrow 2013-07-15 Merge pull request #735 from 3nids/iconsqloracle added oracle raster, sql anywhere icons. Conform colors for raster icon vmora 2013-07-15 fix issue7441 by automatically setting the projection elipsoid to fit the selected CRS pcav 2013-07-15 More IT GUI translation Denis Rouzaud 2013-07-15 new simple draw icon Denis Rouzaud 2013-07-08 better draw icon Denis Rouzaud 2013-07-04 SVG icons for zoom related icons, refine pointer in action and identify icons, completed svg-base Denis Rouzaud 2013-07-15 added oracle raster, sql anywhere icons. Conform colors for raster icon Juergen E. Fischer 2013-07-15 osgeo4w: update to grass 6.4.3RC4 Merge: 94c5f53 618ffa0 Nathan Woodrow 2013-07-14 Merge pull request #729 from minorua/gdal_filename make filename encoding consistent (gdal/ogr) Werner Macho 2013-07-15 translation update: fi by Kari Merge: 6d48f11 7a288d1 Werner Macho 2013-07-14 Merge pull request #733 from Cracert/trans3 translation update: pl Robert Szczepanek 2013-07-14 translation update: pl (CSV) Daniel Vaz 2013-07-14 Fix #5789 Juergen E. Fischer 2013-07-14 wfs server: fix multilinestring parsing Victor Olaya 2013-07-14 [sextante] change saga algorithms to use full name for cmdname Victor Olaya 2013-07-14 [sextante] minor fixes and algorithm changes Juergen E. Fischer 2013-07-14 wfsprovider: also set srsName of changed geometries (followup 1ea6267cb) Juergen E. Fischer 2013-07-14 german translation update Juergen E. Fischer 2013-07-14 wfsprovider: set srsName of new geometries (fixes #7880) Alexander Bruy 2013-07-14 [sextante] update sample script to new API (fix #8278) Juergen E. Fischer 2013-07-14 QGisApp: show commit errors as message bar first Werner Macho 2013-07-14 translation update: es by Carlos Juergen E. Fischer 2013-07-14 QgisApp: use qgsmessageviewer to report commit errors QgsOgcUtils: fix multi geometry type creation and use QgsGeometry types instead of STL templates Jeremy Palmer 2013-04-22 Remove some old code missed from 84f4346eae Jeremy Palmer 2013-04-22 Re-write MimeData Uri concat and split function to deal with layer names and urls that contain the ':' character Jeremy Palmer 2013-06-30 If a network request error occurs while reading the streamed GML, then return a failure status from the getFeatures method Jeremy Palmer 2013-04-22 Ensure progress dialogue shows for WFS GML requests - especially in the case that the geometry type is not determined from the server describe feature type request and we need to inspect the featuretype first feature Jeremy Palmer 2013-06-30 Bug Fix: WFS layers added from the browser no longer prompt the user for the layer coordinates system Juergen E. Fischer 2013-07-14 improve wfs error reporting in server and client Salvatore Larosa 2013-07-14 get back the plugin manager svg icon again, removed mistakenly by 9138ba3 Minoru Akagi 2013-07-14 make filename encoding consistent (gdal/ogr) Merge: 9b4f461 6088fd7 Nathan Woodrow 2013-07-13 Merge pull request #713 from minorua/ftools fTools fixes Merge: 257b31e c9eb4f2 Nathan Woodrow 2013-07-13 Merge pull request #728 from minorua/osgeo4w_gdalfilename OSGeo4W: make sure that GDAL_FILENAME_IS_UTF8 is YES (fix #8010) Minoru Akagi 2013-07-14 OSGeo4W: make sure that GDAL_FILENAME_IS_UTF8 is YES (fix #8010) Juergen E. Fischer 2013-07-14 qgis server: initialize network cache (fixes #7204) Nathan Woodrow 2013-07-14 Don't show messagebar for syntax check. No need Nathan Woodrow 2013-07-14 Use exec file for python console Merge: 558fe92 7b55e21 Werner Macho 2013-07-13 Merge pull request #727 from Cracert/trans3 translation update: pl Juergen E. Fischer 2013-07-13 dbmanager: adapt to sl4 metadata tables (fixes #8290) Robert Szczepanek 2013-07-13 translation update: pl Juergen E. Fischer 2013-07-13 wfs: minor cleanups and a fixed error message Juergen E. Fischer 2013-07-13 make QgsCompositionChecker less forgiving and readd a svg used in tests (fixes #7731) Nathan Woodrow 2013-07-13 Don't inlude empty extents in full extents. Fix #7709 Juergen E. Fischer 2013-07-13 project file transform: don't imply we know the band count (fixes #7080, fixes #8283) Larry Shaffer 2013-07-12 Match size and greyscale color intensity for new default raster layer icon to other default layer icons Larry Shaffer 2013-07-12 Ensure Add Oracle Raster Layer action comes before Add WMS Layer action on Manage Layers toolbar - Should come before Add SQL Anywhere Layer and just after Add Oracle Spatial Layer if all are supported and shown Larry Shaffer 2013-07-12 Ensure Add SQL Anywhere Layer action comes before Add WMS Layer action on Manage Layers toolbar Juergen E. Fischer 2013-07-13 freebsd support (applies #7909) Larry Shaffer 2013-07-12 Ensure new GPX Layer action comes before Remove Layer action on Manage Layers toolbar Merge: 2df4bdc 0017807 Jürgen Fischer 2013-07-12 Merge pull request #581 from minorua/georef_nonascii Georeferencer: a fix to support non-ASCII path Juergen E. Fischer 2013-07-12 split geometry: cleanup parts if split failed (followup 6272274f) Pirmin Kalberer 2013-07-12 UI defaults with layer toolbar on the left Merge: cafc367 5256b80 Jürgen Fischer 2013-07-12 Merge pull request #717 from Oslandia/issue7244 geometry: don't check for cut edges and validate the split geometries instead (fixes #7244) Juergen E. Fischer 2013-07-12 spatialite provider: accept empty tables from spatialite 4 (fixes #7664) Larry Shaffer 2013-07-12 Group and sort providers in browser listing by type then name Juergen E. Fischer 2013-07-12 save as: also use numeric postfix in spatialite (followup ac21c6266) Juergen E. Fischer 2013-07-12 fix warning Merge: 2379129 3328758 Werner Macho 2013-07-12 Merge pull request #719 from artfwo/master Russian translation update. Juergen E. Fischer 2013-07-12 fix a translation string and a german translation Juergen E. Fischer 2013-07-12 indentation update Nathan Woodrow 2013-07-12 Move spacer to end in attribute dialog Juergen E. Fischer 2013-07-12 wfs provider: remove old featureById and nextFeature gml parsing: don't mistake attributes for features just because the have the same name and some cleanups Merge: 272400e 58ba7dd Nathan Woodrow 2013-07-12 Merge pull request #722 from 3nids/iconmouseontop accord wrench to Tim's changes in composer Denis Rouzaud 2013-07-12 delete base file Denis Rouzaud 2013-07-12 accord wrench to Tim's changes in composer Nathan Woodrow 2013-07-12 Use positional for str.format(). Fix #8277 Merge: 9db8970 5de6836 Nathan Woodrow 2013-07-12 Merge pull request #721 from 3nids/iconmouseontop put cursor on top of identify/action icons Matthias Kuhn 2013-07-12 Add "New SpatiaLiate Layer" icon and make it accessible from the toolbar Denis Rouzaud 2013-07-12 put cursor on top of identify/action icons Juergen E. Fischer 2013-07-12 oracle provider: fix log message Artem Popov 2013-07-12 Russian translation update. Tim Sutton 2013-07-12 Use more consistent font for help icon Tim Sutton 2013-07-12 Updated help icon for better theme consistency Tim Sutton 2013-07-12 Make composer manager icon more visually consistent with handles of zoom tools and less dominant on toolbar. Merge: 8c7723f 15101bd Jürgen Fischer 2013-07-11 Merge pull request #718 from ddanielvaz/fix-8275 cleanup temporary database after write check (fixes #8275) Merge: 0653127 9138ba3 Nathan Woodrow 2013-07-11 Merge pull request #700 from 3nids/svgaddlayers SVG icons for project and layer actions Denis Rouzaud 2013-07-05 SVG icons for project, add layers and help actions Larry Shaffer 2013-07-11 Fix finding QScintilla2 lib: prefer local installs over system Daniel Vaz 2013-07-11 Fix #8275 Merge: b50a893 522aecc Nathan Woodrow 2013-07-11 Merge pull request #712 from ddanielvaz/fix-8219 Fix 8219 Daniel Vaz 2013-07-09 Fix #8219 Werner Macho 2013-07-11 translation update: es by carlos Juergen E. Fischer 2013-07-11 german translation update Juergen E. Fischer 2013-07-11 dbmanager: fix setting html attributes (fixes #8271) Juergen E. Fischer 2013-07-11 consider data defined svg pattern rotation (fixes #7736) pcav 2013-07-11 Initial update of IT GUI translation Juergen E. Fischer 2013-07-11 undo: only merge geometry changes on the feature (fixes #8265) Victor Olaya 2013-07-11 [sextante] fixed bug in R installation check in windows Victor Olaya 2013-07-11 [sextante] algorithm fixes and minor changes Marco Hugentobler 2013-07-11 Make marker line angle calculation more robust against duplicated vertices vmora 2013-07-11 - fix issue 7244 Werner Macho 2013-07-11 translation updates: korean Juergen E. Fischer 2013-07-11 save as: add a numeric postfix to reserved field ogc_fid when saving to SQLite (fixes #8245) vmora 2013-07-11 - test that fails because of issue7244 (split several polygons of a multipolygon at the same time vmora 2013-07-11 - set primary key value to NULL in split when there is no default value. - modified the test accordingly vmora 2013-07-11 - solves issue #7550 - the feature modification stops (in edit buffer) once an error is found - the test has been modified to refelect the real problem: the data corruption, and not the commit failure if primary key are not unique Minoru Akagi 2013-07-10 fTools: fix geoprocessing (fix #7298) Merge: 9ed1803 62b30fc Nathan Woodrow 2013-07-10 Merge pull request #711 from ddanielvaz/bugfixes Bugfixes for fTools. Fix #8218 Fix #8069 Fix #7073 Daniel Vaz 2013-07-10 Fix #8069 Nathan Woodrow 2013-07-11 Copy joins on duplicate layer. Fix #8243 Daniel Vaz 2013-07-10 Fix #8069 Nathan Woodrow 2013-07-11 Add label for composer picture search paths. Fix #7764 Merge: 42d57d6 3d6e468 Jürgen Fischer 2013-07-10 Merge pull request #710 from pka/uidefaults Updated UI defaults (toolbars and panels) for app and composer Juergen E. Fischer 2013-07-11 fix old labeling (fixes #8030) Juergen E. Fischer 2013-07-11 db manager: fix #8146 Daniel Vaz 2013-07-06 Fix #7073 Daniel Vaz 2013-07-09 Fix #8069 Daniel Vaz 2013-07-06 Fix #8218 Pirmin Kalberer 2013-07-10 Updated UI defaults (toolbars and panels) for app and composer Juergen E. Fischer 2013-07-10 postgres provider: reload fields if a cursor query fails (fixes #8242) Juergen E. Fischer 2013-07-10 dbmanager: fix column renaming Minoru Akagi 2013-07-10 fTools: remove unnecessary checks on output field names (fix #8241) vmora 2013-07-10 - removed useless function getPrimaryKey since a member already exist for that - modified the test to have multiple column primary key (it fails for the moment Werner Macho 2013-07-09 translation update: german Werner Macho 2013-07-09 some more string typo fixes Victor Olaya 2013-07-09 [sextante] fixed problem with projections when using file inputs Victor Olaya 2013-07-09 [sextante] algorithm fixes Victor Olaya 2013-07-09 [sextante] removed "lib" prefix in saga calls Merge: 61062d7 7ccd3d0 vmora 2013-07-09 Merge remote-tracking branch 'upstream/master' vmora 2013-07-09 - solved issue #7550 - implemented getPrimaryKey member function of QgsSpatiaLiteProvider - in addFeatures, if an attribute is a primary key, its value is set to NULL so that sqlite generates a value automagically Juergen E. Fischer 2013-07-09 limit shapefile fieldname to 10 in fieldcalculator and add attribute dialog (fixes #8235) Juergen E. Fischer 2013-07-09 browser: emit layoutAboutToBeChanged() before destroying home item (fixes #8221) Borys Jurgiel 2013-07-09 [Plugin Installer] Fixes #8244 (crash on closing http request) Werner Macho 2013-07-09 translation update: ja and KR Merge: 78b04df f4272e6 Werner Macho 2013-07-09 Merge pull request #707 from qgis-jp/make_pull_req_from_ja update GUI translation JA Juergen E. Fischer 2013-07-09 ogr provider: reopen the data source if a REPACK failed (fixes #7540) vmora 2013-07-09 - added test for issue #7550 Merge: 0bb9543 9179953 Nathan Woodrow 2013-07-09 Merge pull request #546 from PhilippeDorelon/addfeatureJoin Fix #7072 : can't create a feature when a layer has a join yoichigmf 2013-07-09 update GUI translation JA Nathan Woodrow 2013-07-09 Remove __getattr__, __setattr__ for QgsFeature Not such a good idea after all :) Juergen E. Fischer 2013-07-09 french translation: add blank to window title Juergen E. Fischer 2013-07-09 fix 83cf4be9f68 Juergen E. Fischer 2013-07-09 browser: fix crash when removing favourite items from the directory tree (fixes #8236) Juergen E. Fischer 2013-07-08 postgres provider: set length and precision of native floating point types to -1 (fixes #8145) William Kyngesburye 2013-07-08 OS X install updates Pirmin Kalberer 2013-07-09 New globe navigation controls (partially fixes #6192) Juergen E. Fischer 2013-07-08 ogr provider: avoid GDAL #4509 (fixes #8232) Juergen E. Fischer 2013-07-08 composer table: - fix api updates (fixes #7781) - store/restore geometry of attribute selection dialog Salvatore Larosa 2013-07-08 [pyqgis-console][fixes #8230] adds a missing default value in settings Juergen E. Fischer 2013-07-08 nodetool: track layer of selected feature instead of current layer (fixes #7351) Juergen E. Fischer 2013-07-08 help viewer: report errors and make it work from windows build directory Juergen E. Fischer 2013-07-08 fix warnings Juergen E. Fischer 2013-07-08 postgres provider: fix some error messages Werner Macho 2013-07-08 translation update: fi by Kari Marco Hugentobler 2013-07-08 Merge attributes dialog: also skip pk attributes if taking attributes from selection Werner Macho 2013-07-07 translation update: es by carlos Juergen E. Fischer 2013-07-07 plugin installer: destroy network replies (fixes #8233) Merge: f884f09 ddff4cc Werner Macho 2013-07-07 Merge pull request #705 from Cracert/trans3 translation update: pl Robert Szczepanek 2013-07-07 translation update: pl Merge: ef07bc3 e35cbcb Werner Macho 2013-07-06 Merge pull request #701 from qgis-jp/make_pull_req_from_ja update translation ja include some improvement by Minoru Akagi Juergen E. Fischer 2013-07-07 debian packaging update Larry Shaffer 2013-07-06 Default raster layer icon for when generation of raster legend layer icons is disabled Larry Shaffer 2013-07-06 Switch QGIS Broswer 'set projection' icon to SVG and from 'magic wand' to variation of new CRS icon - Make browser toolbar icon size honor app's pref Larry Shaffer 2013-07-06 Switch custom projection icon to SVG and from 'magic wand' to variation of new CRS icon Larry Shaffer 2013-07-06 Switch CRS icon to SVG, simplify it, and update using GIS theme components Larry Shaffer 2013-07-06 Switch icons in custom CRS dialog to be more consistent with rest of app Larry Shaffer 2013-07-06 Update new selection clearing icons - Rebuild using GIS theme components - Make yellow RGB values match other selection icons Larry Shaffer 2013-07-06 Make lock/unlock icon look less distorted and switch to SVG Larry Shaffer 2013-07-06 Change color of remove icon to red, instead of green Larry Shaffer 2013-07-06 Update new property icons to add whitespace and reduce stroke width - New icons now match existing icons' characteristics Marco Hugentobler 2013-07-06 Clean up code related to old overlay object system Marco Hugentobler 2013-07-06 Remove diagram_overlay plugin yoichigmf 2013-07-06 update translation ja include some improvement by Minoru Akagi Radim Blazek 2013-07-06 set provider request attribute supset only if requested, fixes 7112 and 7267 Juergen E. Fischer 2013-07-06 fix #7217 Juergen E. Fischer 2013-07-06 german translation update Juergen E. Fischer 2013-07-06 fix warning Borys Jurgiel 2013-07-06 Update core plugins to use the new icons by default. Radim Blazek 2013-07-05 append required date format to field label in attribute dialog Marco Hugentobler 2013-07-05 Fix #8225 Radim Blazek 2013-07-05 add spacer to keep attributes on top Werner Macho 2013-07-05 translation update: nl and no Werner Macho 2013-07-04 translation update: ja and da_DK thanks to contributors Merge: e53aa07 286f62c Werner Macho 2013-07-04 Merge pull request #699 from qgis-jp/make_pull_req_from_ja update GUI translation ja Matthias Kuhn 2013-07-04 Merge features: Fix "take attributes from selected feature" Fix #7668 Fix #7922 yoichigmf 2013-07-05 update GUI translation ja Merge: c3143e6 7221c73 Matthias Kuhn 2013-07-04 Merge pull request #695 from minorua/defproj fTools: remove lines that cause error with non-ascii path Werner Macho 2013-07-04 fixing tips - thanks to Richard for pointing to it Juergen E. Fischer 2013-07-04 spit: fix truncation issue Merge: 5fcd054 5b2e9dc Nathan Woodrow 2013-07-04 Merge pull request #693 from 3nids/selectsvgicon SVG for select icons Merge: 1b0dbc8 3331069 Nathan Woodrow 2013-07-04 Merge pull request #692 from 3nids/moresvgicons SVG for system and general icons Merge: eeb2cb4 a7854ff Werner Macho 2013-07-04 Merge pull request #696 from asiersarasua/master Basque translation update asiersarasua 2013-07-04 Basque translation update Minoru Akagi 2013-07-04 fTools: remove lines that cause error with non-ascii path Werner Macho 2013-07-04 Fixing some typos Merge: 7805af3 ea5d3b3 Werner Macho 2013-07-03 Merge pull request #694 from Jean-Roc/mywork update french translation Denis Rouzaud 2013-07-03 SVG for select icons Juergen E. Fischer 2013-07-04 crssync: exclude some records from updates from GDAL sqlite3 resources/srs.db sqlite> alter table tbl_srs add noupdate boolean; sqlite> update tbl_srs set noupdate=(auth_name='EPSG' and auth_id in (5513,5514,5221,2065,102067,4156,4818)); Jean-Roc Morreale 2013-07-04 update french translation Victor Olaya 2013-07-03 [sextante] fixed graticule creation algorithm Victor Olaya 2013-07-03 [sextante]Some algorithm renaming Victor Olaya 2013-07-03 [sextante]adapted SAGA export procedure to SAGA 2.1 Victor Olaya 2013-07-03 [sextante] minor changes in algorithms Matthias Kuhn 2013-07-03 More const-correctness Werner Macho 2013-07-03 translation update: es by Carlos Matthias Kuhn 2013-07-03 Let python utils manage all python cleanup Werner Macho 2013-07-03 translation update: danish by Jacob Werner Macho 2013-07-03 Bugfixing typos, thanx to Carlos Davila for pointing them out Merge: d2b2bb1 6a2bd62 Etienne Tourigny 2013-07-03 Merge pull request #429 from tecoholic/ramp_srch added searching of colorramps in style manager Denis Rouzaud 2013-07-03 added folder for base SVG images (hammer, pointer, scredriver, etc.) Denis Rouzaud 2013-07-03 more SVG icons Matthias Kuhn 2013-07-03 fix editable attribute of joined fields (fix #7739) Based on pull request 576 by minorua Nathan Woodrow 2013-07-03 Fix windows build Matthias Kuhn 2013-07-03 Followup f3e08b5: Actually clean python on systems with newer sip version Matthias Kuhn 2013-07-03 Only cleanup python with newer sip versions (Fix #8102) Merge: 7d75fcc 3851670 Nathan Woodrow 2013-07-03 Merge pull request #689 from 3nids/svgactionicons use SVG for action icons Denis Rouzaud 2013-07-03 use SVG for action icons Minoru Akagi 2013-07-03 fTools: fix MergeShapes and SpatialJoin fix #7823 fix #7952 fix #8206 Merge: ce1a9a8 b0ef70b Werner Macho 2013-07-02 Merge pull request #687 from qgis-jp/make_pull_req_from_ja Make pull req from ja yoichigmf 2013-07-02 update GUI translation JA Merge: 03c1cec ce1a9a8 yoichigmf 2013-07-02 Merge branch 'master' of https://github.com/qgis/Quantum-GIS into make_pull_req_from_ja Conflicts: i18n/qgis_ja.ts Matthias Kuhn 2013-07-02 Topology checker: No double-delete of rubberbands (Fix #8095) Werner Macho 2013-07-02 Translation String update for upcoming 2.0 Release Werner Macho 2013-07-02 translation update: es by Carlos Merge: 3ba1c3c ad01416 Nathan Woodrow 2013-07-01 Merge pull request #685 from 3nids/identifyicon SVG icon for identify action Nathan Woodrow 2013-07-02 Use qRound. Fix windows build Nathan Woodrow 2013-07-02 Use extents table for ms sql layers for faster loading - Also move feature count logic Victor Olaya 2013-07-01 [sextante] fixed some minor bugs due to new SIP API Denis Rouzaud 2013-07-01 replace identify icon by svg yoichigmf 2013-07-01 update GUI translatio ja Nyall Dawson 2013-07-01 Follow up to 4240807 Nyall Dawson 2013-06-30 Fix dimension calculation in heatmap plugin (fix #8193) Juergen E. Fischer 2013-06-30 fix #8165 Merge: 92b930a 7e00e7b volaya 2013-06-30 Merge pull request #677 from radosuav/r_report_fix Save SEXTANTE GRASS r.report output in HTML Juergen E. Fischer 2013-06-30 projection selector: skip unavailable user CRSes (fixes #7377) Juergen E. Fischer 2013-06-30 ows data items: populate data items of other providers (fixes #7857) Werner Macho 2013-06-30 translation update: gl_ES by Xan Juergen E. Fischer 2013-06-30 project properties: rename wfs slots to avoid autoconnect warning Juergen E. Fischer 2013-06-30 spelling fixes Juergen E. Fischer 2013-06-30 grass provider: don't close invalid layers (fixes #7180) Juergen E. Fischer 2013-06-30 QgsGml: append wkb fragments to the last set not the first (fixes #7991) Juergen E. Fischer 2013-06-30 german translation update Juergen E. Fischer 2013-06-30 expression builder widget: hide sample buttons and context menu, when no layer is set (fixes #6802) wfs source select: rename slots to avoid autoconnect warning attribute table: remove stale connect Juergen E. Fischer 2013-06-30 wfs connection dialog: also hide pixmap transformation checkbox ows source select: remove unused slot Juergen E. Fischer 2013-06-30 don't crash when measuring faulty geometry (fixes partially #7991) Merge: 5d60f60 7d3461d Werner Macho 2013-06-29 Merge pull request #683 from rduivenvoorde/nltranslation dutch translation update Tim Sutton 2013-06-30 Added Denis Rouzaud to contributors and sorted contributor list alphabetically Richard Duivenvoorde 2013-06-29 dutch translation update Juergen E. Fischer 2013-06-29 fix #7865 Juergen E. Fischer 2013-06-29 fix #8198 Juergen E. Fischer 2013-06-29 postgres provider: remove attribute in reverse order (fixes #8142) Juergen E. Fischer 2013-06-29 save and restore message viewer geometry Merge: 376c5f3 5ee134f Werner Macho 2013-06-29 Merge pull request #682 from qgis-jp/make_pull_req_from_ja update GUI translation ja yoichigmf 2013-06-29 update GUI translation ja Juergen E. Fischer 2013-06-29 new spatialite layer: don't assume epsg id and qgis srsid are the same (fixes #8041) Borys Jurgiel 2013-06-29 [Plugin Installer] Follow up 619558dabc Juergen E. Fischer 2013-06-29 use QFileDialog.getOpenFileNameAndFilter variant when setting last filter (fixes #8138) Juergen E. Fischer 2013-06-29 enable/disable raster tools (fixes #8179) Merge: 8dc28f2 f4a4009 Tim Sutton 2013-06-29 Merge pull request #681 from 3nids/maptoolcursor set cursor for mapTools Matthias Kuhn 2013-06-28 PostgreSQL not working in DB Manager (Fix #8191) Borys Jurgiel 2013-06-28 Update contributors list Merge: 93c5599 e00f0c0 Marco Hugentobler 2013-06-28 Merge branch 'server_user_db' Marco Hugentobler 2013-06-28 Initialize qgis.db in server. Fixes ticket #8172 Denis Rouzaud 2013-06-28 set cursor for mapTools Juergen E. Fischer 2013-06-28 revert unnecessary api change Werner Macho 2013-06-28 translation update: TW by Lin Merge: c8d3fa7 9a0be04 Nathan Woodrow 2013-06-27 Merge pull request #680 from ddanielvaz/master Fix #7822. Export to Spatialite is really slow, compared to commandline ogr2ogr Daniel Vaz 2013-06-27 fixing bug #7822 Giuseppe Sucameli 2013-06-27 gdaltools: fix Translate/FillNodata batch mode (follo df4fc99e83) Giuseppe Sucameli 2013-06-27 gdaltools: fix syntax error (follow edd0cdd294) Giuseppe Sucameli 2013-06-27 gdaltools: cleanup Giuseppe Sucameli 2013-06-27 gdaltools: more SIP APIv2 update Giuseppe Sucameli 2013-06-27 gdaltools: SIP APIv2 update (error when paths defined in Settings dialog) Borys Jurgiel 2013-06-27 [Plugin Installer] Only test not loaded Python plugins when (re)building metadata registry. Loaded plugins prove they are ok just being loaded. It prevents possible bugs when already loaded plugin is imported again. Borys Jurgiel 2013-06-27 [Plugin Manager] Fix inconsistent behaviour in --noplugins mode: don't try to load plugins, just enable/disable them in QSettings. Werner Macho 2013-06-27 translation update: slovenian by Joze rmgu 2013-06-27 Allow value checking and the use of default value for ParameterExtent Marco Hugentobler 2013-06-27 Fix for SVG cache Matthias Kuhn 2013-06-27 Change default: Don't generate raster thumbnail for legend (Fix #8175) Marco Hugentobler 2013-06-27 Fix crash if merge geometries fails Merge: 0cac8b4 6809626 Werner Macho 2013-06-26 Merge pull request #679 from Jean-Roc/mywork update french translation (contributions from @MarieSilvestre) Jean-Roc Morreale 2013-06-27 update french translation (contributions from @MarieSilvestre) Nyall Dawson 2013-06-27 Standardise control names in heatmap dialog Nyall Dawson 2013-06-27 Save heatmap settings between runs (fix #8078) Nyall Dawson 2013-06-27 Only allow choice of heatmap raster formats which support Float32 data types Nyall Dawson 2013-06-27 Don't reset output size on radius change (fix #8090) Prevent input of invalid output size by changing to spin boxes for rows and columns Werner Macho 2013-06-26 translation update: ko_KR Marco Hugentobler 2013-06-26 Fix dash pattern for line width < 1 pixels in Qt 4.8 Merge: afbc9b8 a13126c Borys Jurgiel 2013-06-26 Merge pull request #678 from minorua/ogr_init_enc_chk OgrProvider: initial encoding setting check (fix #8167) Minoru Akagi 2013-06-26 OgrProvider: initial encoding setting check (fix #8167) Borys Jurgiel 2013-06-26 [Plugin Installer] partially revert fd2b221e65 . Still QGIS restart is needed after plugin update in some cases. Borys Jurgiel 2013-06-26 [Plugin Manager] better formatting of plugin details Borys Jurgiel 2013-06-26 [Plugin Installer] Fix #8080 Borys Jurgiel 2013-06-25 follow up 86bebab3ce Borys Jurgiel 2013-06-25 [Plugin Installer] Fix metadata description, add "about" tag, prefer remote plugin name. Borys Jurgiel 2013-06-25 follow up 86bebab3ce Borys Jurgiel 2013-06-25 [Plugin Installer] Fix #8111. Better repository error handling. Borys Jurgiel 2013-06-25 [Plugin Installer] Simplify plugin reloading Borys Jurgiel 2013-06-25 Follow up 24bbd485a Borys Jurgiel 2013-06-25 [Plugin Manager] Display proper plugin count Borys Jurgiel 2013-06-25 [Plugin Installer] Follow up 4ecf3ebd0 (use QgsNetworkManager in plugin installer) Juergen E. Fischer 2013-06-25 fix #8159 Juergen E. Fischer 2013-06-25 german translation update Juergen E. Fischer 2013-06-25 followup 55135d600 D'Hont René-Luc 2013-06-25 [QGIS-Server] WFS Filter : send empty data instead of XML error when no feature found Bug #8123 When a getFeature request has a FILTER parameter, and when no data corresponds, QGIS answer sometimes with : i No feature found error messages: . It would be better to send back an empty GML (Or GeoJSON) instead. rmgu 2013-06-25 Save GRASS r.report output in HTML D'Hont René-Luc 2013-06-25 [QGIS-Server] The parameter PROPERTYNAME does not filter attributes Bug #8155 In the OGC standard, the parameter PROPERTYNAME is ussed to filter attributes in the request getFeature. In version 1.8 this parameter works. Because of changes in the vector API, this parameter does not filter attribute. Werner Macho 2013-06-25 translation update: fi by Kari Matthias Kuhn 2013-06-23 QgsVectorLayerFeatureIterator: Don't worry about concurrent edits An iterator will always use the data from the edit buffer which was valid, at the time the iterator was created. Therefore, there are no more problems with randomly disappearing or changing features while iterating Matthias Kuhn 2013-06-23 const-correctness for QgsGeometry Hugo Mercier 2013-06-25 Add an update of overview on centering mode switch Werner Macho 2013-06-25 translation update id by Trias Werner Macho 2013-06-24 Fixing some Tooltips regarding to #8147 Merge: f1e2fce dab1e3c Werner Macho 2013-06-24 Merge pull request #675 from artfwo/master Russian translation update (half-way) Juergen E. Fischer 2013-06-24 more interface fixes (missing GUI_EXPORT and sip) Artem Popov 2013-06-24 Russian translation update. Juergen E. Fischer 2013-06-24 KeyboardControlHandler: remove unused parameter Juergen E. Fischer 2013-06-24 fix sip build errors Salvatore Larosa 2013-06-23 [fTools] fixes zoom to error in check geometry validity tool Juergen E. Fischer 2013-06-23 fix build error Juergen E. Fischer 2013-06-23 use QgsNetworkManager in plugin installer (fixes #8137) Juergen E. Fischer 2013-06-23 german translation update Juergen E. Fischer 2013-06-23 spelling fixes Juergen E. Fischer 2013-06-23 sip update Matthias Kuhn 2013-06-23 [memory provider] Don't crash on updateExtent and feature without geometry Matthias Kuhn 2013-06-23 update extent on delete feature and updategeometry Juergen E. Fischer 2013-06-23 fix build error Giuseppe Sucameli 2013-06-23 DBManager: more SIP API update (fix #8132) Juergen E. Fischer 2013-06-22 missed query builder help in c6a4bb86aa Juergen E. Fischer 2013-06-22 - add missing sip bindings - port widgets_tree.py to QtXml and update customization.xml (fixes #5752 and #8054) Borys Jurgiel 2013-06-22 [Plugin Manager] If no Python support detected, display an explanation why there is nothing to install. Fixes #8063. PL translation included. Merge: ff27ee8 e21ce1b Werner Macho 2013-06-22 Merge pull request #672 from qgis-jp/make_pull_req_from_ja update Translation GUI ja yoichigmf 2013-06-22 update Translation GUI ja Matthias Kuhn 2013-06-22 [spatialite] Fix compile error Matthias Kuhn 2013-06-22 [spatialite] Implement rewind() Juergen E. Fischer 2013-06-22 fix #8099: useful error message on table_info Juergen E. Fischer 2013-06-22 fix #8131 Merge: aa0a17b 8c92ac9 Werner Macho 2013-06-22 Merge pull request #671 from qgis-jp/make_pull_req_from_ja update GUI translation ja Merge: f8d6e32 bed65cb mhugent 2013-06-22 Merge pull request #670 from tqhien/master Fix #7927 : Add a warning message if trying to print a composition Minoru Akagi 2013-05-08 Georeferencer: a fix to support non-ASCII path yoichigmf 2013-06-22 update GUI translation ja Hien TRAN-QUANG 2013-06-22 Fix #7927 : Add a warning message if trying to print a composition as an image fails (Qt's QImage sanity check for memory overflow) Moved previous commit from core/qgscomposition to apps/qgscomposer as QGIS server uses qgscomposition. Juergen E. Fischer 2013-06-22 german translation update Juergen E. Fischer 2013-06-21 context_help/function_help: - remove en_US postfix - remove translated files (translation were moved to ts files earlier) - remove unused jQuery (python help doesn't use it anymore) - change expression label in QgsQueryBuilder and add context help (partly fixes #8129) Juergen E. Fischer 2013-06-21 vector providers: allow multiple iterators - testing required Merge: 9bbc647 6876540 Nathan Woodrow 2013-06-22 Merge branch 'iterator' Semi fix #7472. Semi fix #7862 Nathan Woodrow 2013-06-21 Close active iterators Nathan Woodrow 2013-06-20 Set filter on iterator: Nathan Woodrow 2013-06-20 Remove driver Nathan Woodrow 2013-06-19 Use a new ogr layer per iterator Juergen E. Fischer 2013-06-20 identation update and fix clang 3.3 warnings Matthias Kuhn 2013-06-20 [dbmanager] Fix python error Juergen E. Fischer 2013-06-20 fix crash in plugin installer Marco Hugentobler 2013-06-20 Fix WFS layer items in browser Borys Jurgiel 2013-06-20 [Plugin Manager] Follow up commit:b16cc46 Borys Jurgiel 2013-06-20 [Plugin Manager] Fixes #8122: Scroll bar in new plugin manager doesn't work properly Matthias Kuhn 2013-06-20 [ftools,gdaltools] Errors in Merge Shapefiles and Split vector layer * Fix #8120 * Fix #8119 Merge: e4b278d f7c556f Werner Macho 2013-06-19 Merge pull request #669 from qgis-jp/make_pull_req_from_ja update GUI translation ja yoichigmf 2013-06-20 update GUI translation ja Juergen E. Fischer 2013-06-19 add QgsFontUtils sip bindings and fix doxygen warnings Juergen E. Fischer 2013-06-19 german translation update Juergen E. Fischer 2013-06-19 - move ui defaults to ui_defaults.h - add scripts/mkuidefaults.py to create ui_defaults.h from current setting - default ui state with two toolbar rows (fixes #8117) - update plugin registry state of nsis installer Merge: 86695a9 8fd200e Werner Macho 2013-06-19 Merge pull request #668 from asiersarasua/master Basque translation update asiersarasua 2013-06-19 Basque translation update Werner Macho 2013-06-19 small changes to topology checker GUI Matthias Kuhn 2013-06-19 [gdaltools] Proximity(raster distance) error (Fix #8115) Matthias Kuhn 2013-06-19 [gdaltools] DEM(Terrain Models) tool error (Fix #8116) Matthias Kuhn 2013-06-19 Merge feature attributes: Return NULL if unable to calculate Matthias Kuhn 2013-06-19 "Merge selected features" leads to data loss (Fix #6902) Merge: 419d8ee 5bcb0e1 Werner Macho 2013-06-19 Merge pull request #667 from yjacolin/gdalToolsdoPolygonBug Update doPolygonize.py Jacolin 2013-06-19 Update doPolygonize.py add missing '('. Matthias Kuhn 2013-06-19 [ftools] Fix basic statistics (Fix #8105) Matthias Kuhn 2013-06-19 [ftools] Fix Line Intersection (Fix #8114) Matthias Kuhn 2013-06-19 Fix wrong python None type reference counting Hugo Mercier 2013-06-19 Fix overview autocentering: always center, not only when the overview is not visible. Work funded by Tuscany Region - SITA. Contract "Support to the use of GFOSS (Geographic Free and Open Source Software) Desktop tools" (CIG Z3B06FA6D7). Werner Macho 2013-06-19 translation update: es by Carlos Matthias Kuhn 2013-06-19 [vectorlayer] Update map extent when feature added / geom changed Matthias Kuhn 2013-06-19 [ftools] Fix distance matrix (Fix #8103) Matthias Kuhn 2013-06-19 [ftools] Several fixes Fix #8107 Mean coordinates Fix #8105 Basic statistics Fix #8104 Unique values Borys Jurgiel 2013-06-18 Translation update: pl Chris Crook 2013-06-19 Fixing delimited text test cases for SIP API change Marco Hugentobler 2013-06-18 Mark project dirty in case of composer changes Werner Macho 2013-06-18 Adjusting Tip once more and fixing a bug with http link Borys Jurgiel 2013-06-18 [Plugin Installer] Fix urls excluded from proxy (#8092) Werner Macho 2013-06-18 Changing tip according to the new Plugins Manager, thanks to Richard for pointing this out Chris Crook 2013-06-18 Added SIP version test to delimited text test script Werner Macho 2013-06-18 translation update sv by Victor Merge: bdd61d5 5f17250 vinayan 2013-06-17 Merge pull request #664 from vinayan/topofix [Fix #8095] - fix topology error markers vinayan 2013-06-18 fix topology error markers Hugo Mercier 2013-06-17 Add SIP and Python unit test for overview autocentering. Work funded by Tuscany Region - SITA. Contract "Support to the use of GFOSS (Geographic Free and Open Source Software) Desktop tools" (CIG Z3B06FA6D7). Hugo Mercier 2013-06-17 Add unit test for autocentering of overview Work funded by Tuscany Region - SITA. Contract "Support to the use of GFOSS (Geographic Free and Open Source Software) Desktop tools" (CIG Z3B06FA6D7). Hugo Mercier 2013-06-17 Add autocentering of overview Work funded by Tuscany Region - SITA. Contract "Support to the use of GFOSS (Geographic Free and Open Source Software) Desktop tools" (CIG Z3B06FA6D7). Matthias Kuhn 2013-06-17 Only cleanup python on exit if loaded Fix #8085 Matthias Kuhn 2013-06-17 [gdaltools] SIP API update Matthias Kuhn 2013-06-17 [gdaltools] More SIP API updates Matthias Kuhn 2013-06-17 [gdaltools] More SIP API update Salvatore Larosa 2013-06-17 Fixes #8061 Salvatore Larosa 2013-06-14 [pyqgis-console] small update to help Juergen E. Fischer 2013-06-16 german translation update Werner Macho 2013-06-16 pre translation update 10 days to String Freeze Juergen E. Fischer 2013-06-16 fix #8082 Juergen E. Fischer 2013-06-16 fix #8083 (MultiSurfaces not supported) Merge: e8f7c13 9b242c2 Werner Macho 2013-06-16 Merge pull request #663 from Jean-Roc/mywork update fr ui Merge: 449c2a2 2c33403 vinayan 2013-06-16 Merge pull request #634 from vinayan/offlineFixWin Offline Editing Plugin - Windows Fix Matthias Kuhn 2013-06-16 Include joined fields when merging QgsFields Matthias Kuhn 2013-06-16 [attrtable] Fix button checked state The wrong button was checked, when the view mode was not changed with a button click but another event. Matthias Kuhn 2013-06-16 Adjust data type Nathan Woodrow 2013-06-16 Change build path.txt to be more unique Matthias Kuhn 2013-06-16 [ftools] More SIP API updates Matthias Kuhn 2013-06-16 attribute editor: return NULL QVariant instead of invalid QVariant Jean-Roc Morreale 2013-06-16 correct a typo Jean-Roc Morreale 2013-06-16 update french translation Matthias Kuhn 2013-06-16 [Gdaltools] SIP API update (Fix #8074) Matthias Kuhn 2013-06-16 [ftools] Fix "Polygon from layer extent" (#8074) Larry Shaffer 2013-06-15 Save/restore window geometry for change label properties dialog Larry Shaffer 2013-06-10 Fix for #8003, font not written to table when using change label properties tool The following have been updated/added to match layer's new labeling gui: - Comboboxes for font family and style - Buttons for underline, strikeout, bold and italic Juergen E. Fischer 2013-06-15 replace foo.replace( QRegExp(regexp), bar) with re.sub(regexp,bar,foo) (fixes #8066) Juergen E. Fischer 2013-06-15 german translation update Juergen E. Fischer 2013-06-15 fix translation strings (fixes #8057) Merge: fb15725 3bcf890 mhugent 2013-06-15 Merge pull request #661 from leyan/custom_CRS Update CRS cache when deleting a custom CRS Juergen E. Fischer 2013-06-15 german translation update Matthias Kuhn 2013-06-15 Add documentation for date format in editor widget configuration Matthias Kuhn 2013-06-15 Fix some memory management issues aka reduce noise in valgrind memory analyzer Matthias Kuhn 2013-06-15 [ftools] Further SIP API updates Nathan Woodrow 2013-06-15 Fix python console for Python 2.6 Matthias Kuhn 2013-06-15 Fix memory leak in ogr provider Matthias Kuhn 2013-06-15 Fix memory leak in QgsFeature sip api Matthias Kuhn 2013-06-15 [ftools] Fix "Join attributes by location" Chris Crook 2013-06-14 Improved implementation Chris Crook 2013-06-14 Som fTools fixes for SIP API updates Merge: fec833f 964d7b4 Matthias Kuhn 2013-06-15 Merge pull request #660 from minorua/grad_it fix a iteration Leyan 2013-06-15 Update CRS cache when deleting a custom CRS Minoru Akagi 2013-06-15 fix a iteration Nathan Woodrow 2013-06-15 Fix crash when creating/loading projects. Fixes #7931 Merge: 9f3a879 abcc8b1 Nathan Woodrow 2013-06-14 Merge pull request #659 from slarosa/fix_8065 [DB Manager] Fixes #8065 Juergen E. Fischer 2013-06-15 also handle ringless polygons with GEOS <3.3 (follows 6370153e) Salvatore Larosa 2013-06-15 Fixes #8065 Etienne Tourigny 2013-06-14 fix GdalTools contour Etienne Tourigny 2013-06-14 fix GdalTools assign and extract projection Etienne Tourigny 2013-06-14 fix GdalTools warp Etienne Tourigny 2013-06-14 fix gdaltools merge, tileindex and info Marco Hugentobler 2013-06-14 Prevent crash in case of invalid geometries Juergen E. Fischer 2013-06-14 add a special value to update threshold spinbox (follows e09683b1) Etienne Tourigny 2013-06-14 replace QgsRasterLayer::buildSupportedRasterFileFilter() with QgsProviderRegistry::instance()->fileRasterFilters() Werner Macho 2013-06-14 translation update: adding new finnish translator and language update Juergen E. Fischer 2013-06-11 some translation string fixes and german translation update Juergen E. Fischer 2013-06-14 run stacktrace to c++filt automatically, when available Marco Hugentobler 2013-06-14 --amend Marco Hugentobler 2013-06-14 Update also crs transform cache if a crs has been updated Leyan 2013-06-14 add an update CRS cache function, still not effective though Borys Jurgiel 2013-06-14 [Plugin Manager] Don't crash on invalid values from QSettings Borys Jurgiel 2013-06-14 fix #8060 (new SIP API) Larry Shaffer 2013-06-13 Fix for #8052, QGIS 2.0 does not respect labels' scale-based visibility in projects from previous version - Also fix long standing unreported bug where scales closer than 1:1, e.g. 5:1, could not be set Merge: e09683b aeffe2a Werner Macho 2013-06-13 Merge pull request #654 from imincik/slovak Slovak translation update. Ivan Mincik 2013-06-13 Slovak translation update. Radim Blazek 2013-06-13 set min updateThreshold to 1000 nyalldawson 2013-06-12 Also disable color buttons which don't apply for numeric scale bars Make numeric scale bars respect font color and alignment settings (fix #7830) nyalldawson 2013-06-12 When scale bar is numeric disable controls which don't apply Don't change scale bar box size automatically when style is numeric Remove duplicate call to adjustBoxSize when scale bar font changes Radim Blazek 2013-06-13 dont translate names in customization tree, fixes #8039 D'Hont René-Luc 2013-06-03 [Feature][QGIS-Server] Specifying url for QgsComposerHtml in GetPRint Request The idea is to add the capability to specify an URL to a QgsComposerHtml element in the GetPrint request. This will give the ability to get PDF with content base on a web service. Borys Jurgiel 2013-06-12 [Plugin Manager] Plugin installer fixes Radim Blazek 2013-06-12 customization update Radim Blazek 2013-06-12 GRASS feature id fix, tables selection id fix, fixes #6451 Matthias Kuhn 2013-06-12 Don't crash if embedded group cannot be loaded (Fix #7872) Radim Blazek 2013-06-12 Updated towgs84 parameters of geographic JTSK CRS, the towgs84 values were calculated for area of Czech and Slovak Republic as it is described here: http://grass.fsv.cvut.cz/gwiki/%C4%8Ceskoslovensk%C3%BD_transforma%C4%8Dn%C3%AD_kl%C3%AD%C4%8D UPDATE tbl_srs set parameters = '+proj=longlat +ellps=bessel +towgs84=542.5,89.2,456.9,5.517,2.275,5.516,6.96 +no_defs' WHERE auth_id = '4156'; UPDATE tbl_srs set parameters = '+proj=longlat +ellps=bessel +towgs84=542.5,89.2,456.9,5.517,2.275,5.516,6.96 +pm=ferro +no_defs' WHERE auth_id = '4818'; Radim Blazek 2013-06-12 Updated towgs84 parameters of JTSK CRS, the towgs84 values were calculated for area of Czech and Slovak Republic as it is described here: http://grass.fsv.cvut.cz/gwiki/%C4%8Ceskoslovensk%C3%BD_transforma%C4%8Dn%C3%AD_kl%C3%AD%C4%8D UPDATE tbl_srs set parameters = '+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=542.5,89.2,456.9,5.517,2.275,5.516,6.96 +pm=greenwich +units=m +no_defs' WHERE auth_id = '5513'; UPDATE tbl_srs set parameters = '+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=542.5,89.2,456.9,5.517,2.275,5.516,6.96 +pm=greenwich +units=m +no_defs' WHERE auth_id = '5514'; UPDATE tbl_srs set parameters = '+proj=krovak +lat_0=49.5 +lon_0=42.5 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=542.5,89.2,456.9,5.517,2.275,5.516,6.96 +pm=ferro +units=m +no_defs' WHERE auth_id = '5221'; UPDATE tbl_srs set parameters = '+proj=krovak +lat_0=49.5 +lon_0=42.5 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=542.5,89.2,456.9,5.517,2.275,5.516,6.96 +pm=ferro +units=m +no_defs' WHERE auth_id = '2065'; UPDATE tbl_srs set parameters = '+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=542.5,89.2,456.9,5.517,2.275,5.516,6.96 +pm=greenwich +units=m +no_defs' WHERE auth_id = '102067'; Radim Blazek 2013-06-12 raster DrawingStyle to QgsRaster to avoid circular header include Radim Blazek 2013-06-12 customisation script moved, removed & from customisation menu items labels Nathan Woodrow 2013-06-12 Don't return null on failed metadata load Merge: a602112 3b4dfd7 Salvatore Larosa 2013-06-11 Merge pull request #619 from slarosa/generate_pap [FEATURE] Module to generate prepared APIs file for call tips and auto-completion in Python Console Borys Jurgiel 2013-06-12 [Plugin Manager] installer fix Nathan Woodrow 2013-06-12 Fix build error Nathan Woodrow 2013-06-12 Fix python indentation Nathan Woodrow 2013-06-12 Don't patch QPyNullVariant if it doesn't exist Nathan Woodrow 2013-06-12 Fix #8040. Build error with sip Victor Olaya 2013-06-12 [sextante] improved modeler appearance Borys Jurgiel 2013-06-11 [Plugin Manager] Fix the recent commit Borys Jurgiel 2013-06-11 [Plugin Manager] Translateable name and description in metadata.txt. Borys Jurgiel 2013-06-11 [Plugin Manager] Prevent from removing the official repository Borys Jurgiel 2013-06-11 [Plugin manager] Minor GUI tweaks Borys Jurgiel 2013-06-11 Translation update: pl Borys Jurgiel 2013-06-11 [Plugin Manage] Include tab title pages to i18n. Don't clutter the resources dir. Merge: 031550a 84eb6f8 Borys Jurgiel 2013-06-11 Merge pull request #652 from jetuk/pyplugin_installer-QNAM pyplugin_installer moved to QNetworkAccessManager from QHttp James Tomlinson 2013-06-11 pyplugin_installer moved to QNetworkAccessManager from QHttp Werner Macho 2013-06-11 translation update by Calvin Salvatore Larosa 2013-06-11 [pyqgis-console] improving to auto closing bracket Salvatore Larosa 2013-06-11 [pyqgis-console] removes console/help folder: it is no longer necessary, now it is into context help Salvatore Larosa 2013-06-11 [pyqgis-console] another updating to new SIP API Merge: 6381d62 ba4a3cc Nathan Woodrow 2013-06-11 Merge pull request #625 from vinayan/projcrash [Fix #7964] Ftools-Sum Line length - Fix progress bar Matthias Kuhn 2013-06-10 Use python None object for NULL attributes Merge: 8392c93 8cd8969 Giuseppe Sucameli 2013-06-11 Merge pull request #651 from slarosa/fix_dbmanager [DB Manager] fix for PostGIS Raster Layer Salvatore Larosa 2013-06-11 [DB Manager] fix for PostGIS Raster Layer Salvatore Larosa 2013-06-11 [FEATURE] [pyqgis-console] Module to generate prepared APIs for calltips and auto-completion Nathan Woodrow 2013-06-11 Monkey patch __nonzero__ onto QPyNullVariant for easier null check. Who doesn't love monkeys :) D'Hont René-Luc 2013-06-08 [FEATURE] Add DataUrl to layer's metadata Like keyword list, attribution and metadata url, this information is used by QGIS Server in WMS GetCapabilities and GetContext Request. The user can add an url where he can find information about the layer. Juergen E. Fischer 2013-06-11 also update networkanalysis.sip (following 61e101dd4) Juergen E. Fischer 2013-06-11 debian packaging: replace %Module directive in header for older sip versions in squeeze and lucid (following 61e101dd4) Nathan Woodrow 2013-06-11 Fix #8034. Sextante SIP update Nathan Woodrow 2013-06-11 Fix #8035. Sip update for plugin installer Nathan Woodrow 2013-06-11 Fix Python init function call Borys Jurgiel 2013-06-10 [Plugin Manager] Minor gui tweaks Borys Jurgiel 2013-06-10 [Plugin Manager] Make appropriate methods const Merge: 499db4e 6558b53 Werner Macho 2013-06-10 Merge pull request #650 from imincik/slovak Slovak translation update. Ivan Mincik 2013-06-05 Slovak translation update. Radim Blazek 2013-06-10 composer legend spacing corrected, fixes #7994 Borys Jurgiel 2013-06-10 [Plugin Manager] Maximum major, minor and bugfix version is 99.99.99. Be consistent with this constraint. Merge: 430f0fc a857434 Werner Macho 2013-06-09 Merge pull request #645 from qgis-jp/make_pull_req_from_ja update GUI translation JA woked with Minoru Akagi yoichigmf 2013-06-10 update GUI translation JA woked with Minoru Akagi Larry Shaffer 2013-06-09 Add user notification when defined labeling font is not found on system, then substituted - [API] add signal to QgsVectorLayer that is emitted when its labeling font is not found - Message bar notification on first rendering of layer offers link to open layer's labeling dialog - Add 'font not found' notification to labeling dialog - Labeling dialog defaults to 'Text style' section when font is not found, to show notice - Substituted font is not saved with project, unless user applies changes. - Change labeling gui font selector dialog to font family combobox (since only family is being chosen) Larry Shaffer 2013-06-09 Update label gui and rendering with QgsFontUtils functions Larry Shaffer 2013-06-09 Add QgsFontUtils class to handle system font queries and style changes Larry Shaffer 2013-06-09 Check only what's necessary to see if a layer will be labeled - Don't load all settings from QgsPalLayerSettings::readFromLayer Larry Shaffer 2013-06-09 Followup to b383c69. Keep labeling dialog from calling init() twice from vector props dialog Borys Jurgiel 2013-06-10 Update core plugins qgisMinimumVersion to 2.0 Borys Jurgiel 2013-06-10 [Plugin Manager] Fix for compatibility check in QgsPluginInstaller and QgsPluginRegistry Nathan Woodrow 2013-06-09 Allow keyword args in Python classes. Fix sip headers Nathan Woodrow 2013-06-03 Add __getattr__ and __setattr__ to QgsFeature Borys Jurgiel 2013-06-09 [Plugin Manager] Temporarily hardcode QGIS_VERSION=2.0.0 in the QgsPluginInstaller and QgsPluginRegistry to allow proper version comparision until it's globally set before the release. Borys Jurgiel 2013-06-09 Check qgsMaximumVersion also when loading plugin to QgsPluginRegistry Merge: dbace48 ce9ed15 Borys Jurgiel 2013-06-09 Merge pull request #641 from rduivenvoorde/pluginmantxt [Plugin Manager] texts and context help text for pluginmanager Werner Macho 2013-06-09 translation update: zh_CN by Calvin Werner Macho 2013-06-09 translation update: ro by Bogdan Pacurar Richard Duivenvoorde 2013-06-09 delete unused resource files if I understand jef correctly, these files are all not used anymore (plz correct me if I'm wrong). The build and scripts incorporate the en_US resource files in the corresponding i18n/qgis_**.ts files (by creating cpp from it). Richard Duivenvoorde 2013-06-09 purge olde PluginInstallerDialog context help there will be a new QgsPluginManager help file Richard Duivenvoorde 2013-06-09 purge old doc/plugins directory Juergen E. Fischer 2013-06-09 QGis => QGIS updates Richard Duivenvoorde 2013-06-09 texts and context help text for pluginmanager Juergen E. Fischer 2013-06-09 more QuantumGIS => QGIS updates Juergen E. Fischer 2013-06-09 german translation update Juergen E. Fischer 2013-06-09 dbmanager: add i18n Borys Jurgiel 2013-06-09 Set Qsettings' ApplicationName to QGIS2 everywhere in src Borys Jurgiel 2013-06-09 [Plugin Manager] Forgotten CMake entry. Following c490688106941be91e5 Borys Jurgiel 2013-06-09 [PluginManager] Move title pages for tabs to the resources. Will be included to translations when the contents is ready. Victor Olaya 2013-06-09 [sextante] removed debug code Victor Olaya 2013-06-09 [sextante] more work on updating to new SIP API Borys Jurgiel 2013-06-09 [PluginManager] Filter by repository under rightclick on the repo list (only active if > 1 repo configured) Juergen E. Fischer 2013-06-09 yet another german translation update Juergen E. Fischer 2013-06-09 allow utf8 in metadata.txt Borys Jurgiel 2013-06-09 [Plugon Manager] Fix compile error (follows abef7a5fe4d) Borys Jurgiel 2013-06-09 [Plugin Installer] Better uninstall obsolete user plugins masking more recent versions installed as core Borys Jurgiel 2013-06-08 [PluginManager] Code cleanup: keep one class per file also in Python Salvatore Larosa 2013-06-08 [pyqgis-console] fixes for the new SIP APIs Borys Jurgiel 2013-06-08 [Plugin Manager] Minor fixes and gui tweaks Juergen E. Fischer 2013-06-08 german translation update Merge: 02c29c0 a939ab1 Nathan Woodrow 2013-06-08 Merge SIP v2 update Nathan Woodrow 2013-06-08 Sextante SIP update Nathan Woodrow 2013-06-08 Plugin installer sip update Nathan Woodrow 2013-06-08 Update plugin installer to new API Merge: 014d872 02c29c0 Nathan Woodrow 2013-06-08 Merge master Borys Jurgiel 2013-06-08 [Plugin Manager] Better sorting by status, minor gui fixes and improvements Juergen E. Fischer 2013-06-08 german translation update Juergen E. Fischer 2013-06-08 postgresql & oracle provider fixes: - start with an empty line edit when entering srids (fixes #8016) - oracle provider: order primary key candidates in views by column id (fixes #8018) - disable non-selectable entries and provide tooltips on why they are disabled Victor Olaya 2013-06-08 [sextante] fixed issue with multiple raster input in gdal merge Radim Blazek 2013-06-07 increased raster DEM maximum exaggeration limit, fixes #7599 Radim Blazek 2013-06-07 reset brush before raster layer draw, fixes #7766 D'Hont René-Luc 2013-06-07 Update QGIS Server OWS Capabilities Has OWS capabilities and context validated for metadata Radim Blazek 2013-06-07 Force GRASS shell font by setStyleSheet, hopefully fixes #7340; added black on white scheme Marco Hugentobler 2013-06-07 Keep zoom level constant if zooming to one selected point Radim Blazek 2013-06-07 placeholderText requires Qt 4.7 Radim Blazek 2013-06-07 ogr debug fix Matthias Kuhn 2013-06-07 [diagrams] Fix scaling and positioning of histograms Matthias Kuhn 2013-06-07 Fix crash when selecting invalid CRS in new spatialite dialog Nathan Woodrow 2013-06-07 Fix canvas refresh on layer load Matthias Kuhn 2013-06-07 [diagrams] Diagram fixes and UI improvements (Fix #7960) * Use correct color for pie chart if only one value is >0 * Show default text in scaling text box Borys Jurgiel 2013-06-06 [Plugin Manager] Better cope with broken plugins Juergen E. Fischer 2013-06-06 translation update: - update_ts_files.sh: add -f flag ('fast' mode; only update specified languages and don't run tsstat.pl) - tsstat.pl: cut off latin1 & cyrillic suffix and use only one serbian flag - unify flag image permission - german translation update Juergen E. Fischer 2013-06-06 fix activateDeactivateLayerRelatedActions (fixes #8005) Victor Olaya 2013-06-06 [sextante] fixed delete duplicated geoms algorithm Victor Olaya 2013-06-06 [sextante] updated link to sextante chapter in error messages Victor Olaya 2013-06-06 [sextante] fixed idle progress bar in execution dialog Victor Olaya 2013-06-06 [sextante]added checking for R installation Larry Shaffer 2013-05-26 Revert target hyphen change (update ADD_SIP_PYTHON_MODULE macro first) Juergen E. Fischer 2013-06-06 german translation update Juergen E. Fischer 2013-06-06 include python parts of plugin installer in ts files and a translation string fix Victor Olaya 2013-06-06 [sextante] improvements in batch processing interface Victor Olaya 2013-06-06 [sextante] fixed issue with blank spaces in filenames in OTB Merge: c8ff386 4d72f82 Matthias Kuhn 2013-06-06 Merge pull request #638 from 3nids/typo typo Denis Rouzaud 2013-06-06 typo Radim Blazek 2013-06-06 ogr virtual layers mix single and multi types in sublayers, fixed feature count, fixes #8001 Matthias Kuhn 2013-06-06 Don't pile derived attributes (Fix #7850) Werner Macho 2013-06-06 translation update: farsi Merge: 9a7776a e49783d Werner Macho 2013-06-05 Merge pull request #637 from qgis-jp/for_pull_from_ja update GUI translation ja with Minoru Akagi Nyall Dawson 2013-06-06 Fix #7973 Move print as raster and resolution spin box to "paper and quality" group box, don't disable resolution spin box when print as raster is unchecked. yoichigmf 2013-06-06 update GUI translation ja with Minoru Akagi Nathan Woodrow 2013-06-06 Only refresh canvas when needed on drop event Merge: c1fb1bb 74b18e5 Nathan Woodrow 2013-06-05 Merge pull request #636 from vinayan/zoomlayerextent [Fix #7333] - Zoom to layer does not work anymore for newly created shapefiles Juergen E. Fischer 2013-06-06 german translation update Juergen E. Fischer 2013-06-06 more edit widget fixes: - handle editable state in drag&drop forms like in automatically generated forms - allow to set minimum size of webview "edit" widgets. Borys Jurgiel 2013-06-05 Enable SEXTANTE plugin by default Borys Jurgiel 2013-06-05 Allow "Experimental" status also for c++ plugins. Mark Globe plugin experimental. Marco Hugentobler 2013-06-05 Clear cached geometries after commit / rollback. Fixes ticket #7950 Juergen E. Fischer 2013-06-05 german translation update Juergen E. Fischer 2013-06-05 get translation stats right by temporary updating all ts files Juergen E. Fischer 2013-06-05 indentation update vinayan 2013-06-05 fix zoom issue for new shapefiles Merge: 0f8de7d 25c76e6 Werner Macho 2013-06-05 Merge pull request #635 from imincik/slovak Slovak translation update. Ivan Mincik 2013-06-05 Slovak translation update. Nathan Woodrow 2013-06-05 Use qRound. Rename menu item Borys Jurgiel 2013-05-27 [Plugin Manager] remove the old plugin_installer plugin Borys Jurgiel 2013-05-27 Code cleanups Borys Jurgiel 2013-05-27 More icons from Robert Larry Shaffer 2013-05-25 Add ability to run plugin installer from build directory - Update targets to new coding standard of using hyphens - Add console and plugin installer to WITH_PY_COMPILE target Borys Jurgiel 2013-05-19 New Plugin Manager Matthias Kuhn 2013-06-05 When calling setFields, automatically initalize attributes That what you want most of the time when creating a new feature within a plugin. Therefore defaults to true when used from python, but to false when used from C++ vinayan 2013-06-05 Offline Editing Plugin - Windows Fix Nathan Woodrow 2013-06-05 Enable touch for the map canvas on windows Merge: 068da60 c2a458e Nathan Woodrow 2013-06-04 Merge pull request #631 from imincik/cmdout Cleanup of 'qgis --help' output. Etienne Tourigny 2013-06-04 GdalTools overview : update for qgis and sip api, remove old widgets Etienne Tourigny 2013-06-04 fix buildVRT dialog Etienne Tourigny 2013-06-04 fix buildSupportedRasterFileFilter for sip api v2 Ivan Mincik 2013-06-04 Cleanup of 'qgis --help' output. Nyall Dawson 2013-06-04 Don't append "Missing group" to non-standard expression groups, so that python plugins which provide expressions can create their own groups Werner Macho 2013-06-04 translation update: eu by asier Larry Shaffer 2013-06-04 Fix for #7993 again, fields are listed twice in labeling data defined menu - Reverts 0192e37 - Move code from init() to ctor for fix and to ensure connections are not duplicated - New code also fixes previously unknown issue when loading .qml style Juergen E. Fischer 2013-06-04 optionally label attribute editor widgets on top Juergen E. Fischer 2013-06-04 WebView attribute editor fixes: - allow browsing in readonly mode - add option to open page in default browser - add tooltips to editor push buttons Juergen E. Fischer 2013-06-04 fix #7828 Merge: f9a0a1d b7c07de mhugent 2013-06-04 Merge pull request #632 from BioEcoForests/master Always delete WFS network replies, fixes #7588 Laurent Defert 2013-06-04 Always delete WFS network replies, fixes #7588 Radim Blazek 2013-06-04 fixed rashes in atlas calling vector methods for rasters, fixes #7963 Radim Blazek 2013-06-04 OGR layers with unknown geometry type containing single geometry type fix, fixes #7995 Merge: f012065 81a960b Werner Macho 2013-06-03 Merge pull request #630 from SrNetoChan/master pt_PT translations by João Gaspar Giuseppe Sucameli 2013-06-04 DBManager: remove empty line from sql editor Giuseppe Sucameli 2013-06-04 DBManager: updated to new SIP API Nyall Dawson 2013-06-04 Fix #4419, improve random color ramp appearance and generate colors with better chance of uniqueness Nyall Dawson 2013-06-04 Fix tests after changing default map overview style Nathan Woodrow 2013-06-04 Fix projection selection with new files Etienne Tourigny 2013-06-03 fixes for gdaltools info and clipper - raster file dialog filters needs fixing Larry Shaffer 2013-06-03 Update main options dialog with QgsOptionsDialogBase inheritance - Moved current tab setting to /Windows/Options/tab, as used in QgsOptionsDialogBase - Caveat: old setting /Windows/Options/row is not honored on first launch after update Nathan Woodrow 2013-06-04 Patch from Matthias for gdal tools Nyall Dawson 2013-06-04 Fix #7705, remove alpha transparency from default color for map overview frames Larry Shaffer 2013-06-03 Fix #7993, fields are listed twice in labeling data defined menu Merge: 75cbdf6 e46795a Nathan Woodrow 2013-06-03 Merge pull request #629 from volaya/sipapi [sextante] updated to new sip api Victor Olaya 2013-06-03 [sextante] updated to new sip api Werner Macho 2013-06-04 update Galician language strings on request SrNetoChan 2013-06-03 pt_PT translation by João Gaspar D'Hont René-Luc 2013-06-03 QGIS Server - GetPrint request does not respect text boxes size and position if dynamic content passed This commit brings some correction for the issue #7894 Firstly the use of adjustSizeToText has been inactivate Secondly if a composerLabel is not in the parameterMap the default value is conserved. Larry Shaffer 2013-06-03 Fix #7969, 'layer source' in vector properties is empty - Revert part of 6c51965, where setting the line edit field was (accidentally?) removed Merge: 919aa04 6f2ddbc Werner Macho 2013-06-03 Merge pull request #626 from imincik/slovak First batch of Slovak translation for version 2.0. Merge: 8201335 aca38a8 Werner Macho 2013-06-03 Merge pull request #628 from qgis-jp/make_pull_req_from_ja update translation JA Salvatore Larosa 2013-06-03 [pyqgis-console] update help - shows help at the first launch of the console Juergen E. Fischer 2013-06-03 fix #7353 in case the snapping dialog is not docked yoichigmf 2013-06-04 update translation JA Ivan Mincik 2013-06-03 Slovak ts file update. Ivan Mincik 2013-06-03 First batch of Slovak translation for version 2.0. - translation - merge with 4b76600 (adding function_help, context_help) Merge: 21a884b d4945db Ivan Mincik 2013-06-03 Merge branch 'master' into slovak Radim Blazek 2013-06-03 flatten geometries in virtual ogr sublayers, i.e. mix 2D and 25D Alexander Bruy 2013-06-03 update MapServer export plugin to SIP changes Alexander Bruy 2013-06-03 minor update in sextante taudem provider Alexander Bruy 2013-06-03 more SIP updates for fTools Juergen E. Fischer 2013-06-03 fix #7982 Marco Hugentobler 2013-06-03 Log WFS errors Juergen E. Fischer 2013-06-03 followup 16ba01f7 for oracle & mssql Juergen E. Fischer 2013-06-02 indentation update Juergen E. Fischer 2013-06-02 fix #7353 Juergen E. Fischer 2013-06-02 else cascade cleanups Juergen E. Fischer 2013-06-02 drop unused QgsMapToolAddVertex, QgsMapToolDeleteVertex and QgsMapToolMoveVertex Juergen E. Fischer 2013-06-02 rename context help from QgsIdentifyResults to QgsIdentifyResultsDialog Larry Shaffer 2013-06-02 Save/restore header state for bookmarks view Larry Shaffer 2013-06-02 Fix #7723, bookmark names not saved - Allow bookmarks database table to be edited - Store project file name with new bookmark, if custom project title not set D'Hont René-Luc 2013-06-02 QGIS-Server doesn't publish vector layer without geometry in WMS Because vector layer without geometry hasn't rendered by QGIS, the QGIS-Server doesn't publish these layer. Juergen E. Fischer 2013-05-31 debian packaging update Juergen E. Fischer 2013-06-02 fix doxygen warning Larry Shaffer 2013-06-01 Fix for #7458, project crashes when loaded from command line - Image selection previews now load only on first expansion of parent group box - Note: this is an OK fix for 2.0 release. One better solution noted here: http://hub.qgis.org/issues/7458#note-12 Chris Crook 2013-06-02 Fix to potential unterminated loop if a delimited text file is deleted Another try at fixing test cases with file watcher, don't work on some platforms. vinayan 2013-06-01 Ftools-Sum Line length - Fix progress bar Chris Crook 2013-06-01 Removing a couple more delimited text file test case failures Salvatore Larosa 2013-05-31 [pyqgis-console] shows info messages also for temporary scripts Radim Blazek 2013-05-31 OGR provider - virtual sublayers for each geometry type in multi geometry layers, fixes #7895 Sandro Santilli 2013-05-31 Further reduction of instance copies Sandro Santilli 2013-05-31 More const correctness and pass-by-ref Sandro Santilli 2013-05-30 Fix width of line decoration for selected features (ticket #7410) Radim Blazek 2013-05-31 JTSK EPSG codes update, added new codes, updated existing. INSERT INTO tbl_srs VALUES (NULL,'S-JTSK (Greenwich) / Krovak','krovak','bessel','+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +pm=greenwich +units=m +no_defs',5513,'EPSG','5513',0,0); INSERT INTO tbl_srs VALUES (NULL,'S-JTSK (Greenwich) / Krovak East North','krovak','bessel','+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +pm=greenwich +units=m +no_defs',5514,'EPSG','5514',0,0); INSERT INTO tbl_srs VALUES (NULL,'S-JTSK (Ferro) / Krovak East North','krovak','bessel','+proj=krovak +lat_0=49.5 +lon_0=42.5 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +pm=ferro +units=m +no_defs',5221,'EPSG','5221',0,0); -- Add alpha to 2065 UPDATE tbl_srs set parameters = '+proj=krovak +lat_0=49.5 +lon_0=42.5 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +pm=ferro +units=m +no_defs' WHERE auth_id = '2065'; -- Add towgs84 to 102067 UPDATE tbl_srs set description = 'S-JTSK (Greenwich) / Krovak East North', parameters = '+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 +alpha=30.28813972222222 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +pm=greenwich +units=m +no_defs', deprecated = 1 WHERE auth_id = '102067'; Alexander Bruy 2013-05-31 more api updates in fTools (still incomplete) D'Hont René-Luc 2013-05-31 Add GetContext request to QGIS WMS Server This non standard request retruns the QGIS project as an OWSContext document version 0.3.1. This request gives more interoperability to QGIS Server that can be directly used in client supporting OWSContext as config file. This function has been funded by Ifremer. Merge: 32da891 c1797fc mhugent 2013-05-31 Merge pull request #623 from biolds/master Fix crash when authentication fails. Fix #7913 Radim Blazek 2013-05-31 GRASS shell cursor shift fix better Nathan Woodrow 2013-05-31 Fix crash in sip using QString Merge: a2fc3b4 3acb48d Werner Macho 2013-05-30 Merge pull request #624 from rduivenvoorde/nl nl update Richard Duivenvoorde 2013-05-30 nl update Radim Blazek 2013-05-30 set correctly raster block nodata if layer extent or resolution is smaller than requested, fixes #7209 Marco Hugentobler 2013-05-30 Keep selection if exchanging ids for added features, safety check for 0 geometry in splitFeatures method Juergen E. Fischer 2013-05-30 more Quantum GIS => QGIS updates Radim Blazek 2013-05-30 GRASS - set correctly qtermwidget font, fixes #7340 D'Hont René-Luc 2013-05-30 Advertised WFS URL Like WMS services, users can configure an advertised URL for WFS services. If no advertised WFS URL is specified, QGIS-Server looked at the advertised WMS URL. Alexander Bruy 2013-05-30 start update fTools to new SIP api Larry Shaffer 2013-05-30 Add missing signal/slot connection, for limiting labels drawn Laurent Defert 2013-05-29 Fix crash when authentication fails. Fix #7913 - Fix pointer dereferencing - Remove call to uninitialized button As stated by Valgrind: ==13851== Use of uninitialised value of size 8 ==13851== at 0x9961780: QWidget::setEnabled(bool) (in /usr/lib/x86_64-linux-gnu/libQtGui.so.4.8.2) ==13851== by 0x27600FB1: QgsWFSSourceSelect::capabilitiesReplyFinished() (qgswfssourceselect.cpp:211) ==13851== by 0x2760B78F: QgsWFSSourceSelect::qt_static_metacall(QObject*, QMetaObject::Call, int, void**) (moc_qgswfssourceselect.cxx:156) ==13851== by 0x93F554E: QMetaObject::activate(QObject*, QMetaObject const*, int, void**) (in /usr/lib/x86_64-linux-gnu/libQtCore.so.4.8.2) ==13851== by 0x2760A458: QgsWFSCapabilities::gotCapabilities() (moc_qgswfscapabilities.cxx:103) ==13851== by 0x275F88CD: QgsWFSCapabilities::capabilitiesReplyFinished() (qgswfscapabilities.cpp:156) ==13851== by 0x2760A331: QgsWFSCapabilities::qt_static_metacall(QObject*, QMetaObject::Call, int, void**) (moc_qgswfscapabilities.cxx:54) ==13851== by 0x93F554E: QMetaObject::activate(QObject*, QMetaObject const*, int, void**) (in /usr/lib/x86_64-linux-gnu/libQtCore.so.4.8.2) ==13851== by 0xA46E824: ??? (in /usr/lib/x86_64-linux-gnu/libQtNetwork.so.4.8.2) ==13851== by 0xA4DC904: ??? (in /usr/lib/x86_64-linux-gnu/libQtNetwork.so.4.8.2) ==13851== by 0x93F4A2D: QObject::event(QEvent*) (in /usr/lib/x86_64-linux-gnu/libQtCore.so.4.8.2) ==13851== by 0x991470B: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /usr/lib/x86_64-linux-gnu/libQtGui.so.4.8.2) ==13851== Radim Blazek 2013-05-30 GRASS fixes: remember last mapset, update layer list in tools if a layer is added/removed D'Hont René-Luc 2013-05-30 Add FeatureListURL in QGIS WMS Server GetCapabilities Request When a layer is published as a WFS FeatureType, WMS GetCapabilities Answer containing a FeatureListURL. The FeatureListURL contains an OnlineResource element with the URL to the layer in GML. Radim Blazek 2013-05-30 GRASS v.in.ogr.qgis postgres - set schemas option, fixes #7427 Juergen E. Fischer 2013-05-30 vector layer undo command: remove merging noise Larry Shaffer 2013-05-29 Followup to fix for #7134, label settings not saved in .qml - Ensure labeling gui is restored in correct order - Run style script on qgsmaplayer.cpp Merge: f9ae9d5 085f636 Nathan Woodrow 2013-05-29 Merge pull request #622 from slarosa/one_more_fix_sipapiv2 [pyqgis-console] set default value for splitters state Salvatore Larosa 2013-05-29 [pyqgis-console] set default value for splitters state Nathan Woodrow 2013-05-29 Fix #7134 Juergen E. Fischer 2013-05-29 german translation update Merge: 9db7ab9 b1843de Nathan Woodrow 2013-05-29 Merge pull request #621 from slarosa/again_sipapiv2 [pyqgis-console] again more upadte for sip api v2 Salvatore Larosa 2013-05-29 [pyqgis-console] again more upadte for sip api v2 Juergen E. Fischer 2013-05-29 - sync sip binding of QgsVectorLayer - [API] introduce signal QgsVectorLayer::beforeRollBack() - merge consecutive geometry changes (fixes #7929) - avoid validation in nodetool on rollback Merge: d28d202 bc726dc Matthias Kuhn 2013-05-29 Merge pull request #620 from slarosa/update_sipapiv2_console more update to console for sipapiv2 Juergen E. Fischer 2013-05-29 fix #4103 Salvatore Larosa 2013-05-29 more update to console for sipapiv2 Matthias Kuhn 2013-05-29 Show call stack when python console open fails D'Hont René-Luc 2013-05-26 Using QgsMapLayer's title for QgsComposerLayerItem D'Hont René-Luc 2013-05-29 Add metadata information for layers To complete the metadata tab and ilayer information, we add keywordlist, metadata url and attribution information. The user can add keywords to his layers, store a metadata url with type and format and attribution title and url. These data are reused by QGIS-Sever in the WMS GetCapabilities request. This capability is sponsored by ifremer. Matthias Kuhn 2013-05-29 Set default values for python console settings Nathan Woodrow 2013-05-29 Start sipapi update Marco Hugentobler 2013-05-29 Differentiate between x and y resolution for polygon coordinate positions -> fewer candidate positions Alexander Bruy 2013-05-29 [sextante] fix issue with non-ASCII characters in layer selector Marco Hugentobler 2013-05-29 Use rougher polygon cost calculation based on closest border or obstacle Nathan Woodrow 2013-05-29 Fix add class for graduated renderer. Fix #7726 Nathan Woodrow 2013-05-29 Fix removing composer legend items. Fix #7874 Fix #7464 Juergen E. Fischer 2013-05-29 add missing sip bindings to QgsSublayersDialog Juergen E. Fischer 2013-05-29 fix build error Juergen E. Fischer 2013-05-29 fix #7925 Victor Olaya 2013-05-28 [sextante] added new v.transform algorithm minor fix in r.stream.stats Victor Olaya 2013-05-24 [sextante] some light code cleaning/polishing Etienne Tourigny 2013-05-28 fix loading of raster and vector files with sublayers ; add vector and raster test files with sublayers Juergen E. Fischer 2013-05-28 we don't have a file menu on osx either (followup c510c449) Larry Shaffer 2013-05-27 Update QgsDataDefinedButton - Add 'Usage info' functions; displays in description and tool tip - Reorganize menu, adding conceptual section titles - Add ability to paste in expression - Add ability to clear defined expression - Add check for non-matching data field types - Add better truncation of expressions in tool tip and menu Sandro Santilli 2013-05-28 Fix leak of geometry in QgsSelectedFeature destructor Merge: 2fcb8b2 20c729a Ivan Mincik 2013-05-28 Merge branch 'master' into slovak Sandro Santilli 2013-05-28 Add a QgsDebugCall macro to trace entering/leaving functions Replace manual debugging lines used for the same purpose in a couple of implementation files for node tool. Juergen E. Fischer 2013-05-28 we don't have a file menu anymore (also moves project properties to project menu on windows) Matthias Kuhn 2013-05-28 [diagrams] save attribute names instead of indices (fix #7914) Nathan Woodrow 2013-05-28 Don't be so strict with bad geometies in spatial query Nathan Woodrow 2013-05-28 Load extents from geometry_columns. Fix #7883 Werner Macho 2013-05-27 translation update: sv by Victor Merge: f4c859a e6e9139 Werner Macho 2013-05-27 Merge pull request #615 from rduivenvoorde/nltranslation Dutch translation Richard Duivenvoorde 2013-05-27 addtion of Diethard to list of dutch translators Richard Duivenvoorde 2013-05-27 further dutch translations Werner Macho 2013-05-27 added flag for bengali language Werner Macho 2013-05-27 update and some changes to basque language Werner Macho 2013-05-27 added more japanese translators Merge: 7f4a7ac ab3c14c Werner Macho 2013-05-27 Merge pull request #612 from SrNetoChan/master pt_PT translations Merge: 5177c7b f2e222b Werner Macho 2013-05-27 Merge pull request #613 from qgis-jp/for_pull_from_ja translation gui ja by minoura , tmizu23, nuimura, Arctictern265, yoichi... yoichigmf 2013-05-27 translation gui ja by minoura , tmizu23, nuimura, Arctictern265, yoichigmf Juergen E. Fischer 2013-05-27 fix 10a91b7fb on some platforms Juergen E. Fischer 2013-05-26 indentation update Alexandre Neto 2013-05-26 pt_PT Translations Nyall Dawson 2013-05-26 Fix blending tests Giuseppe Sucameli 2013-05-27 do not destroy layers created outside the dialog (fix #7903) Giuseppe Sucameli 2013-05-27 DBManager: fix 'Update Option' button behaviour (fix #7606) Giuseppe Sucameli 2013-05-27 DBManager: replace the deprecated Exception.message attribute Giuseppe Sucameli 2013-05-27 DBManager: better handle for not supported constraint types (fix #7544) Merge: 0f13260 3c0ac0d Werner Macho 2013-05-26 Merge pull request #609 from SrNetoChan/master DB Manager Dialog pt_PT translations Juergen E. Fischer 2013-05-26 fix #7907 Juergen E. Fischer 2013-05-26 only catch signals on linux (fixes #7908) Juergen E. Fischer 2013-05-26 Restore 'New Shapefile' (it's also used in the toolbar). This reverts commit ebd76d1a6478457e5f2c7c8970b39f45f7272429. Juergen E. Fischer 2013-05-26 fix #7902 Juergen E. Fischer 2013-05-26 fix #7901 Juergen E. Fischer 2013-05-26 postgres provider: use INT_MIN for unknown srid (fixes #7889) Chris Crook 2013-05-26 Fix to handling of double precision values, and improved test cases for this Nathan Woodrow 2013-05-26 Show selected CRS. Fix #5563 Marco Hugentobler 2013-05-25 Allow smaller minimum for composer snap grid (ticket #7839) Juergen E. Fischer 2013-05-25 postgres provider fixes: - allow selection of rows with srid 0 (fixes #7889) - fix geometry type assignment of geometry less tables - filter out geometry columns with srids < 0 in browser Juergen E. Fischer 2013-05-25 german translation update Juergen E. Fischer 2013-05-25 legend updates: - when enabling explicit drawing order, intially take legend order - when loading projects with explicit drawing order enabled, verify that the order is actually fully set and take legend order otherwise (fixes #7623) - store/restore active layer Juergen E. Fischer 2013-05-25 fix #7827 Giuseppe Sucameli 2013-05-25 fix pyspatialite import running QGIS from output dir (fix #7899) Marco Hugentobler 2013-05-25 Fix width of line decoration (ticket #7410) Juergen E. Fischer 2013-05-25 german translation update Juergen E. Fischer 2013-05-25 fix #4470 and #7889 Larry Shaffer 2013-05-22 Fix for label buffer drawing triggered off of just its data defined size in the past (<2.0) Larry Shaffer 2013-05-24 Fix init flag order in QgsOptionsDialogBase (thanks Borys) Salvatore Larosa 2013-05-25 [pyqgis-console] changes and cleans up some icon Chris Crook 2013-05-25 Adding CSVT file reading - using CSVT file alongside data file to determine field types Marco Hugentobler 2013-05-24 Delete rubberband if deactivating capture tool SrNetoChan 2013-05-24 DB Manager pt_PT translations Matthias Kuhn 2013-05-24 [Fix #7892] Fields properties: Fix sorting by id (numeric) Matthias Kuhn 2013-05-24 [Fix #7867] Fix field properties config dialog nyalldawson 2013-05-24 Fix crash with render caching and feature blending combination Matthias Kuhn 2013-05-24 Add ownership management to the MapLayerRegistry pcav 2013-05-24 Miro edits to IT GUI Merge: 1902af5 0dcd9eb mhugent 2013-05-23 Merge pull request #586 from vinayan/offlineedit Fix Offline Editing Plugin Merge: 2c55326 6227475 Chris Crook 2013-05-24 Merge remote-tracking branch 'upstream/master' Chris Crook 2013-05-24 Improving test platform independence Werner Macho 2013-05-23 translation update: sv by Victor Merge: 83445af ebd76d1 Tim Sutton 2013-05-23 Merge pull request #608 from imincik/menu-cleanup Removing redundant 'New' keyword from 'Layer -> New' menu item. Ivan Mincik 2013-05-23 Removing redundant 'New' keyword from 'Layer -> New' menu item. Merge: f82cc12 bac09e9 Salvatore Larosa 2013-05-23 Merge pull request #607 from alexbruy/console-ui use checkable groupbox instead of separate checkboxes in console Ivan Mincik 2013-05-23 Updating Slovak translation strings file. Juergen E. Fischer 2013-05-23 fix #7888 Marco Hugentobler 2013-05-23 Scale/diameter scale also for svg marker Marco Hugentobler 2013-05-23 Fix #7866 Alexander Bruy 2013-05-23 use checkable groupbox instead of separate checkboxes in console settings Merge: d50214b ce280f4 Chris Crook 2013-05-23 Merge pull request #606 from ccrook/master Updating authors Chris Crook 2013-05-23 Updating AUTHORS Merge: ac9736b 700d12f mhugent 2013-05-23 Merge pull request #604 from matthias-kuhn/wmsfix Fix bad WMS server performance Merge: 64ab894 7ea8610 Werner Macho 2013-05-22 Merge pull request #605 from SrNetoChan/master Portuguese translations Merge: 37a30bb 6bd1b78 Giuseppe Sucameli 2013-05-22 Merge pull request #555 from olivierdalang/SaveSqlQueriesInDbManager [FEATURE] DBManager: allow to store SQL queries in the project file Juergen E. Fischer 2013-05-22 german translation fix Merge: 2225108 3da0d7d SrNetoChan 2013-05-22 merge SrNetoChan 2013-05-22 small correction to pt_PT Translation SrNetoChan 2013-05-22 Portuguese Translation SrNetoChan 2013-05-22 Portuguese Translations Matthias Kuhn 2013-05-22 Fix bad WMS server performance Salvatore Larosa 2013-05-22 [pyqgis-console] fix for save as in tabbar context menu Salvatore Larosa 2013-05-22 [pyqgis-console] enables to select multiple files to load in the file editor Matthias Kuhn 2013-05-22 QgsExpression takes const QgsFeature as pointer and by reference SrNetoChan 2013-05-22 Portuguese Translation SrNetoChan 2013-05-22 Portuguese Translations Werner Macho 2013-05-22 translation updates for da and gl Juergen E. Fischer 2013-05-22 introduce MAPSERVER_SKIP_ECW setting to disable ECW support in mapserver Juergen E. Fischer 2013-05-22 reduce debugging noise in pal labeling Merge: 3306c7c e741ec9 Nathan Woodrow 2013-05-22 Merge pull request #602 from 3nids/selectall add selectall features method for vector layers Denis Rouzaud 2013-05-22 add select all features methods for vector layers Merge: b7f1987 6af9261 Nathan Woodrow 2013-05-22 Merge pull request #601 from matthias-kuhn/qgsexpression-unprepared Allow unprepared execution of QgsExpression Matthias Kuhn 2013-05-22 Allow unprepared execution of QgsExpression Matthias Kuhn 2013-05-22 [Fix #7877] Crash when saving layer style as qml Juergen E. Fischer 2013-05-22 yet another german translation update Merge: 2acea9f 83eff76 Jürgen Fischer 2013-05-21 Merge pull request #600 from slarosa/master Update translation script Juergen E. Fischer 2013-05-22 fix #7853 Salvatore Larosa 2013-05-22 update script for translation files Salvatore Larosa 2013-05-22 [pyqgis-console] small fixes Salvatore Larosa 2013-05-21 [pyqgis-console] increases height of the row in QListView and QTreeWidget for Windows OS - small fixes for the run script command Larry Shaffer 2013-05-21 Update Mac INSTALL notes - Fix registered copyright symbol in .t2t files Juergen E. Fischer 2013-05-21 enable/disable layer dependant actions: - select by expression requires active layer - labeling requires and active vector layer Juergen E. Fischer 2013-05-21 german translation update Juergen E. Fischer 2013-05-21 expression translation fixes D'Hont René-Luc 2013-05-21 Debbuging NoGeometry support in QGIS WFS Server Marco Hugentobler 2013-05-21 Use QgsHighlight instead of QgsRubberBand (inner rings of polygons are shown) Marco Hugentobler 2013-05-21 Identify tool: Show layer type icons in layer selection mode Marco Hugentobler 2013-05-21 Move layer selection menu a few pixel to the right / bottom Merge: 70b6821 cbc014e Jürgen Fischer 2013-05-21 Merge pull request #598 from ccrook/master Adding missing delimited text data files Chris Crook 2013-05-21 Adding missing test data files Nathan Woodrow 2013-05-21 Reduce margins in properties dialog Salvatore Larosa 2013-05-20 [pyqgis-console] uses context menu to handle the command history instead of typing directly the command into the console - shows history in dialog (much more usable) Werner Macho 2013-05-20 adding new language Bengali on request Larry Shaffer 2013-05-20 Turn off buffer size-trigger fix for <2.0 projects until better solution is implemented Larry Shaffer 2013-05-15 Update labeling gui and add expression support as data defined value - Add QgsDataDefined class - Add QgsDataDefinedButton class - Add data defined Python support - Add standalone SVG selector dialog to QgsSvgSelectorWidget class - Fix for #4607, show only pertinent fields when setting a data defined value - Fix for #5048 and #5049, data defined settings are literally used - Fix for #5726, number formatting does not work for expressions - Fix for #7755, using bufferSize to enable/disable label buffer is confusing - Fix for #7779, labels do not register in label collision engine; and for #4719, inactive options in labeling dialog - Prepare label text's expression upfront when preparing layer; makes rendering much faster - Change name of 'feature obstacles' to appropriate terminology Radim Blazek 2013-05-20 raster identify - keep format above others Juergen E. Fischer 2013-05-20 - Quantum GIS => QGIS update - integrate PythonConsole help into main translation - allow referencing QGIS images in context help(viewer) Juergen E. Fischer 2013-05-20 german translation update Salvatore Larosa 2013-05-20 [pyqgis-console] fix translation string Salvatore Larosa 2013-05-20 [pyqgis-console] allow to disable automatic parentheses insertion from settings: - fix: add Shift+Insert to paste action - fix: set default Monospaced font at the first start - allow to save state for console splitter - fix for mousePressEvent into console Juergen E. Fischer 2013-05-20 fix some tests and some doxygen warnings Juergen E. Fischer 2013-05-19 german translation fix Giuseppe Sucameli 2013-05-20 gdaltools: move clipper dialog on top when the user ends to define a new extent (fix #7783) Juergen E. Fischer 2013-05-19 debian packaging update for sid Tim Sutton 2013-05-19 Revert "make cmake honor PYTHON_LIBRARY and find the default both in x86 (tested on ubuntu 12.10 64) and android " This reverts commit f7f3e413b726024384235a3654d6b18d9ff073be. Merge: 6370aa4 f7f3e41 Tim Sutton 2013-05-19 Merge pull request #596 from mbernasocchi/master make cmake honor PYTHON_LIBRARY Marco Bernasocchi 2013-05-19 make cmake honor PYTHON_LIBRARY and find the default both in x86 (tested on ubuntu 12.10 64) and android Nathan Woodrow 2013-05-19 Expose alpha on raster colour dialog nyalldawson 2013-05-19 Make sure classifying color ramps for rasters uses the full range of the ramp nyalldawson 2013-05-19 [feature] Transparency support for raster color ramps (fix #7847) Tim Sutton 2013-05-19 Revert "make cmake honor PYTHON_LIBRARY" This reverts commit b3c6d38ffefa9db79932be234b010598a9664706. Merge: 2f9ccb5 b3c6d38 Tim Sutton 2013-05-19 Merge pull request #553 from mbernasocchi/myfix make cmake honor PYTHON_LIBRARY Merge: acacf84 014729b Werner Macho 2013-05-19 Merge pull request #595 from Cracert/trans pl translation update Salvatore Larosa 2013-05-19 [pyqgis-console] adds more options to find text in the editor Robert Szczepanek 2013-05-19 translation update: Polish by Milena, Robert, Borys Merge: 81f677d c95dac5 Werner Macho 2013-05-18 Merge pull request #594 from tomass/master Updates to Lithuanian translations Tomas 2013-05-18 Updates to Lithuanian translation Giuseppe Sucameli 2013-05-18 open project file using text mode (fix #7735) Matthias Kuhn 2013-05-18 [Fix #7858] Toggle editing mode resets edit widget And introduces full mapping between table row and field index ( Fix for loosing index mapping after sorting rows ) Matthias Kuhn 2013-05-18 [attrtable] Fix column synchronization Columns have been missing, after removing all columns and readding them Matthias Kuhn 2013-05-18 [Fix #7849] Layer properties > fields delete correct field Juergen E. Fischer 2013-05-18 translation update Juergen E. Fischer 2013-05-15 indentation update Juergen E. Fischer 2013-05-18 debian packaging update Larry Shaffer 2013-05-17 Fix #7835, opening WMS layer properties causes crash Matthias Kuhn 2013-05-17 [attrtable] Make sure editor widget background is not transparent Matthias Kuhn 2013-05-17 Small fixes * Fix minor memory leak in attribute dialog * Safety check in dual view Matthias Kuhn 2013-05-17 [Fix #7806] Be more verbose in "invalid layer" dialog Matthias Kuhn 2013-05-17 Fix wmsserver: Do not manipulate maplayerregistry directly nyalldawson 2013-05-17 Use a cosmetic pen for snap lines to prevent lines scaling (fix #7524) Marco Hugentobler 2013-05-17 Fix generation of empty layer/style entries Matthias Kuhn 2013-05-17 Disallow changing of map layer registry directly QgsMapLayerRegistry::mapLayers() returned reference is now const Merge: 957c4f1 198cc39 Tim Sutton 2013-05-17 Merge pull request #591 from ccrook/delimited_text_to_core Delimited text to core Merge: 7962361 cfaa71c vinayan 2013-05-16 Merge pull request #593 from mach0/topocheck modified topology checker mostly GUI overhaul Nathan Woodrow 2013-05-17 Return rgba from ramp_color Nathan Woodrow 2013-05-17 Add aplha to colour ramp Nathan Woodrow 2013-05-17 Return rgb from all colour functions Chris Crook 2013-05-17 Fixing line spacing in
 section of delimited text context help

Merge: 83b571b 2c7eff7
Chris Crook 	2013-05-17

    Fix merge conflict

Werner Macho 	2013-05-14

    modified topology checker mostly GUI overhaul

Merge: 36bf93c b7ef48a
mhugent 	2013-05-16

    Merge pull request #592 from matthias-kuhn/fix-7405

    [Fix #7405] Graduated renderer: Feature count 0 with scale or rotation

Radim Blazek 	2013-05-16

    raster resampler fixes, use zoom in resampler also for oversampling 1

Marco Hugentobler 	2013-05-16

    Implement rubberbands for layer selection mode

Juergen E. Fischer 	2013-05-16

    drop qgis_help.db and debian packaging update

Salvatore Larosa 	2013-05-16

    [pyqgis-console] uses QFileInfo instead of os.path to check if file exists
    - minor fixes and cleanup

Radim Blazek 	2013-05-15

    fixed raster paletted renderer for no data, fixes #7139

Matthias Kuhn 	2013-05-15

    [Fix #7405] Graduated renderer: Feature count 0 with scale or rotation

Radim Blazek 	2013-05-15

    enabled resampling for wms, fixes #7144

Radim Blazek 	2013-05-15

    removed raster layer drawing style getter/setter

Matthias Kuhn 	2013-05-15

    Revert "[qgis_help] Detect proper resource path when running from build dir"

    This reverts commit 30b9fedc6adff91be11183c3a1ee3338ac6e0afa.

    qgis_help doesn't need to know the install path any more, because it reads from stdin instead of directly opening files

Radim Blazek 	2013-05-15

    python console setPlaceholderText qt < 4.7 fix

Salvatore Larosa 	2013-05-15

    [pyqgis-console] allow to disable the object inspector from settings (default it is disabled)
    - fixes some translation string

Marco Hugentobler 	2013-05-15

    Insert user defined OWS extent for project into top layer of WMS capabilities

Radim Blazek 	2013-05-15

    disabled raster data file timestamp check in loading style, fixes #6900

Marco Hugentobler 	2013-05-15

    Invert layer crs if wms version is  not 1.1.1 (covers the case where wms version is given as 1.3 instead 1.3.0)

Juergen E. Fischer 	2013-05-15

    - recover japanese translations lost in 4b76600
    - german translation fix

Nathan Woodrow 	2013-05-15

    Refactor activateDeactivateLayerRelatedActions

Nathan Woodrow 	2013-05-15

    Add field calc to main app window

Juergen E. Fischer 	2013-05-13

    - integrate function_help and context_help to translation files
    - add some german function help updates
    - update helpviewer to show help passed into stdin from qgis

Radim Blazek 	2013-05-14

    skip raster nuller with color types; check data block allocation in block value read, fixes possibly #7807

Marco Hugentobler 	2013-05-14

    [FEATURE]: layer selection mode for info tool

D'Hont René-Luc 	2013-04-30

    Activating WMS getStyle REQUEST for .qgs mapfile

    A getStyle REQUEST has been developped for SLD mapfile.
    qgsVectorLayer has a method writeSld. It was easy to activate getStyle
    for .qgsmapfile

D'Hont René-Luc 	2013-05-06

    Add image/png; mode=16bit as a supported format

D'Hont René-Luc 	2013-05-14

    Reactivated 8bit and 1bit mode for QGIS Server

    The commit 76d1f955c019c3d42cbab29ce2d147acd233b54a simplified the
    mFormat private attribute to PNG, JPG, PDF, etc and created
    mFormatString attribute. The second is used for base64 but not for mode.
    This commit corrected it.

Juergen E. Fischer 	2013-05-14

    postgres provider: fix b85af12c

Juergen E. Fischer 	2013-05-14

    postgres provider: avoid noise when layer_style table doesn't exist

Victor Olaya 	2013-05-14

    [sextante] fixed issue in GRASS installation test

Chris Crook 	2013-05-14

    Delimited text plugin moved to core

Chris Crook 	2013-05-14

    Minor gui fix

Chris Crook 	2013-05-14

    Delimited text GUI tidy up.  Renamed useWatcher option to watchFile

nyalldawson 	2013-05-14

    Add clamp and scale_exp functions

Merge: 226c524 519fe2f
Nathan Woodrow 	2013-05-13

    Merge pull request #590 from nyalldawson/advanced_composition

    FFE? some blending fixes & composition feature requests

nyalldawson 	2013-05-13

    Add python bindings and tests for grid blending, grid annotation font color, vector feature blending and vector layer transparency

nyalldawson 	2013-05-13

    Tests for grid blending, grid color labels, vector feature blending and vector layer transparency

nyalldawson 	2013-05-13

    [feature] Add font color control for grid annotations (fix #7789)

nyalldawson 	2013-05-13

    [feature] blend modes for composer map grids (fix #7777)

nyalldawson 	2013-05-13

    [feature] Layer transparency for vectors (fix #7692)

nyalldawson 	2013-05-13

    Add blend mode option for features, allows blending to be used between features in a layer

Nathan Woodrow 	2013-05-14

    Fix build error

Victor Olaya 	2013-05-13

    [sextante] cleaned some unnecessary code from last commit

Victor Olaya 	2013-05-13

    [sextante] improved modeler appearance with Bezier curves

Salvatore Larosa 	2013-05-13

    [pyqgis-console] again more fixes and cleanup (for the editor)

Werner Macho 	2013-05-13

    translation update: ja by Yoichi and his team

Matthias Kuhn 	2013-05-13

    [attrtable] Update context help

Matthias Kuhn 	2013-05-13

    [qgis_help] Detect proper resource path when running from build dir

Juergen E. Fischer 	2013-05-13

    add to german function help

Matthias Kuhn 	2013-05-13

    GUI (Vector layer properties) QSplitter for fields properties tab

vinayan 	2013-05-13

    bring layerAdded signal back to fix synchronize

vinayan 	2013-05-13

    more fixes to offlineediting - back to life

vinayan 	2013-05-12

    fix offline editing plugin

Nathan Woodrow 	2013-05-13

    Change -> to → in function help

Juergen E. Fischer 	2013-05-13

    sip also doesn't like public (followup 0ec5dc4 and fa0a9b7)

Matthias Kuhn 	2013-05-13

    Emit finshed signal, when the vector layer cache has been initialized.

Borys Jurgiel 	2013-05-13

    Disable also plugins in user specified directories when running with --noplugins option

Matthias Kuhn 	2013-05-13

    Use QgsMessageBar instead of QMessageBox

Matthias Kuhn 	2013-05-13

    [Fix #7698] Attributetable crashes on close when valuemap is used

Matthias Kuhn 	2013-05-13

    [Fix #7784] Browser keeps crashing when navigating the tree

Matthias Kuhn 	2013-05-13

    [attrtable] Update title when filter column query changes

Matthias Kuhn 	2013-05-13

    [Fix #7798] (I)LIKE operator escapes regexp characters before computing regexp

Marco Hugentobler 	2013-05-13

    Small performance improvement in gdal provider

Marco Hugentobler 	2013-05-13

    Improve WMS server performance

Marco Hugentobler 	2013-05-13

    sip does not like CORE_EXPORT and Q_OBJECT

Merge: a14adc4 23a7ebf
Nathan Woodrow 	2013-05-12

    Merge pull request #587 from nyalldawson/new_functions

    New functions

nyalldawson 	2013-05-13

    Add a scale_linear function, for linear interpolation between and input domain and output range

nyalldawson 	2013-05-12

    Add trim function

nyalldawson 	2013-05-12

    Add abs function

nyalldawson 	2013-05-11

    Add floor and ceil functions

nyalldawson 	2013-05-11

    Add max and min functions

nyalldawson 	2013-05-11

    Add regexp_substr function for returning matched part of string against regex

nyalldawson 	2013-05-11

    Small fixes to function help

nyalldawson 	2013-05-11

    Add rand and randf functions for generating random numbers

Juergen E. Fischer 	2013-05-12

    german translation update

Juergen E. Fischer 	2013-05-12

    postgres provider:
    - move available table detection to thread
    - more progress messages

Juergen E. Fischer 	2013-05-12

    oracle provider:
    - make searching in meta data table default
    - also list synonyms
    - more progress messages

Juergen E. Fischer 	2013-05-12

    allow credential requests from threads

Juergen E. Fischer 	2013-05-11

    don't reload the whole browser model when the project home changes (fixes #7520)

Merge: 724ed72 2c37896
Tim Sutton 	2013-05-12

    Merge pull request #582 from ccrook/delimited_text_indexing_implemented

    Delimited text provider indexing efficiency improvements.

Chris Crook 	2013-05-13

    Documentation fix

Borys Jurgiel 	2013-05-12

    Minor fixes for better compatibility with KDevelop

Merge: 799870d 9dd8b2f
Chris Crook 	2013-05-13

    Merge branch 'master' into delimited_text_indexing_implemented

Merge: 8012065 6e3e89b
Tim Sutton 	2013-05-12

    Merge branch 'customCRS' of https://github.com/leyan/Quantum-GIS

Werner Macho 	2013-05-12

    translation updates: galician by Xan

Salvatore Larosa 	2013-05-12

    [pyqgis-console]  minor fixes: followup a60e74a

Salvatore Larosa 	2013-05-08

    [pyqgis-console] a simple syntax checker for the editor
    - some fixes and code cleanup

Merge: bbdeceb 2ad5707
vinayan 	2013-05-11

    Merge pull request #585 from vinayan/randomsel

    [Fix #7785] - ftools-random selection broken in master

vinayan 	2013-05-11

    fix random selections in sextante

vinayan 	2013-05-11

    ftools-fix broken random selection

Nathan Woodrow 	2013-05-11

    Add function help

Salvatore Larosa 	2013-05-11

    [pyqgis-console] disables the save button if the document is not modified

Salvatore Larosa 	2013-05-10

    [pyqgis-console] close bracket automatically

Juergen E. Fischer 	2013-05-10

    german translation update

Juergen E. Fischer 	2013-05-10

    fix another doxygen warning

Juergen E. Fischer 	2013-05-10

    handle bad layer: show unfixable layer count as message bar and skip dialog when list is empty.

Juergen E. Fischer 	2013-05-10

    composer map widget: remove slot for previously removed line width widget

Juergen E. Fischer 	2013-05-10

    oracle & postgres provider: show progress messages when scanning for available geometry columns
    postgres provider: stop using pg column sizes (fixes #7799)
    oracle provider: skip dropped tables (fixes #7795)

Merge: 0d464b2 4292976
Chris Crook 	2013-05-10

    Merge resolved

Juergen E. Fischer 	2013-05-10

    localize support links

Juergen E. Fischer 	2013-05-10

    fix doxygen warning

Merge: 2caf0e0 59ffd77
Jürgen Fischer 	2013-05-09

    Merge pull request #583 from ccrook/delimited_text_bug_fixes_3

    Fixed bug processing URL parameters

nyalldawson 	2013-05-10

    Disable blend modes when printing or pdf exporting as vector, prevents missing composer items in output

Nathan Woodrow 	2013-05-10

    Add support page link.
    Load online help manual from help menu

Chris Crook 	2013-05-10

    Fixed bug processing URL parameters

Chris Crook 	2013-05-06

    Delimited text provider indexing implemented.

    Efficiency improvements.

    Adds capabilities
       SelectAtId
       CreateSpatialIndex

    This uses line number as an index.  Allows jumping to a line number
    without interpreting all intermediate records, so much more efficient.
    Also retains the current record in a buffer, so successive requests for
    the same record do not require rereading the file.

    With index available have also added indexing of subsets and optional
    creation of spatial index.

    Note: did try using QTextStream.pos to build a random access index -
    this was incredibly slow.  Have found using line based index is
    reasonably fast even on quite large (50+Mb) text files.

Juergen E. Fischer 	2013-05-09

    reapply some cleanup to 'styles_to_db'

Emilio Loi 	2013-05-07

    Solved errors made using diff tool in last merge

Emilio Loi 	2013-05-07

    Ask for confirmation before overwrite a layer style

Emilio Loi 	2013-05-03

    [FEATURE] Load and Save SLD & QML styles to DB
    Replaced last occurence of "on database" with "in database"
    Solved an issue loading the default style adding a layer
    Work done for ARPA Piemonte - Dipartimento Tematico Geologia e Dissesto

Emilio Loi 	2013-05-03

    Replaced one occurence of "on database" with "in database"

Juergen E. Fischer 	2013-05-09

    german translation update

Juergen E. Fischer 	2013-05-09

    oracle provider: add context help

Juergen E. Fischer 	2013-05-09

    wms provider: add trailing slash, if url path is empty otherwise and clear tileset list, when a tileless wms server is connected

William Kyngesburye 	2013-05-08

    fix GDAL path defaults for OS X

Radim Blazek 	2013-05-08

    GRASS no data value fix2

Radim Blazek 	2013-05-08

    GRASS no data value fix

Radim Blazek 	2013-05-08

    GRASS vector crash fix #7140

Radim Blazek 	2013-05-08

    GRASS Direct disabled for 2.0

Merge: 4c7f51e c054c30
Marco Hugentobler 	2013-05-08

    Merge branch 'dd_symbology_help'

Marco Hugentobler 	2013-05-08

    More help text for data defined dialogs

Radim Blazek 	2013-05-08

    composer legend: store user defined labels separately, fixes partialy #6960

Radim Blazek 	2013-05-08

    WMS capabilities HTTP Get namespace fix

nyalldawson 	2013-05-08

    Small fixes to heatmap plugin
    Update context help for heatmap

Marco Hugentobler 	2013-05-07

    Add help text in data defined dialog

Salvatore Larosa 	2013-05-07

    [pyqgis-console] add scroll area for settigs dialog
    - does also the last tab closable
    - fixes some translate string and warns the user
      if the file has been deleted
    - minor fixes

Marco Hugentobler 	2013-05-07

    Don't advertise jpeg as image type for GetLegendGraphic

Marco Hugentobler 	2013-05-07

    Use case insensitive string comparison for wms request names

Merge: 83ffa05 88e18cc
Werner Macho 	2013-05-07

    Merge pull request #580 from rduivenvoorde/nl2.0

    nl translation update

Richard Duivenvoorde 	2013-05-07

    nl translation update

Radim Blazek 	2013-05-07

    raster 3 band taransparency, fixes #7748, thanks to Mathieu Pellerin

Matthias Kuhn 	2013-05-07

    Followup for 524e142: Fix compile error in non-debug version

Matthias Kuhn 	2013-05-07

    [Fix #7772] Check attribute index before setting attribute to avoid crash

Marco Hugentobler 	2013-05-07

    Fix map units in centroid symbol layer (ticket 7738)

nyalldawson 	2013-05-07

    Make sure heatmap is cancellable

Etienne Tourigny 	2013-05-06

    fix single band pseudo sort toolbutton size (#7138)

Juergen E. Fischer 	2013-05-06

    allow popups from html wms responses

Victor Olaya 	2013-05-06

    [sextante] fixed union algorithm

Etienne Tourigny 	2013-05-06

    make raster source in General tab enabled (but read-only), so it can be copied ; add vector source to vector properties General tab, make UI consistent with that of raster properties

Etienne Tourigny 	2013-05-06

    update histogram UI and options (#7619)

Juergen E. Fischer 	2013-05-06

    resolve cyclic include masking QgsDiagramLayerSettings in 2479d8326 on windows

Juergen E. Fischer 	2013-05-06

    fix #7770

Radim Blazek 	2013-05-06

    script to generate random vectors which may be used for benchmarks

Radim Blazek 	2013-05-06

    Use OGR VSI cache as buffer on Windows

Merge: a5a7c1c 5c240bc
Nyall Dawson 	2013-05-05

    Merge pull request #579 from nyalldawson/blend_warning

    Show warning when printing or pdfing a composition when blend modes are present

nyalldawson 	2013-05-06

    Small fixes to heatmap plugin

Merge: 85a3a67 5e41382
vinayan 	2013-05-05

    Merge pull request #577 from vinayan/sliverFix

    [Fix #7714] ftools - Eliminate - improve performance with new vector api calls

nyalldawson 	2013-05-06

    Fix heatmap rasters not correctly initialising with NODATA value

nyalldawson 	2013-05-04

    Make sure print as raster checkbox is updated after blend mode warning

nyalldawson 	2013-05-03

    Add parameter for QgsMessageViewer to disable deleteOnClose, allows retrieving checkBoxState after dialog has closed

nyalldawson 	2013-05-03

    Add warning for printing and pdf export with blend modes with option to print as raster

Salvatore Larosa 	2013-05-05

    [pyqgis-console] just shows the context menu on tabs (does not on tabbar)

Salvatore Larosa 	2013-05-05

    [pyqgis-console] fix typo and indentation update

Salvatore Larosa 	2013-05-05

    [pyqgis-console] add a context menu for tabs

Merge: 87f7ea1 fc55655
Werner Macho 	2013-05-05

    Merge pull request #575 from Jean-Roc/mywork

    update french translation

Victor Olaya 	2013-05-05

    [sextante] fixed problem when defining help files for the first time

Merge: 945bc60 788e429
Borys Jurgiel 	2013-05-05

    Merge pull request #578 from minorua/fieldname_encoding

    write field names in the same encoding as attribute values (fix #4540)

Victor Olaya 	2013-05-05

    [sextante] model outputs are now shown in canvas

Minoru Akagi 	2013-05-05

    write field names in the same encoding as attribute values (fix #4540)

vinayan 	2013-05-05

    replace old select calls with getFeatures method

Jean-Roc Morreale 	2013-05-04

    update french translation

Salvatore Larosa 	2013-05-04

    [pyqgis-console] fixes translation strings

Salvatore Larosa 	2013-05-04

    [pyqgis-console] minor fixes and cleanup

Salvatore Larosa 	2013-05-03

    [pyqgis-console] some fix for find text in editor
    - changes tabs to north

Victor Olaya 	2013-05-04

    [sextante] edited description of OTB orthorectification algorithm

Victor Olaya 	2013-05-04

    [sextante] fixed help edition dialog.

Victor Olaya 	2013-05-04

    [sextante] added back script creation tools to toolbox

Leyan 	2013-05-04

    do not use QgsCoordinateReferenceSystem internally

Leyan 	2013-05-04

    check validity of CRS before saving

Leyan 	2012-11-25

    Updates to compile with current master

Leyan 	2012-11-04

    Update to custom CRS management

Juergen E. Fischer 	2013-05-03

    html identify results: catch loadFinished only once

Juergen E. Fischer 	2013-05-03

    catch system signals and stack trace on linux

Juergen E. Fischer 	2013-05-03

    more spelling fixes

Matthias Kuhn 	2013-05-03

    [diagrams] Show message on messagebar instead of messagebox
    And some indentation updates

Matthias Kuhn 	2013-05-03

    [diagrams] Usability improvements
     * Choose default attribute value for interpolation if none is set
     * Remember last used tab
     * Default for scale dependent visibility matches layer settings

Juergen E. Fischer 	2013-05-03

    fix spelling errors

Juergen E. Fischer 	2013-05-03

    more translation string cleanups

Juergen E. Fischer 	2013-05-03

    german translation update with some string fixes

Juergen E. Fischer 	2013-05-03

    cleanup style to db:
    - add sip bindings to new methods
    - table name, sql queries and constants should not be translated
    - replace QVector with QStringList

Juergen E. Fischer 	2013-05-02

    another indention update

Victor Olaya 	2013-05-02

    Changed default cellsize for SAGA algorithms

Victor Olaya 	2013-05-02

    Adjustments in DEM parameters fro OTB algorithms

Victor Olaya 	2013-05-02

    Added extra advanced options for GRASS algorithm Import/Export

    Modified/added some GRASS descriptions

Salvatore Larosa 	2013-05-02

    [pyqgis-console] adds a find text widget to editor

Merge: 3e1f3a0 1dfcf53
Tim Sutton 	2013-05-02

    Merge pull request #545 from el1073/styles_to_db

    [FEATURE] Styles to db - this was approved for late submission prior to the feature freeze

Juergen E. Fischer 	2013-05-02

    fix #7749

Radim Blazek 	2013-05-02

    raster block setIsNoDataExcept fix, fixes #7608

Merge: 02c9264 ae7115f
Emilio Loi 	2013-05-02

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into styles_to_db

Emilio Loi 	2013-05-02

    Added a message to explain UI upload feature

Salvatore Larosa 	2013-05-02

    [pyqgis-console] re-added shortcut mistakenly removed in 07abb34

Merge: ae48b09 3b28ce3
Werner Macho 	2013-05-02

    Merge pull request #573 from Jean-Roc/master

    update fr ui

Jean-Roc Morreale 	2013-05-02

    update french translation

Radim Blazek 	2013-05-02

    mapserver compilation fix

Merge: db3bfa3 c3df3ba
Emilio Loi 	2013-05-02

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into styles_to_db

Juergen E. Fischer 	2013-05-02

    oracle provider: fix pk where clause

Matthias Kuhn 	2013-04-28

    Add API to write and read custom data to the layer in a .qgs-file.
    New signals:
     * void QgsProject::writeMapLayer( QgsMapLayer*, QDomElement&,  QDomDocument& )
     * void QgsProject::readMapLayer( QgsMapLayer*, const QDomElement& )

    Changed method signature:
     * bool QgsMapLayer::readXML( const QDomNode& )
       => bool QgsMapLayer::readLayerXML( const QDomElement& )
     * bool QgsMapLayer::writeXML( QDomNode&, QDomDocument& )
       => bool QgsMapLayer::writeLayerXML( QDomElement&, QDomDocument& )

Salvatore Larosa 	2013-05-02

    [pyqgis-console] fixes import warning

Juergen E. Fischer 	2013-05-01

    german translation update

Juergen E. Fischer 	2013-05-01

    indentation update

Salvatore Larosa 	2013-05-01

    [pyqgis-console] warning the user if the file has been modified by another process
    - set fixed size for corner widget icons
    - reorganized message levels for the message bar
    - minor fixes

nyalldawson 	2013-05-02

    Add tests for python bindings for layer blend modes

Merge: f62955f cc34d14
Tim Sutton 	2013-05-01

    Merge pull request #533 from leyan/customCRS_API

    Custom crs api

Merge: 5e9e98a 211a090
Tim Sutton 	2013-05-01

    Merge pull request #551 from olivierdalang/SvgLibraryCleanup

    Svg library cleanup

Merge: 2e446a8 2fb50ab
Tim Sutton 	2013-05-01

    Merge pull request #569 from ccrook/delimited_text_substring_capability

    Delimited text substring capability - also bug #7742

Radim Blazek 	2013-05-01

    limit max number of raster symbol items in legend (may be very slow), resolves slow loading of rasters with large color tables

Merge: 39419e1 78f5110
Chris Crook 	2013-05-02

    Merge branch 'delimited_text_bug_fixes_2' into delimited_text_substring_capability

Merge: 1fb1c9c 3c68312
Chris Crook 	2013-05-02

    Merge branch 'master' into delimited_text_bug_fixes_2

Chris Crook 	2013-05-02

    Comment changed only

Matthias Kuhn 	2013-05-01

    [Diagrams] UI-Improvements
     * Do not allow "fixed size" histograms (makes no sense)
     * Rewire slots and signals for the fixed size
     * Default pie dimensions set to 50 mm

nyalldawson 	2013-05-01

    Add tests for python bindings for composer item blending and transparency
    Add python bindings for composer item background

Salvatore Larosa 	2013-05-01

    [pyqgis-console] fix sharing snippets code via codepad

Salvatore Larosa 	2013-04-30

    [pyqgis-console] fix comment/uncomment code also on Windows OS

nyalldawson 	2013-05-01

    Add tests for layer blending

PhilippeDorelon 	2013-04-30

    Update qgsvectorlayereditbuffer.cpp

Victor Olaya 	2013-04-30

    [sextante] fixed blocking typo introduced in cc490fd7acd366

Victor Olaya 	2013-04-30

    [sextante] Fixed problem when canceling on batch autofill dialog

Victor Olaya 	2013-04-30

    [sextante] Added checking in case model file cannot be save due to permissions

Merge: 5407616 bc57d56
vinayan 	2013-04-30

    Merge pull request #570 from vinayan/authorsupdate

    fix tab in authors.txt

vinayan 	2013-04-30

    fix tab in authors.txt

Salvatore Larosa 	2013-04-30

    [pyqgis-console] running script without shell window (for Windows OS)
    - changed runscript icon to contextual menu

Merge: 6e6ff40 171973a
Nyall Dawson 	2013-04-30

    Merge pull request #567 from nyalldawson/overview

    Add blending mode for overview frame, option to invert overview frame

Matthias Kuhn 	2013-04-30

    [Diagrams] Switch properties dialog to tabs
    Histograms:
    * Use a more descriptive text for the size parameter
    * Hide unneeded parameter controls

Emilio Loi 	2013-04-30

    QgsVectorDataProvider without diff comments

Merge: f344e51 8a6cba6
Emilio Loi 	2013-04-30

    Merge branch 'styles_to_db' of https://github.com/el1073/Quantum-GIS into styles_to_db

    Conflicts:
src/core/qgsvectordataprovider.h

Emilio Loi 	2013-04-30

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into styles_to_db

Merge: c499df7 009ba1b
Emilio Loi 	2013-04-30

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into styles_to_db

    Conflicts:
python/console/console_editor.py
src/core/qgsvectordataprovider.h
src/core/qgsvectorfilewriter.cpp

Merge: c499df7 009ba1b
Emilio Loi 	2013-04-30

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into styles_to_db

    Conflicts:
python/console/console_editor.py
src/core/qgsvectordataprovider.h
src/core/qgsvectorfilewriter.cpp

Merge: 7dc0e51 2f9cb93
Matthias Kuhn 	2013-04-30

    Merge pull request #563 from vinayan/rotateMoveFix

    [Fix #7625] - rubberbands not visible while rotating/moving point geometries

Werner Macho 	2013-04-30

    translation update: swedish by Victor

vinayan 	2013-04-30

    add Vinayan to authors

nyalldawson 	2013-04-30

    Add tests for composer item transparency and blending

Chris Crook 	2013-04-30

    Adding subset test and help information

Chris Crook 	2013-04-30

    Substring working - tests not in place yet

Chris Crook 	2013-04-30

    Refactoring code from iterator to provider

Chris Crook 	2013-04-30

    Added check of dataSourceUri to tests

nyalldawson 	2013-04-30

    Tweak saturation curve (fix #7655)

olivierdalang 	2013-04-29

    SVG : some more backgrounds again

olivierdalang 	2013-04-29

    SVG : forgot some

olivierdalang 	2013-04-29

    SVG : added some backgrounds

olivierdalang 	2013-04-24

    SVG : separate arrows and wind roses

olivierdalang 	2013-04-24

    SVG : manual correction of GPS icon

olivierdalang 	2013-04-24

    SVG : clean arrows

    Conflicts:
images/svg/north_arrows/NorthArrow1.svg
images/svg/north_arrows/NorthArrow10.svg
images/svg/north_arrows/NorthArrow11.svg
images/svg/north_arrows/NorthArrow12.svg
images/svg/north_arrows/NorthArrow13.svg
images/svg/north_arrows/NorthArrow14.svg
images/svg/north_arrows/NorthArrow15.svg
images/svg/north_arrows/NorthArrow16.svg
images/svg/north_arrows/NorthArrow2.svg
images/svg/north_arrows/NorthArrow4.svg
images/svg/north_arrows/NorthArrow5.svg
images/svg/north_arrows/NorthArrow6.svg
images/svg/north_arrows/NorthArrow_blackgreenblack.svg
images/svg/north_arrows/NorthArrow_blackwhiteblack.svg
images/svg/north_arrows/NorthArrow_blackyellowblack.svg
images/svg/north_arrows/NorthArrow_bluegreenblue.svg
images/svg/north_arrows/NorthArrow_source.svg
images/svg/north_arrows/default.svg
images/svg/north_arrows/north-arrow_0_qgis_decoration.svg
images/svg/north_arrows/north-arrow_10_with_map_layers.svg
images/svg/north_arrows/north-arrow_11_simple_corner.svg
images/svg/north_arrows/north-arrow_12_triangular_arrows_with_worldmap.svg
images/svg/north_arrows/north-arrow_13_checkerboard_earth.svg
images/svg/north_arrows/north-arrow_14_steering_wheel.svg
images/svg/north_arrows/north-arrow_15_checkerboard_corner_arrows.svg
images/svg/north_arrows/north-arrow_16_corner_arrows_unfilled_with_circle.svg
images/svg/north_arrows/north-arrow_17_corner_n_e.svg
images/svg/north_arrows/north-arrow_1_simple_half_arrow.svg
images/svg/north_arrows/north-arrow_2_simple_half_arrow.svg
images/svg/north_arrows/north-arrow_3_simple_symmetric_triangular.svg
images/svg/north_arrows/north-arrow_4_double_arrow.svg
images/svg/north_arrows/north-arrow_5_arrow_in_circle_small_n.svg
images/svg/north_arrows/north-arrow_6_unfilled_big_arrow_symmetric.svg
images/svg/north_arrows/north-arrow_7_big_circle_with_small_arrow_unfilled_n.svg
images/svg/north_arrows/north-arrow_8_checkered.svg
images/svg/north_arrows/north-arrow_9_half_arrow_unfilled.svg

olivierdalang 	2013-04-23

    SVG : add parameters

olivierdalang 	2013-04-23

    SVG : add a directory for crosses

olivierdalang 	2013-04-23

    SVG : remove backgrounds, harmonize coulours, harmonize sizes, and add some symbols

olivierdalang 	2013-04-22

    SVG : remove some old-looking svg

Chris Crook 	2013-04-30

    Using common code for list of encodings

Matthias Kuhn 	2013-04-29

    Fix for a2b2e16

Matthias Kuhn 	2013-04-29

    [Fix #7574] [rubberband] Artifacts when using a rubberband with a single point

Radim Blazek 	2013-04-29

    Revert "vector data provider start/stop editing methods"

    This reverts commit 60b4da443e0998377e0cccbd9113b64555695a41.

Radim Blazek 	2013-04-29

    raster cleanup

Borys Jurgiel 	2013-04-29

    More informative text and tooltip for the "ignore shapefile encoding declaration" combobox

Merge: c5177fc 1113c60
Borys Jurgiel 	2013-04-29

    Merge pull request #566 from minorua/fix_cpg

    Encoding: produce more compatible .cpg files.

Merge: 33d13cc 42fc689
Matthias Kuhn 	2013-04-29

    Merge pull request #568 from 3nids/layer2map

    added layerToMapCoordinates for rectangles, and more detailed comments

Denis Rouzaud 	2013-04-29

    added layerToMapCoordinates for rectangles, and more detailed comments

nyalldawson 	2013-04-29

    Add blending mode for overview frame, option to invert overview frame

Radim Blazek 	2013-04-29

    raster cleanup

Salvatore Larosa 	2013-04-29

    [pyqgis-console] allows comments and quotes folding in editor lexer

Merge: 723ad4c 1959182
Emilio Loi 	2013-04-29

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into styles_to_db

    Conflicts:
python/console/console_editor.py

Merge: 2232c3d 1959182
Chris Crook 	2013-04-29

    Merge branch 'master' into delimited_text_bug_fixes_2

Minoru Akagi 	2013-04-28

    fix .cpg file contents

Salvatore Larosa 	2013-04-29

    [pyqgis-console] small fix for show/hide editor action

Merge: 71c9d96 533030f
Nathan Woodrow 	2013-04-28

    Merge pull request #565 from nyalldawson/new_functions

    New color functions (from hsl, hsv and cmyk), new regexp_match function

nyalldawson 	2013-04-29

    Add regexp_match function, improve help for regexp_replace function

nyalldawson 	2013-04-28

    Add color_cmyk and color_cmyka functions

nyalldawson 	2013-04-27

    Add color_hsv and color_hsva functions

nyalldawson 	2013-04-27

    Add color_hsl and color_hsla functions

Salvatore Larosa 	2013-04-26

    [pyqgis-console ] adds more options to settings dialog:
    - reorganized settings dialog
    - added option autosave script before running
    - added options for autocompletion code (from Document, from APIs, from Doc and API)
    - minor fixes

Werner Macho 	2013-04-28

    translation update: fr by JRM

Merge: 6b9bc64 9d93514
Matthias Kuhn 	2013-04-28

    Merge pull request #564 from vinayan/fixRubberband

    [Fix #7728] - QgsRubberband addGeometry does not add multipart geometries to existing points

Werner Macho 	2013-04-28

    translation update: Danish by Jacob

Matthias Kuhn 	2013-04-28

    Allow adding QToolButton's to the toolbars
     * iface.addToolBarWidget()
     * iface.addRasterToolBarWidget()
     * iface.addVectorToolBarWidget()
     * iface.addDatabaseToolBarWidget()
     * iface.addWebToolBarWidget()

Etienne Tourigny 	2013-04-28

    restore zip raster layer style test - still needs a test for vector layers

Etienne Tourigny 	2013-04-28

    remove invalid layers from zip test files

vinayan 	2013-04-28

    fix QgsRubberband.addGeometry when adding multipart geometries

vinayan 	2013-04-28

    fix move features issue with point geometries

vinayan 	2013-04-28

    fix rotate features issue with point geometries

Borys Jurgiel 	2013-04-28

    Plugin installer: add ?qgis=[QGIS_VERSION] GET parameter to each repository URL to allow filtering also on reposiotory side

Borys Jurgiel 	2013-04-28

    Plugin installer: fix support for qgisMaximumVersion tag.

Juergen E. Fischer 	2013-04-27

    german translation update

Werner Macho 	2013-04-27

    translation update: gl_ES by Xan

Merge: 83f3fc6 a7b52d0
Werner Macho 	2013-04-27

    Merge pull request #472 from jdugge/master

    Interface elements for specifying raster resolution in GDAL Rasterize plugin

Werner Macho 	2013-04-27

    translation update da_DK by Jacob

Victor Olaya 	2013-04-27

    [sextante] added OTB algorithms to simplified list

Juergen E. Fischer 	2013-04-27

    osgeo4w: rename executables to ...-bin.exe to solve clash with .bat

Victor Olaya 	2013-04-27

    [sextante] Improvements in commander

Victor Olaya 	2013-04-26

    [sextante] fixed problem in otb with filepaths containing whitespaces.

    Removed outdated otb descriptions

Merge: f7dc548 f384277
Chris Crook 	2013-04-27

    Merge branch 'master' into delimited_text_bug_fixes_2

Emilio Loi 	2013-04-26

    [FEATURE] Load and Save SLD & QML styles to DB
    Work done for ARPA Piemonte - Dipartimento Tematico Geologia e Dissesto
    merge with master f3842775a5147b7a8da1639a4bec667a769b7fac

Merge: 7219fb7 f384277
Emilio Loi 	2013-04-26

    pre merge with master

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into styles_to_db

    Conflicts:
python/console/console_editor.py
src/core/qgsvectordataprovider.h
src/core/qgsvectorfilewriter.cpp

Merge: 02fa729 f7cce9c
Borys Jurgiel 	2013-04-26

    Merge pull request #561 from minorua/create_shape

    set SHAPE_ENCODING to "" when creating new shapefile

Etienne Tourigny 	2013-04-26

    add temporary output for zip test

Minoru Akagi 	2013-04-26

    set SHAPE_ENCODING to "" when creating new shapefile (follows up 4fb9879)

Emilio Loi 	2013-04-26

    [FEATURE] Load and Save SLD & QML styles to DB
    Work done for ARPA Piemonte - Dipartimento Tematico Geologia e Dissesto
    (bug fixes and rollback on doc files)

Emilio Loi 	2013-04-26

    [FEATURE] Load and Save SLD & QML styles to DB
    Work done for ARPA Piemonte - Dipartimento Tematico Geologia e Dissesto

Alexander Bruy 	2013-04-26

    [sextante] add missed CMakeLists

Victor Olaya 	2013-04-26

    [sextante] fixed error due to wrong import

Chris Crook 	2013-04-26

    Let users know if no data displayed because all records are badly formatted

Larry Shaffer 	2013-04-25

    Fix for #3743, georeferencer: can't set map coords from map canvas on Mac

Larry Shaffer 	2013-04-25

    Small cleanup for e0838b0

Chris Crook 	2013-04-26

    Fixing potentially very long field names when reading arbitrary data from CSV files - reduced max length to 200

Chris Crook 	2013-04-26

    Fixing problem with very long data fields corrupting preview table (Qt framework not handling very long strings?)

Merge: 7603f3e b57841f
Chris Crook 	2013-04-26

    Merge branch 'master' into delimited_text_bug_fixes_2

Merge: 21fd0f2 fd57ffa
Nathan Woodrow 	2013-04-25

    Merge pull request #531 from ccrook/colour_functions

    Colour functions

Merge: 0372e4b 21fd0f2
Chris Crook 	2013-04-26

    Merge branch 'master' into colour_functions

Victor Olaya 	2013-04-13

    [sextante] added commander

Chris Crook 	2013-04-26

    Fixes bug #7688

Borys Jurgiel 	2013-04-25

    Set the ENCODING layer creation option when creating a new empty Shapefile. Thanks to Minoru Akagi.

Borys Jurgiel 	2013-04-25

    Always set "SHAPE_ENCODING" GDAL config option to "" in QgsVectorFileWriter (follows up commit:c0551a6)

Etienne Tourigny 	2013-04-25

    fix cpt-city loading of invalid (non-existent) ramps in Seleections

Etienne Tourigny 	2013-04-25

    add simple help to cpt-city dialog

Etienne Tourigny 	2013-04-25

    add ramp count to selection info label

Etienne Tourigny 	2013-04-23

    change QGis to QGIS

Etienne Tourigny 	2013-04-22

    add cpt-city selections to distribution

Juergen E. Fischer 	2013-04-25

    osgeo4w: make batch files location independant

Salvatore Larosa 	2013-04-25

    [pyqgis-console] fix object inspector on windows 7
    - minor fixes

Merge: e0838b0 4f54664
vinayan 	2013-04-25

    Merge pull request #556 from vinayan/splitVector

    [Fix #7618] - split vector layer does not work in master

vinayan 	2013-04-25

    ftools-fix  split vector layer

Nathan Woodrow 	2013-04-26

    Add workaround for loading forms with custom widgets from PyQt4

More information: qt-project.org/forums/viewthread/27098/

Matthias Kuhn 	2013-04-14

    Enable pal label testing to qgis_bench

Larry Shaffer 	2013-04-24

    Make sure Analysis menu (sextante) shows up before Window menu on Mac

Larry Shaffer 	2013-04-24

    Small update to Mac notes in INSTALL

Werner Macho 	2013-04-24

    translation update: cz by Jan

D'Hont René-Luc 	2013-04-24

    shapefiles served with qgis wfs server are completely wrong #7536

    The bug is due to an inversion between tuple and coordinates separator in Polygon
    coordinates element.

olivierdalang 	2013-04-24

    [FEATURE] allows to store SQL queries in the DB manager

Radim Blazek 	2013-04-24

    common raster enums moved to raster namespace

Juergen E. Fischer 	2013-04-24

    wmts: fix dimension support

Victor Olaya 	2013-04-24

    [sextante] fixed #7694. v.clean now accepts decimal values as input

Victor Olaya 	2013-04-24

    [sextante] fixed missing + icons in modeler

Alexander Bruy 	2013-04-24

    [sextante] wrap long lines in help file

Alexander Bruy 	2013-04-24

    [sextante] add output to r.stream.stats module

Radim Blazek 	2013-04-24

    vector data provider start/stop editing methods

Merge: 608adb8 ac6a1ee
Alexander Bruy 	2013-04-24

    Merge branch 'r-stream'

Alexander Bruy 	2012-12-01

    [sextante] add r.stream.* GRASS modules

Alexander Bruy 	2013-04-24

    [sextante] add separators to context menu

Juergen E. Fischer 	2013-04-24

    fix #7690

Chris Crook 	2013-04-24

    Making test script a bit more robust

Nathan Woodrow 	2013-04-24

    Add binding for QgsAttributeDialog

Juergen E. Fischer 	2013-04-24

    german translation update

Salvatore Larosa 	2013-04-22

    [pyqgis-console] fixes #7653 and #7646
    - more minor fixes

Victor Olaya 	2013-04-17

    [sextante]new modeler interface

Merge: 6d046fc 20d40bf
Tim Sutton 	2013-04-23

    Merge pull request #540 from ccrook/delimited_text_bug_fixes

    More delimited text bug fixes

Chris Crook 	2013-04-24

    Post merge fixes

Merge: 02388fe 1176bbc
Chris Crook 	2013-04-24

    Merge with master

Marco Bernasocchi 	2013-04-16

    make cmake honor PYTHON_LIBRARY

Emilio Loi 	2013-04-23

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS into styles_to_db

Merge: 1176bbc 0b780b0
Jürgen Fischer 	2013-04-23

    Merge pull request #539 from matthias-kuhn/fix-7639

    [Fix #7639] Values for new attributes not saved (Blocker)

Marco Lechner, in medias res GmbH 	2013-04-22

    Adds more tolerance to QGIS mapserver for not fully OGC compliant WxS clients

    At the moment QGIS mapserver is relatively strict in interpreting the REQUEST parameter. With this pull QGIS mapserver also accepts non compliant requests not using CamelCase e.g. REQUEST=getcapabilities. This pull does not brake the servers OGC compliance but makes it more tolerant for non-compliant clients. Even the OGC reference implementation (based on deegree ?) is relatively tolerant at this point.

Matthias Kuhn 	2013-04-23

    [Fix #7674] Transfer ownership of layer to C++ when added to the registry

Chris Crook 	2013-04-23

    Updating QGis to QGIS in vector layer source documentation

Merge: 2073f87 f3ab812
Nathan Woodrow 	2013-04-22

    Merge pull request #548 from minorua/raster_memory_leaks

    Fix some memory leaks Fix #6795

Chris Crook 	2013-04-23

    Replace QGis with QGIS throughout

Chris Crook 	2013-04-23

    Tidying up help file

Borys Jurgiel 	2013-04-22

    Disable encoding combobox in layer properties dialog for OGR provider with OLCStringsAsUTF8==true (so when it doesn't work anyway). Patch from Minoru Akagi.

Chris Crook 	2013-04-23

    Tidying up help file

Salvatore Larosa 	2013-04-22

    [pyqgis-console] allows to handle non-ascii chars in script file name

Salvatore Larosa 	2013-04-22

    [pyqgis-console] shows also derived class name in object browser widget

Salvatore Larosa 	2013-04-22

    [pyqgis-console] fix indentation

Merge: 1a91841 0564ab1
Borys Jurgiel 	2013-04-22

    Merge pull request #492 from borysiasty/encoding_write_fix

    Fix shapefile encoding in QgsVectorFileWriter

Merge: ea382d1 1a91841
Emilio Loi 	2013-04-22

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS into styles_to_db

    Conflicts:
src/ui/qgsvectorlayerpropertiesbase.ui

Minoru Akagi 	2013-04-22

    fix some memory leaks

Salvatore Larosa 	2013-04-22

    [pyqgis-console] fix - allows to apply the console settings at all the tabs

nyalldawson 	2013-04-22

    Add SIP bindings for composer item blend mode and transparency

Merge: 269a419 2298cae
Nyall Dawson 	2013-04-21

    Merge pull request #547 from nyalldawson/blend_modes_sip

    Add sip bindings for layer blend modes

nyalldawson 	2013-04-22

    Add sip bindings for layer blend modes

Salvatore Larosa 	2013-04-21

    [pyqgis-console] converts all newlines to "\n" in order to fix the "Enter selected command" from the editor
    - fixes background color for toolbar editor on Windows
    - minor fixes

Larry Shaffer 	2013-04-19

    Update vector layer properties dialog with vertical tabs

    - Following subsections still need work: Labeling (ng), Diagrams and possibly more on Style
    - Add new SVG icons for Labels, Display and Metadata tabs
    - Add up/down, plus/minus icons for consistency
    - Move Metadata tab to bottom of list for vector and raster layer property dialogs
    - Update report stylesheet (metadata output) to support direct RTF copy/paste (i.e. black-colored fonts)
    - Update report stylesheet to use light gray backgrounds for headers instead of unpredictable highlight color

Werner Macho 	2013-04-21

    translation update simplified Chinese by Calvin

Victor Olaya 	2013-04-21

    [sextante] fixed problem with algorithm classification in modeler. It was introduced in commit 7feb1af62f

Victor Olaya 	2013-04-21

    [sextante] added better autoconfiguration for external apps' paths

Victor Olaya 	2013-04-21

    [sextante] improvements in configuration dialog

Victor Olaya 	2013-04-21

    [sextante]Fixed bug in dissolve tool

Victor Olaya 	2013-04-19

    [sextante] removed headers in example scripts

Juergen E. Fischer 	2013-04-21

    osgeo4w: update to grass 6.4.3RC3

William Kyngesburye 	2013-04-20

    forgot import for default TauDEM/MPI paths for OS X

Salvatore Larosa 	2013-04-21

    [pyqgis-console] Follow up 7096a73

Salvatore Larosa 	2013-04-17

    [pyqgis-console] added a python object browser for editor
    - allow to save state for splitters
    - minor fixes and cleanup

Salvatore Larosa 	2013-04-20

    [pyqgis-console] remove unnecessary code and fix tabs tooltip

William Kyngesburye 	2013-04-20

    default TauDEM/MPI paths for OS X

Juergen E. Fischer 	2013-04-20

    fix #7461

Salvatore Larosa 	2013-04-20

    [pyqgis-console] disables tab widget editor if restore tabs is prompted and adds tab tooltip

Matthias Kuhn 	2013-04-20

    Fix doxygen comments

Matthias Kuhn 	2013-04-20

    QgsMapLayerRegistry add/remove signals reworked
    * "theEmitSignal" parameter renamed to addToLegend
    * layer(s)WillBeRemoved has no more "theEmitSingal" parameter
    * layer(s)WillBeRemoved and layer(s)(Was)Added emitted in every case
    * legendLayersAdded( QList theMapLayers ) signal added
    * removedAll renamed to removeAll (is emitted BEFORE layers are removed)

Juergen E. Fischer 	2013-04-20

    windows: include SHA in minidump name

Juergen E. Fischer 	2013-04-20

    windows: generate minidump on crash

Radim Blazek 	2013-04-20

    python QgsField.__len__() fix; fixes PyQgsMemoryProvider and PyQgsVectorLayer test on platforms with SIP < 4.10.3

nyalldawson 	2013-04-20

    Make sure margin spin box is always enabled when applicable

Radim Blazek 	2013-04-20

    PyQgsDelimitedTextProvider fix for python 2.6 (dictionary comprehensions not supported)

Radim Blazek 	2013-04-20

    raster cleanup

Radim Blazek 	2013-04-20

    Deleted QgsFreakOutShader

Nathan Woodrow 	2013-04-20

    Remove project wording from Project menu

Nathan Woodrow 	2013-04-20

    Change File to Project menu in main screen

Radim Blazek 	2013-04-19

    raster cleanup

Radim Blazek 	2013-04-19

    raster filters moved to pipe node in project file to allow custom filters in future

Victor Olaya 	2013-04-19

    [sextante] removed actions from toolbox, as they can be confusing. The toolbox should contain only algorithms

Victor Olaya 	2013-04-19

    [sextante] Made configuration of algorithm classification available in toolbox

Marco Hugentobler 	2013-04-19

    Add python bindings for symbology units and data defined functions

Marco Hugentobler 	2013-04-19

    Use better expression to string conversion

Marco Hugentobler 	2013-04-19

    Fix offset for ellipse renderer

Matthias Kuhn 	2013-04-19

    [vectorlayercache] properly copy featurerequest

Juergen E. Fischer 	2013-04-19

    fix windows build - add missing CORE_EXPORTs

Matthias Kuhn 	2013-04-19

    [attributetable] No autofallback to FilterMode::ShowVisible
    As soon as extents of the map canvas changed, the filter showvisible was reapplied without a reason

Merge: 31cecdb 7fff92a
matthias-kuhn 	2013-04-19

    Merge pull request #544 from rduivenvoorde/rubberband#7628

    fix #7628

Matthias Kuhn 	2013-04-19

    Fix attributetable and vectorlayercache
    * In the attributetable there was a mess with references and pointers, originating from 66fadee8ef.
    * QgsVectorLayerCache did sometimes cache features which did not contain all information which needs to be cached and therefore corrupting the cache and leading to incomplete cache hits.
    * Add a unit test for the cache problem
    * Fix QgsCacheIndexFeatureId
    * QgsAbstractCacheIndex::getCacheIterator now produces a QgsFeatureIterator (instead of a list of Feature Ids). This allows to combine a mixed response, partly satisfied by the cache and partly by an additional query to the backend.

D'Hont René-Luc 	2013-04-19

    qgis wfs server cannot serve geometryless tables

    http://hub.qgis.org/issues/7534

    In a project where there are geometryless tables everything seems to allow publish them with qgis wfs server. In the project/layer properties all the proper panels (ex. OWS server) seems to allow this operation, but then when accessing the wfs service with the WFS client, the table is not added correctly in the project. In the TOC shows a strange icon (instead the expected table icon) and the table of attributes is empty.

    In the client the support for geometryless wfs tables should be available since

    http://hub.qgis.org/projects/quantum-gis/repository/revisions/aedddc22b11e26df900d1ff91d6d23c94d905c78

    so it is a server issue.

nyalldawson 	2013-04-12

    Fix segfault when html composer labels contain img tags

nyalldawson 	2013-04-19

    [Fix 7641] Disable margin control for atlas when a point layer is selected
    Change fixed scale control to radio button
    Fix margin size not saving

nyalldawson 	2013-04-19

    Fix occasional NaN when automatically calculating heatmap radius

PhilippeDorelon 	2013-04-18

    Update qgsvectorlayereditbuffer.cpp

Chris Crook 	2013-04-19

    Minor help file improvements

Juergen E. Fischer 	2013-04-18

    fix #7642

Richard Duivenvoorde 	2013-04-18

    fix for #7628 undo does not work ok

    adding a removePoint method, which can also take a negative index to start
    removing vertices from the end.
    actual fix for #7628 was to not remove the last node, but the one before that.

Juergen E. Fischer 	2013-04-18

    german translation update

Werner Macho 	2013-04-18

    translation update: bosnian by Almir

Werner Macho 	2013-04-18

    translation update: cz by Jan

Larry Shaffer 	2013-04-18

    Update new composer item Rendering group box

    - Set form layout to match others in composer
    - Add companion spin box for transparency slider
    - Add syncGroup property for collapsible group box functionality
    - Clean up some old commented-out code (replaced by QgsColorButton with alpha support)

Larry Shaffer 	2013-04-18

    Set better default drop shadow parameters

Larry Shaffer 	2013-04-18

    Reduce width of histogram widget to fit better in new raster properties dialog

Matthias Kuhn 	2013-04-18

    [FIX #7609] Fetch and cache data for sorting column in one query

Larry Shaffer 	2013-04-16

    Fix for #7627, wrong label scaling in print or PDF

    - Add shadow device dpi output (high resolution)
    - [API] Add scaleToPixelContext method to QgsPalLayerSettings for better precision scaling

Juergen E. Fischer 	2013-04-18

    wms provider: make smooth pixmap transformation in wmts optional (followup 6604d2f81)

Matthias Kuhn 	2013-04-18

    [attributetable] Usability improvements for filters

Chris Crook 	2013-04-18

    Additional documentation

Matthias Kuhn 	2013-04-18

    [Fix #7639] Don't compare TypeName when comparing fields

Chris Crook 	2013-04-18

    Error message fixes and more regexp testing

Juergen E. Fischer 	2013-04-18

    wms provider: add TRANSPARENT parameter when image/x-jpegorpng is choosen (followup 6604d2f814)

Matthias Kuhn 	2013-04-18

    [dnd form designer] Expand items by default

Chris Crook 	2013-04-18

    Minor change to tooltip message

Chris Crook 	2013-04-18

    More testing and bug fixes

    Regular expression delimiter:  fixed non-intuitive behaviour of not
    including capture groups in the returned fields, and improved behaviour
    for anchored regular expressions.  Added test cases for handling of
    regular expressions.

    File encoding: Selected file encoding was being ignored.  Fixed and
    added test cases for file encoding.

    Bad formatted quoting: Fixed handling of badly formatted quotes (eg
    unclosed quotes).  Added test case.

    Field names: Where a file had duplicate or blank field names it was
    not possible to reliably set the names of X,Y,WKT fields.  Relocated
    field name handling to simpler common code in QgsDelimitedTextFile, with
    automatic renaming of fields with ambiguous or missing names.  Add test
    case for field renaming

    User interface fixes: Fixed tooltip and other messages throughout.
    Changed encoding combo box to be alphabetically sorted. Fixed data
    sample to be refreshed when encoding changed.

Salvatore Larosa 	2013-04-18

    [pyqgis-console] fixes the undo action when comment/uncomment out code in editor

Juergen E. Fischer 	2013-04-17

    show loading layer in status bar

nyalldawson 	2013-04-16

    Blend modes apply to whole layer, not individual objects (fix #7603)

Merge: d3f4e34 4e11972
Martin Dobias 	2013-04-17

    Merge pull request #536 from frugardc/master

    Fix for  "a class-key must be used when declaring a friend" on make using Oracle Spatial

Werner Macho 	2013-04-17

    translation update: bosnian string updates

Werner Macho 	2013-04-17

    translation update: new language Bosnian

Chris Crook 	2013-04-18

    Empty records cleaned from layer

Chris Crook 	2013-04-18

    Adding testing feature id to test script

Juergen E. Fischer 	2013-04-17

    fix warnings

Merge: cd24f54 e0732a0
Chris Crook 	2013-04-18

    Merge branch 'master' into delimited_text_bug_fixes

Christian Frugard 	2013-04-17

    add class key to QgsOracleFeatureIterator

    fixes "a class-key must be used when declaring a friend" error on compile

Juergen E. Fischer 	2013-04-17

    fix #7630 - categorized renderer gui produces an empty string category as catch all case, so use it

Matthias Kuhn 	2013-04-17

    [Fix #7552] drag'n'drop form information not loaded from qml file

Emilio Loi 	2013-04-17

    Now if style the style already exists on the db it will be updated (Same layer, same style name)

Emilio Loi 	2013-04-17

    Now also "Restore Default Style" works

Salvatore Larosa 	2013-04-17

    [pyqgis-console] remove duplicate entries

Emilio Loi 	2013-04-17

    Now "Save as Default" button ask where to save the style

Victor Olaya 	2013-04-17

    [sextante] Fixed issue when using non-file based vector layers in modeler

Victor Olaya 	2013-04-17

    [sextante] fixed problem when exporting non-file based data to be used by 3rd party apps

Victor Olaya 	2013-04-17

    [sextante] fixed R import bug

Victor Olaya 	2013-04-16

    [sextante] Fixed iterative execution

    Some additional minor fixes

Juergen E. Fischer 	2013-04-17

    fix windows build

Merge: e6f3b2e 58737b6
alexbruy 	2013-04-16

    Merge pull request #526 from vinayan/pip7414

    [fTools] fix Points in Polygon and Delaunay triangulation (closes #7414, #7360)

nyalldawson 	2013-04-17

    Draw background on painter before rendering map for composer map items (fix #7461)

Chris Crook 	2013-04-17

    Fixed tooltip text throughout.  Renamced combo box named cbxEncoding to cmbEncoding

Merge: 22e54b9 e1421f5
Tim Sutton 	2013-04-16

    Merge pull request #532 from ccrook/delimited_text_bug_fixes

    Three delimited text bug fixes, GUI tidyup, context help fix

Chris Crook 	2013-04-17

    Minor error in tooltip help

Merge: c396128 22e54b9
Chris Crook 	2013-04-17

    Merge branch 'master' into delimited_text_bug_fixes

Chris Crook 	2013-04-17

    Added label to UI to match context help

Chris Crook 	2013-04-17

    Fixing layout of examples in delimited text help file

Chris Crook 	2013-04-17

    Second try at renaming delimited text help files

Chris Crook 	2013-04-17

    Delimited text file: tidying up UI layout and labels, updating help file

Merge: 041b9f1 d06ab3c
Chris Crook 	2013-04-17

    Merge branch 'master' into delimited_text_bug_fixes

Chris Crook 	2013-04-17

    Fixing names of Delimited text context help files

Radim Blazek 	2013-04-16

    raster cleanup

Leyan 	2013-04-16

    update sip file

Matthias Kuhn 	2013-04-16

    Fix feature edit selection in filtered feature list

Radim Blazek 	2013-04-16

    raster cleanup

Leyan 	2013-04-16

    call saveAsUserCRS after each call to createFromProj4

Matthias Kuhn 	2013-04-16

    Select proper features in filtered feature list

Leyan 	2013-04-16

    custom CRS save API change

Alexander Bruy 	2013-04-16

    [sextante] support for non-ASCII characters in SEXTANTE log

Emilio Loi 	2013-04-16

    In QgsVectorLayer::loadNamedStyle changed how to check if the usi refers to db or not

Radim Blazek 	2013-04-16

    GDAL provider identify no data fix

Marco Hugentobler 	2013-04-16

    More dd symbology cleanups

Emilio Loi 	2013-04-16

    Added controls on style table consistency and named style validity

Alexander Bruy 	2013-04-16

    [sextante] fix Distance Matrix tool

Alexander Bruy 	2013-04-14

    [sextante] add license to script and fix its group

Merge: 5875d5a 07abb34
Salvatore Larosa 	2013-04-15

    Merge pull request #399 from slarosa/pyqgis_console_side_editor_2

    [FEATURE] Side Editor for Python Console

Salvatore Larosa 	2013-04-16

    [pyqgis-console] cleaning up code and minor fixes

Salvatore Larosa 	2013-04-16

    [pyqgis-console] fix interrupted system call on run script for osx

Salvatore Larosa 	2013-04-15

    [pyqgis-console] fix shortcut keysequence for side editor
    - added class menu removed by mistake
    - minor fixes

Salvatore Larosa 	2013-04-14

    [pyqgis-console] added button for comment/uncomment code in side editor and minor fixes

Salvatore Larosa 	2013-04-14

    [pyqgis-console] added new toolbar for side editor

Salvatore Larosa 	2013-04-13

    [pyqgis-console] some fix for run script and restore tabs

Salvatore Larosa 	2013-04-13

    [pyqgis-console] added button to toggle the side editor in python console

Salvatore Larosa 	2013-04-12

    [pyqgis-console] fixes prompt save tab on closing

Salvatore Larosa 	2013-01-22

    [FEATURE] Side Editor for Python Console

Chris Crook 	2013-04-16

    GUI bug fix - was not restoring delimiter characters from saved settings

Chris Crook 	2013-04-16

    Missed committing files

Chris Crook 	2013-04-16

    Fix for handling of numeric columns with comma for decimal point (bug #6719)

Larry Shaffer 	2013-04-15

    Put old theme icons back into source tree under themes_ or icons_old next to current directories

Larry Shaffer 	2013-04-15

    Condense app icon themes down to just one, based upon 'gis' theme

    - 'gis' theme copied over default
    - All other themes removed, available here:
      http://drive.dakotacarto.com/qgis/QGIS-images_pre-gis-theme-switch.zip
    - Make sure new default overrides removed themes
    - Update some tool buttons for consistency

Chris Crook 	2013-04-16

    Code name consistency fix and unit tests for functions

Chris Crook 	2013-04-16

    Fixed indentation in qgsexpression.cpp

Chris Crook 	2013-04-16

    Colour functions and en-US help files implemented.

Merge: c62c396 268c037
Chris Crook 	2013-04-16

    Merge branch 'master' into colour_functions

Chris Crook 	2013-04-16

    WIP

Matthias Kuhn 	2013-04-15

    [Fix #7597] Attribute Table: Reintroduce locale aware sorting

Juergen E. Fischer 	2013-04-15

    fix crash on close in attribute table (layer cache already destroyed when model dtor is called)

Marco Hugentobler 	2013-04-15

    More symbology cleanups

Marco Hugentobler 	2013-04-15

    Clean data defined code of svg marker

Radim Blazek 	2013-04-15

    raster cleanup

Matthias Kuhn 	2013-04-15

    [Fix test] Set fixed offset angle for reproducable results

Matthias Kuhn 	2013-04-15

    [Fix diagramtest] replace control image with properly rotated image

vinayan 	2013-04-15

    [Fix #7360] - Fix Dealauney to vector api changes

Matthias Kuhn 	2013-04-15

    QgsVectorLayerCache: include edit buffer changes as well

Matthias Kuhn 	2013-04-15

    Dual View: Commit feature edits to edit buffer, when the attribute table is closed
    or when the view mode is changed
    or when the focus is lost

Radim Blazek 	2013-04-15

    raster properties pipe tab removed

Radim Blazek 	2013-04-15

    QgsWebView renamed to QgsIdentifyResultsWebView

Marco Hugentobler 	2013-04-15

    Start cleaning data defined symbology code

Matthias Kuhn 	2013-04-15

    Fix javadoc comments

Matthias Kuhn 	2013-04-13

    Add updateFields() signal, so adding of joined fields is communicated
    attributeAdded and attributeDeleted signals are only emitted for "real" fields
    and not for "virtual fields" as in joined fields. Therefore this signal should
    be used instead to keep track of these

Juergen E. Fischer 	2013-04-15

    indentation update

Juergen E. Fischer 	2013-04-15

    fix windows build

Merge: 82b41db 632bfbb
Tim Sutton 	2013-04-14

    Merge pull request #527 from ccrook/master

    Fix of delimited text provider to handle CSV files including quoted newlines properly

Chris Crook 	2013-04-15

    Fix to detection of LINESTRING WKT in delimited text provider dialog

Chris Crook 	2013-04-15

    Fix to handling of geometry type selectors

Chris Crook 	2013-04-15

    Fix for degrees/minutes format

Chris Crook 	2013-04-15

    Tidying up test output

Chris Crook 	2013-04-15

    Items missed in last commit - DMS functionality

Chris Crook 	2013-04-15

    Added DMS functionality, fixed source code indenting

nyalldawson 	2013-04-15

    Add Nyall Dawson to authors

Larry Shaffer 	2013-04-05

    Add drop shadow option to labels

    - Add option to show debug rectangles for shadows to PAL engine properties
    - Add small container class, QgsLabelComponent, for temporal values during generation of label components
    - Add static image blurring function to QgsSymbolLayerV2Utils
    - Fix rotational offset issue with label backgrounds

Juergen E. Fischer 	2013-04-14

    wms provider: improve cubewerx support

Larry Shaffer 	2013-04-14

    Followup to 611f77b, better place to trigger gui update

Larry Shaffer 	2013-04-14

    Better fix for situations like #7602

    - In base class, auto-remove corresponding list widget item when stack widget is removed
    - Minimize band rendering group box stretching if there probably is no combo box choice (e.g. WMS layer)

Larry Shaffer 	2013-04-14

    Fix for #7602, Pyramids and Histogram tabs should be hidden for WMS layers in raster properties dialog

Salvatore Larosa 	2013-04-14

    Add Salvatore Larosa to authors

Emilio Loi 	2013-04-14

    Loading from db now works. Still missing a lot of controls and info about errors

Chris Crook 	2013-04-14

    Final tests enabled

Larry Shaffer 	2013-04-13

    Set QgsCollapsibleGroupBox's collapse-on-uncheck to happen only when clicked by user

    - This keeps checkable group boxes from being programmatically collapsed when initializing a dialog

Larry Shaffer 	2013-04-13

    Fix for #7598, CRS info on the lower right corner does not show anymore

    - Should not affect fix for #7532

Larry Shaffer 	2013-04-13

    Update spacing and expansion of widgets in project properties dialog

Larry Shaffer 	2013-04-13

    Set synGroups for raster properties collapsible group boxes

Larry Shaffer 	2013-04-13

    Set Style tab as default on first opening of raster properties

Larry Shaffer 	2013-04-13

    Fix margin addition in QgsOptionsDialogBase

Chris Crook 	2013-04-14

    Tests completed successfully

Merge: d124732 d87eb2a
Chris Crook 	2013-04-14

    Merge branch 'master' into delimiter_text_enhancement

Merge: 27f65c2 8ef9e6d
Werner Macho 	2013-04-13

    Merge pull request #525 from vinayan/fix7474

    Fix #7474 - Topology checker: QGIS crash on exit, after activating the topology checker panel

vinayan 	2013-04-14

    [Fix #7414] - points in polygon does not work

Juergen E. Fischer 	2013-04-13

    fix doxygen and 'unused' warnings

Victor Olaya 	2013-04-13

    [sextante] fixed issue with header

Juergen E. Fischer 	2013-04-13

    missed a new file in 7990ec48c

Andreas Neumann 	2013-04-13

    replace brush icon for clearing fields with more abstract icon

Radim Blazek 	2013-04-13

    reprojector no data fix

Emilio Loi 	2013-04-13

    First attempt to create a load style ui

Matthias Kuhn 	2013-04-13

    Addes Matthias Kuhn to authors

Matthias Kuhn 	2013-04-09

    [FIX #5525] Attribute table performance for large tables
    The selection handling performance has been improved a lot
    Introduces also more detailed signalling of selection change from QgsVectorLayer

vinayan 	2013-04-13

    fix segfault when closing qgis with error rubberbands present in canvas

vinayan 	2013-04-13

    fix segfault on exit after enabling topology dock window

Radim Blazek 	2013-04-13

    raster no data speed up

Merge: f0132dc 7afa4f6
Jürgen Fischer 	2013-04-13

    Merge pull request #502 from nyalldawson/wms_dialog

    Fix tab order in WMS dialog, change layer control to extended selection mode for usability

Merge: 736f765 f0dd138
mhugent 	2013-04-13

    Merge pull request #516 from Oslandia/atlas

    Fix qgsatlascomposition constructor and related Atlas unit tests

Merge: 99bf5fa e3451bb
Jürgen Fischer 	2013-04-13

    Merge pull request #514 from mbernasocchi/master

    more qreal vs double issues for android

Marco Hugentobler 	2013-04-13

    Handle percentage encoded keys in WMS server

Emilio Loi 	2013-04-13

    Now you can add ui files

Victor Olaya 	2013-04-13

    [sextante] force export to shp in grass algorithms, since v.in.ogr syntax seems to be not always the same and some formats (i.e. GML) are not working

Victor Olaya 	2013-04-13

    [sextante] minor bug fix in saga/grass installation checking.

    Also code cleaning

Radim Blazek 	2013-04-13

    raster nodata bitmap and reprojector fix; fixes qgis_composerscalebartest

Juergen E. Fischer 	2013-04-13

    fix #7560

Victor Olaya 	2013-04-13

    [sextante] made fields in saga polygon dissolve optional

Juergen E. Fischer 	2013-04-13

    wms provider fixes:
    - use smooth transformation when rescaling tiles
    - use ows:BoundingBox to retrieve WMTS extents if no ows:WGS84BoundingBox was
      given
    - handle empty WMTS dimensions

Marco Hugentobler 	2013-04-13

    Fix wms server format test

Marco Hugentobler 	2013-04-13

    Improve format test

Emilio Loi 	2013-04-13

    Added QMenu on loadStyle button with 2 options (load from filesystem, load from db)

Marco Hugentobler 	2013-04-13

    Support for returning base64 coded results from GetMap and GetPrint

Martin Dobias 	2013-04-13

    Fix QgsMessageLog python wrapper

Werner Macho 	2013-04-13

    adding licences for Victor :)

Juergen E. Fischer 	2013-04-13

    fix 0d69d4c6a

Werner Macho 	2013-04-13

    translation update: adding missing strings to be up to date

Juergen E. Fischer 	2013-04-13

    german translation update

Emilio Loi 	2013-04-13

    Changed "save to db" provider capability check

Juergen E. Fischer 	2013-04-13

    ignoreShapeEncoding should only have effect on shapes (follows up fea86ea176)

Victor Olaya 	2013-04-13

    [sextante] several fixes for supporting optional parameters in modeler

Merge: a6e5569 366e138
Werner Macho 	2013-04-13

    Merge pull request #517 from L-Infantini/master

    Translations and corrections pt_PT

Merge: a05ac22 a5436a8
Werner Macho 	2013-04-13

    Merge pull request #524 from tomass/master

    Update Lithuanian translations

Merge: 5d99595 fe7f26f
mhugent 	2013-04-13

    Merge pull request #523 from 3nids/dropinvalidchars

    drop invalid chars in project write entry

Tomas 	2013-04-13

    Update Lithuanian translations

Denis Rouzaud 	2013-04-13

    drop invalid chars in project write entry

Emilio Loi 	2013-04-13

    Missing qgssavestyletodbdialog ui files

Chris Crook 	2013-04-13

    Test development continuing

Victor Olaya 	2013-04-13

    [sextante] removed pydevd imports added by mistake

Larry Shaffer 	2013-04-12

    Update raster properties dialog to vertical tabs

    - Minimize width of band renderer type widgets by reorganizing layouts and fixing spacing issues
    - Fix #7569, too much information when edit style on raster layer properties
    - Group 'Color rendering' options
    - Add Reset button to 'Color rendering' options
    - Add icon for pseudocolor colormap sorting

Radim Blazek 	2013-04-12

    keep blue value as double, fixes #7107

Radim Blazek 	2013-04-12

    renamed doubleNear to qgsDoubleNear, QgsMalloc to qgsMalloc, QgsCalloc to qgsCalloc, QgsFree to qgsFree

Radim Blazek 	2013-04-12

    raster no data value made optional

Marco Hugentobler 	2013-04-12

    Keep item position constant if reference point changes (ticket #7519)

Emilio Loi 	2013-04-12

    Added feature to save vector layers styles to postgis (when provider is postgre$

Emilio Loi 	2013-04-12

    Added feature to save vector layers styles to postgis (when provider is postgres) and load one of them adding a new postgis vector layer

Emilio Loi 	2013-04-12

    Added new option for saving styles on db for vector layers with postgres provider

Merge: 61b3e4c41 706ac99
mhugent 	2013-04-12

    Merge pull request #460 from 3nids/readListEntryDefault

    Added default value argument for readEntryList

Victor Olaya 	2013-04-12

    [sextante]changed 'create grid' algorithm to allow non integer values

Victor Olaya 	2013-04-12

    [sextante]improved information when missing 3rd party app before running algorithm

Victor Olaya 	2013-04-12

    [sextante] corrected parameter serialization scheme

Victor Olaya 	2013-04-12

    [sextante] made ParameterTableField and ParameterString optional.

    Changed serializing format of ParameterTableField

Marco Hugentobler 	2013-04-12

    Remove debug variable

Marco Hugentobler 	2013-04-12

    Adapt and fix attribute table for new vector api

Juergen E. Fischer 	2013-04-12

    ogr provider: don't ignore set encoding if SHAPE_ENCODING is set although OGR
    still claims that strings are already UTF-8

Merge: 1a4ce3e bc67bde
mhugent 	2013-04-12

    Merge pull request #520 from 3nids/removeaction

    add removeAction method to layer actions

Victor Olaya 	2013-04-12

    [sextante] fixes in gdal/ogr algorithms and more tests

Victor Olaya 	2013-04-12

    [sextante] fixed missing import

Victor Olaya 	2013-04-12

    [sextante] reintroduced Model->Python conversion

Victor Olaya 	2013-04-12

    [sextante]Fixed issue in algorithms that change projection of output layers

Alexander Bruy 	2013-04-12

    [sextante] remove TauDEM help files. Now this files are available from
    SEXTANTE-Help repo

Merge: fa9e0ac ab8b53e
Tim Sutton 	2013-04-12

    Merge pull request #519 from borysiasty/master

    Update the default symbol set - new symbols from Anita and some fixes

jdugge 	2013-04-12

    Update widgetRasterize.ui

Denis Rouzaud 	2013-04-12

    add removeAction method to layer actions

Chris Crook 	2013-04-12

    Adding code example to QgsVectorLayer documentation

Chris Crook 	2013-04-12

    doxygen fixup

Borys Jurgiel 	2013-04-12

    Update default symbol set: more symbols from Anita, lock colour in bottom layer of road symbols, include symbology-ng-style.db instead of the depreciated xml in OsGeo4W

Merge: 920253d a290fa2
Chris Crook 	2013-04-12

    Merge branch 'master' into delimiter_text_enhancement

Chris Crook 	2013-04-12

    Documentation updates

Merge: a290fa2 5432618
Werner Macho 	2013-04-12

    Merge pull request #507 from matthias-kuhn/fix-7508

    [FIX #7508] drag'n'drop form generator wrong creation of group container

Matthias Kuhn 	2013-04-08

    [FIX #7508] drag'n'drop form generator wrong creation of group container

Chris Crook 	2013-04-12

    Adding documentation for data providers

Nathan Woodrow 	2013-04-12

    Tweak margins on attribute table

Martin Dobias 	2013-04-12

    Fix #7549 (selection color is now stored in QgsRendererContext)

Chris Crook 	2013-04-12

    WIP

Martin Dobias 	2013-04-11

    [API] remove QgsVectorDataProvider::enableGeometrylessFeatures(bool)

    Geometryless features are not skipped by default anymore.

Werner Macho 	2013-04-11

    fix error when labeling joinfields with spatialite files

    Manually applied the patch from PhilippeDorelo
    this should fix bug #7068

Merge: 207da36 6d60215
Werner Macho 	2013-04-11

    Merge pull request #518 from PhilippeDorelon/valuerelation

    Fix issue #7561 : valueMap or valueRelation not visible in attributeTable

Victor Olaya 	2013-04-11

    [sextante]changed how grass help files are found.

    Now there's no need to set the help folder, it will look for html pages online instead

Victor Olaya 	2013-04-11

    [sextante] removed saga help files, since they are rather useless

PhilippeDorelon 	2013-04-11

    Update qgsattributetablemodel.cpp

Alexander Bruy 	2013-04-11

    [sextante] catch IO error when user tried to save file in system
    directory (fix #7259)

Orion 	2013-04-11

    Translations and correctios

Alexander Bruy 	2013-04-11

    fix Merge shapefiles tool in fTools (fix #7570)

Alexander Bruy 	2013-04-11

    [sextante] attempt to fix issue with non-ASCII characters in modeler

Alexander Bruy 	2013-04-11

    [sextante] remove generated *.py files from ui directory

Alexander Bruy 	2013-04-11

    [sextante] allow to run models with no parameters (partially reverts
    4e5c660823)

Alexander Bruy 	2013-04-11

    [sextante] also improve Fields Calculator (field type, length and
    precision settings)

Hugo Mercier 	2013-04-11

    Fix qgsatlascomposition constructor and related Atlas unit tests

Victor Olaya 	2013-04-11

    [sextante] adding missing files from tools reorganization

Victor Olaya 	2013-04-11

    [sextante] add mechanism to allow easily piping grass console output to text file

Victor Olaya 	2013-04-11

    [sextante]Fixed bug in pyculator algorithm

Victor Olaya 	2013-04-10

    [sextante] reorganized sextante tools and how they are exposed and added some tests

Merge: 4b06df0 254fc4d
Werner Macho 	2013-04-11

    Merge pull request #515 from 3nids/duplicatecode

    remove duplicate code

Denis Rouzaud 	2013-04-11

    remove duplicate code

Alexander Bruy 	2013-04-11

    [sextante] fix Advaced Python Calculator, add ability to select field
    type, lenght and precision

Alexander Bruy 	2013-04-11

    [sextante] add missed import

Juergen E. Fischer 	2013-04-10

    fix doxygen warnings

Larry Shaffer 	2013-04-10

    Update recent symbology widget update for cross-platform consistency

    Also:
    - Keep color wells from over expanding
    - Group color wells together, where appropriate
    - Make SVG Groups view wider (was too thin)

Radim Blazek 	2013-04-10

    QgsRasterBlock::Range to QgsRasterRange

Radim Blazek 	2013-04-10

    GRASS direct no data for type

Radim Blazek 	2013-04-10

    gdal set output no data fix

Alexander Bruy 	2013-04-10

    [sextante] don't run models without algorithms and/or parameters

Alexander Bruy 	2013-04-10

    [sextante] allow set field length and precision in Add field algorithm

Alexander Bruy 	2013-04-10

    [sextante] allow non-ASCII characters in string parameters

Alexander Bruy 	2013-04-10

    [sextante] increase max and min limits for numeric values (fixes #7143
    and possible similar issues)

Alexander Bruy 	2013-04-10

    [sextante] fix parameters handling in some GDAL algorithms

Alexander Bruy 	2013-04-10

    [sextante] escape filenames, passed to GDAL tools (fix #5923)

Merge: 212aea7 f7732d3
Nathan Woodrow 	2013-04-10

    Merge pull request #511 from nyalldawson/html_labels_fix

    Fix html labels rendering before they are fully loaded...

Merge: 76f8d60 212aea7
Marco Bernasocchi 	2013-04-10

    Merge remote-tracking branch 'upstream/master'

Marco Bernasocchi 	2013-04-10

    more qreal vs double issues for android

Marco Hugentobler 	2013-04-10

    Change point displacement renderer to work with new vector api

Merge: 8c714a9 d52d4da
Nathan Woodrow 	2013-04-09

    Merge pull request #513 from olivierdalang/SymbolLayerWidgetsUISmallUpdate

    small update of the UI of the symbollayers widgets

Victor Olaya 	2013-04-09

    [sextante] more tests

Victor Olaya 	2013-04-09

    [sextante] moved SilentProgress to independent module

Radim Blazek 	2013-04-09

    GML parser boundedBy fix

Merge: 1436056 dbf795e
mhugent 	2013-04-09

    Merge pull request #512 from nyalldawson/blend_mode_fixes

    Some blending fixes and code cleanup

nyalldawson 	2013-04-09

    Fix html labels rendering before they are fully loaded. Prevents missing images in html labels when composer layout is output for the first time.

Chris Crook 	2013-04-09

    After astyle

olivierdalang 	2013-04-09

    small update of the UI of the symbollayers widgets

Chris Crook 	2013-04-09

    Pre astyle

Pirmin Kalberer 	2013-04-08

    Globe: Fix compilation with osgearth 2.4

nyalldawson 	2013-04-07

    Fix labels not updating for atlas prints when blend mode is applied

nyalldawson 	2013-04-06

    Use QPainter::CompositionMode for all internal blending variables and functions

Juergen E. Fischer 	2013-04-08

    german translation update

Chris Crook 	2013-04-09

    Delimited text fix compiling

Juergen E. Fischer 	2013-04-08

    also remove transparency tests

Juergen E. Fischer 	2013-04-08

    remove unused layer transparency (and fix some warnings)

Merge: a150865 57c2307
Jürgen Fischer 	2013-04-08

    Merge pull request #508 from matthias-kuhn/dual-view-fixes

    Dual view fixes

Merge: 4306632 a21fc5a
Jürgen Fischer 	2013-04-08

    Merge pull request #510 from matthias-kuhn/field-calculator-perf

    [FIX #7533] Field calculator is slow

Matthias Kuhn 	2013-04-08

    [FIX #7533] Field calculator is slow
    Set the QgsDistanceArea only once and not for every loop cycle.
    QgsCoordinateReferenceSystem::loadFromDb takes very long.

Martin Dobias 	2013-04-08

    Fix #7542 (crash in vector layer properties for geometryless layers)

Radim Blazek 	2013-04-08

    PyQgsRasterLayer identify test fixed

Radim Blazek 	2013-04-08

    Added QgsRasterIdentifyResult

Matthias Kuhn 	2013-04-08

    [FIX #7543] Dual View Table/Form: Preview column not saved in project

Merge: 34adbe7 52da723
Werner Macho 	2013-04-08

    Merge pull request #505 from vinayan/7477-add-rule-crash

     [FIX #7477] Topology Checker - Crash as soon a layer is choosen when defining a rule

Matthias Kuhn 	2013-04-08

    [FIX #7530] Attribute table: Edited feature not updated in single row
    If only a single row was shown, the outdated cached feature would be shown even
    when the attribute behind it was edited.

Matthias Kuhn 	2013-04-08

    [FIX #7529] Attribute table: Crash when changing column filter
    When using the field calculator and afterwards changing the column filter
    resulted in a crash

Matthias Kuhn 	2013-04-08

    Attribute editor, form view: Change selection behavior
    Text background is now used for the current edit selection
    The icon shows the feature selection state

Matthias Kuhn 	2013-04-08

    Attribute table selection: performance improvements
    When selecting features with the mouse (click and drag) only redraw
    the map canvas, once the mouse is released.

Matthias Kuhn 	2013-04-08

    Properly show feature count in attribute table title
    Total # of features
    Filtered features
    Selected features

Radim Blazek 	2013-04-08

    qgis_bench json log fix; QGIS2 settings

Martin Dobias 	2013-04-08

    Fixed PyQgsVectorLayer test

Martin Dobias 	2013-04-07

    [API] Removed QgsSymbol, QgsMarkerCatalgoue and QgsSymbologyUtils

Martin Dobias 	2013-04-07

    [API] Removed old symbology's QgsRenderer

Martin Dobias 	2013-04-07

    [API] Removed old symbology QgsRenderer implementations

Martin Dobias 	2013-04-07

    [API] Removed old renderer support from QgsVectorLayer

Martin Dobias 	2013-04-06

    Removed old symbology dialogs.

Martin Dobias 	2013-03-23

    Removed QgsQuickPrint class

Werner Macho 	2013-04-07

    translation update: galician by Xan

Juergen E. Fischer 	2013-04-07

    update .qgis to .qgis2 (to be updated on release and some more utf8 fixes
    (fixes #7537)

Juergen E. Fischer 	2013-04-07

    spatialite isn't optional anymore (offlineediting, osm):
    - remove configuration options

Juergen E. Fischer 	2013-04-07

    fix #6640

Juergen E. Fischer 	2013-04-07

    deduce plugin directory from a plugin that actually still exists

Larry Shaffer 	2013-04-07

    Fix #7532, startup forces new project document, even when opening data file

William Kyngesburye 	2013-04-07

    cleanup Qwt build for OS X

William Kyngesburye 	2013-04-07

    fix autodetect of saga & otb on OS X, also detect bundled grass, saga & otb

Minoru Akagi 	2013-04-07

    fix #4303

Merge: 2bfffaa 73c74ac
Werner Macho 	2013-04-07

    Merge pull request #506 from vinayan/fixdupes

    [FIX #7473] Topology checker-must not have duplicates does not work

Victor Olaya 	2013-04-06

    [sextante]fix for calling SAGA under OSX

Victor Olaya 	2013-04-06

    [sextante] fixed #7525 (problem with checking if external app is installed)

Juergen E. Fischer 	2013-04-06

    adjustments to build on cygwin

Juergen E. Fischer 	2013-04-06

    apply #7521

vinayan 	2013-04-06

    [FIX #7473] Topology checker-must not have duplicates does not work

vinayan 	2013-04-06

    rename ui members

vinayan 	2013-04-06

    fix crash as soon a layer is choosen when defining a rule

Juergen E. Fischer 	2013-04-06

    establish that Qwt 6.1 is not currently supported with internal QwtPolar (closes #7495)

Radim Blazek 	2013-04-06

    qgis_bench revision log

Juergen E. Fischer 	2013-04-06

    also use expat include directory in core

Alexander Bruy 	2013-04-05

    remove debug statement

Merge: 217e7c1 9ffc8ee
Larry Shaffer 	2013-04-05

    Merge pull request #504 from nyalldawson/blend_modes

    Fix dialog resetting label and label buffer blend modes

Alexander Bruy 	2013-04-05

    don't show ticks on slider

Alexander Bruy 	2013-04-05

    display and allow editing of simplify tolerance value (fix #7515)

nyalldawson 	2013-04-05

    Fix dialog resetting label and label buffer blend modes

Radim Blazek 	2013-04-04

    qgis_bench wall clock time

Merge: b809723 5e1dfd9
Nathan Woodrow 	2013-04-04

    Merge pull request #503 from nyalldawson/heatmap_dialog

    Fix tab order in heatmap dialog

Larry Shaffer 	2013-03-28

    [FEATURE] Add background shapes and svg symbols to labels

    - Rectangle, square, circle and ellipse generated symbols
    - SVG background via new symbology, so uses cache
    - Add new gui class QgsSvgSelectorWidget, symbol selector setup culled from symbologyV2
    - Does not include any associated data defined mappings, yet
    - Does not auto-search for missing SVGs, yet
    - Caveat: does not currently account for background size in PAL collision calculations (overlaps occur)
    - Allow direct update of QgsColorButton background

Nyall Dawson 	2013-04-05

    Fix tab order in heatmap dialog

William Kyngesburye 	2013-04-04

    bundle osgEarthQt if available

Juergen E. Fischer 	2013-04-04

    missed a file in 052dab819

Juergen E. Fischer 	2013-04-04

    fix #7503

Juergen E. Fischer 	2013-04-04

    fix ftools union

Marco Hugentobler 	2013-04-04

    Add xml encoding to wms capabilities

Marco Hugentobler 	2013-04-04

    Outline width for simple marker

Alexander Bruy 	2013-04-04

    fix typo Python test for QgsVectorLayer

Merge: 1c6ee9f 45cd49d
mhugent 	2013-04-04

    Merge pull request #500 from matthias-kuhn/rendering-cache-crash

    [Bugfix] Make rendering cache more stable

Merge: d7a6bc3 8e7ffd7
Chris Crook 	2013-04-04

    Merged with dev master

Merge: cbd257d 3a4aa8f
alexbruy 	2013-04-04

    Merge pull request #501 from nyalldawson/color_control

    Fix contrast, grayscale and colorize settings not applying to exported raster layers

Alexander Bruy 	2013-04-04

    fix typo in SEXTANTE test

Nyall Dawson 	2013-04-04

    Fix tab order in WMS dialog, change layer control to extended selection mode for usability

Juergen E. Fischer 	2013-04-04

    fix #7499

Nyall Dawson 	2013-04-04

    Fix contrast, grayscale and colorize settings not applying to exported raster layers

Matthias Kuhn 	2013-04-03

    Avoid possible crash in rendering loop
    As soon as QgsMapLayer::setCacheImage is called while rendering is active, a crash occurs.
    Due to the fact, that processEvents is called from the main rendering loop, such situations cannot always be foreseen.

Radim Blazek 	2013-04-03

    consider user no data values in GDAL raster statistics and histogram, fixes partialy #3840

Juergen E. Fischer 	2013-04-03

    also decode Qt colors

Radim Blazek 	2013-04-03

    composer legend - default symbol to label space fix

Merge: cf4fd4a 1de8c76
Jürgen Fischer 	2013-04-03

    Merge pull request #498 from matthias-kuhn/feature-request-no-geom

    [FIX] Show attribute table for layers without geometry

Merge: 80f7b5a 378a858
alexbruy 	2013-04-03

    Merge pull request #499 from nyalldawson/fix_alpha

    Fixes loss of alpha after adjusting brightness/contrast/hue/saturation for rasters

nyalldawson 	2013-04-03

    Fix loss of alpha when adjusting brightness/hue/saturation for raster. Clean and optimize code

Marco Hugentobler 	2013-04-03

    Consider alpha component of colors in data defined symbology

Merge: 67a542b 95d7ec3
William Kyngesburye 	2013-04-02

    Merge branch 'master' of github.com:qgis/Quantum-GIS

William Kyngesburye 	2013-04-02

    add framework path to link test to fix OS X SDK problem

Merge: 87572f7 7a1b12f
Nathan Woodrow 	2013-04-02

    Merge pull request #450 from 3nids/showEditForm

    Do not wait for feature form closing for non-editable layers

William Kyngesburye 	2013-04-02

    add framework path to link test to fix OS X SDK problem

Juergen E. Fischer 	2013-04-02

    translation string fixes and german translation update

Juergen E. Fischer 	2013-04-02

    indentation update

Merge: b48c2dc a3634e2
Jürgen Fischer 	2013-04-02

    Merge pull request #486 from matthias-kuhn/attr-edit-dnd-multi

    Attribute editor (drag and drop layouter): Proper handling when multiple...

Merge: 255b467 1b7d94b
Jürgen Fischer 	2013-04-02

    Merge pull request #488 from edigonzales/master

    http referer for wm(t)s requests

Merge: c4645ea b035527
Jürgen Fischer 	2013-04-02

    Merge pull request #496 from matthias-kuhn/fix-7483

    [FIX  #7483] Attribute table changed selection on layer twice subsequent...

Merge: 00ae45b 002f73e
Jürgen Fischer 	2013-04-02

    Merge pull request #495 from matthias-kuhn/fix-7485

    [FIX #7485]: Don't crash when expression fails to parse in dual view/preview column.

William Kyngesburye 	2013-04-02

    don't _re_create fake grass lib sources on reconfigure unless gisdefs.h has changed, saves a lot of reconfigure time

William Kyngesburye 	2013-04-02

    unset temporary LIB_PATH var

William Kyngesburye 	2013-04-02

    more OS X install updates

William Kyngesburye 	2013-04-02

    clean up qscintilla bundling

Matthias Kuhn 	2013-04-02

    [FIX] Show attribute table for layers without geometry
    And add a message to the message log when an iterator is closed due to missing geometry

Juergen E. Fischer 	2013-04-02

    vector cache: don't try to request geometries, if there aren't any

Matthias Kuhn 	2013-04-02

    [FIX  #7483] Attribute table changed selection on layer twice subsequently
    This led to a crash and was superfluent

Juergen E. Fischer 	2013-04-02

    widget fixes:
    - add sip bindings for new widgets (and some other missing pieces)
    - change Webview to WebView (like in QWebView)
    - use proxy settings also for webview widget
    - don't disable Photo and webview widget
    - use smooth transformation in photo widget
    - show disabled color button with dotted border in actual color instead of
      grayed-out

Matthias Kuhn 	2013-04-02

    Don't crash when QgsExpression parser fails to parse a preview column (e.g. column without name)
    Also removed throwing exception as this has been discouraged.

Merge: 4f6c2d2 60c20ab
Tim Sutton 	2013-04-02

    Merge pull request #494 from palmerj/wfs_ui_improvements

    WFS Layer Selection UI Improvements

Jeremy Palmer 	2013-04-02

    Remove unused variables

Jeremy Palmer 	2013-04-02

    Add option for using WFS type name title for the added layer name

Jeremy Palmer 	2013-04-02

    Changed back to ExtendedSelection mode for the WFS item view

Jeremy Palmer 	2013-04-02

    Added Filter search for WFS layers. Also improved the treeView to have better column and row layout

Merge: 3d15e67 af7d6f8
William Kyngesburye 	2013-04-01

    Merge branch 'master' of github.com:qgis/Quantum-GIS

William Kyngesburye 	2013-04-01

    OS X install updates

Juergen E. Fischer 	2013-04-02

    osgeo4w release preparations

Victor Olaya 	2013-04-01

    [sextante] more tests. Added extra model and script

Victor Olaya 	2013-04-01

    [sextante] modified OTB description to adapt to 3.16

Victor Olaya 	2013-04-01

    [sextante] added checking to GRASS algorithms

Victor Olaya 	2013-04-01

    Fixed problem with duplicated recent algorithms tree.

    Also fixed  blocking typo in modeler code, introduced in last commit, and two minor changes in saga

William Kyngesburye 	2013-04-01

    handle spaces in install_names (for real this time)

William Kyngesburye 	2013-04-01

    handle spaces in install_names

William Kyngesburye 	2013-04-01

    always search /Library/Frameworks for linking on OS X in case SDK won't

Marco Hugentobler 	2013-04-01

    Bring cap style combo box back (got lost somehow while merging the branch)

William Kyngesburye 	2013-04-01

    clarify and expand Mac bundling info

William Kyngesburye 	2013-04-01

    remove very old v1.0 Mac stuff

Merge: e68b322 d971a69
William Kyngesburye 	2013-04-01

    Merge branch 'master' of github.com:qgis/Quantum-GIS

William Kyngesburye 	2013-04-01

    update OS X identifiers for version 2

Juergen E. Fischer 	2013-04-01

    sneak in color edit widget to accompany data defined symbology

Werner Macho 	2013-04-01

    translations update: gl_ES by Xan

Tim Sutton 	2013-04-01

    Also use different settings file for customisations

Nathan Woodrow 	2013-04-01

    Data defined symbol UI clean up

- Reduce margins
- Remove cell selection
- Adjust first column width

Merge: 6c3f418 7b6e322
Tim Sutton 	2013-04-01

    Merge branch 'composer_blend' of https://github.com/nyalldawson/Quantum-GIS

Tim Sutton 	2013-04-01

    Use ~.qgis2 and ~/.config/QuantumGIS/QGIS2.conf for settings for QGIS 2. Added unit test for memory provider.

Juergen E. Fischer 	2013-04-01

    fix two more warnings

nyalldawson 	2013-04-01

    [FEATURE] Transparency control for composer items

nyalldawson 	2013-04-01

    Fix printing with composition effects

nyalldawson 	2013-03-31

    [FEATURE] Blend modes for composer items

Juergen E. Fischer 	2013-04-01

    german translation update

Juergen E. Fischer 	2013-04-01

    fix build error and a warning

Merge: 2b34ae5 9b0c455
Marco Hugentobler 	2013-04-01

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 5c028f8 8a0b0fe
Marco Hugentobler 	2013-04-01

    [Feature]: Merge data defined symbology branch

Nathan Woodrow 	2013-04-01

    Fix column resize in fields grid, add sorting, reduce margins

Marco Hugentobler 	2013-04-01

    Add export macro

Merge: 9247262 30c343c
Nathan Woodrow 	2013-03-31

    Merge pull request #452 from minorua/tablejoin

    Some fixes for table join. Merged for wider testing.

Marco Hugentobler 	2013-04-01

    Clean legacy code in ellipse symbol layer

Marco Hugentobler 	2013-03-31

    data defined properties for ellipse symbol layer

Werner Macho 	2013-03-31

    added function help files for pi

Juergen E. Fischer 	2013-03-31

    german translation update

Juergen E. Fischer 	2013-03-31

    indentation update

Juergen E. Fischer 	2013-03-31

    [FEATURE] add widgets for photos and webpages

Juergen E. Fischer 	2013-03-30

    [FEATURE] allow non-numeric keys in postgres and oracle views

Juergen E. Fischer 	2013-03-30

    fix warnings on ignored return values

Marco Hugentobler 	2013-03-31

    More data defined symbology for svg marker symbol layer

Borys Jurgiel 	2013-03-31

    Fix shapefile encoding in QgsVectorFileWriter

Marco Hugentobler 	2013-03-31

    Data defined properties for svg marker

Werner Macho 	2013-03-31

    added pi as a selectable constant

    pi can be found under Math in Fieldcalculator

Nathan Woodrow 	2013-03-31

    Rename Save as style to Save in symbol library

Merge: 7d9f444 daeafcc
Nathan Woodrow 	2013-03-30

    Merge pull request #491 from borysiasty/master

    [API] expose mouse wheel to map tools, use it for zoom only if no keyboard modifier pressed

Nathan Woodrow 	2013-03-31

    Move Init function line edit so visible all the time

Larry Shaffer 	2013-03-30

    Fix cyclical QPaintEvent updates for color button, which caused excessive cpu cycles

Nathan Woodrow 	2013-03-31

    Add eval to QgsPythonRunner.

Nathan Woodrow 	2013-03-31

    Reload form module if DEBUGMODE switch set in module

Borys Jurgiel 	2013-03-30

    [API] Expose mouse wheel to map tools as QgsMapTool::wheelEvent()

Borys Jurgiel 	2013-03-30

    Don't zoom with mouse wheel if keyboard modifiers pressed

Victor Olaya 	2013-03-30

    [sextante] modeler improvements: added 'save as' button and fixed issue with line endings.

    Added more tests

Victor Olaya 	2013-03-30

    [sextante] improved error messages when algorithm execution fails

Juergen E. Fischer 	2013-03-30

    german translation update

Juergen E. Fischer 	2013-03-30

    fix warnings

Tim Sutton 	2013-03-30

    Mark srsDimesion unused - see https://github.com/qgis/Quantum-GIS/commit/93e02598438ca9526de5a451b0918e7ae365b7ac#commitcomment-2871379

Merge: 72b476e 86ba94b
Nathan Woodrow 	2013-03-30

    Merge pull request #490 from nyalldawson/heatmap_fixes

    Choose sensible default value for heatmap radius, some small documentation updates

nyalldawson 	2013-03-30

    Update heatmap help file

nyalldawson 	2013-03-30

    Cleanup heatmap dialog strings to follow standard capitalisation

nyalldawson 	2013-03-30

    Estimate a sensible default radius for heatmaps from the layer extent

Marco Hugentobler 	2013-03-30

    Data defined properties for point pattern symbollayer

Nathan Woodrow 	2013-03-30

    Pass fields into new feature in add tool

Nathan Woodrow 	2013-03-30

    Add overload for QgsFeature with QgsFields

Merge: 6e75ea4 de7dd71
Werner Macho 	2013-03-29

    Merge pull request #489 from tomass/master

    lithuanian translation update

Tomas 	2013-03-29

    Lithuanian translations

Marco Hugentobler 	2013-03-29

    Data defined symbology for line pattern symbol layer

Stefan Ziegler 	2013-03-29

    back to wms only

Marco Hugentobler 	2013-03-29

    Data defined properties for SVG fill symbol layer

Stefan Ziegler 	2013-03-29

    referer for wfs: one has to modify a lot... stop here and consider only wms

Juergen E. Fischer 	2013-03-29

    german translation update

Stefan Ziegler 	2013-03-29

    referer works for wms/wmts

Marco Hugentobler 	2013-03-29

    Fix data defined size for simple marker. Propagate scale method to symbol layers

Radim Blazek 	2013-03-29

    composer legend minor fixes

Marco Hugentobler 	2013-03-29

    Data defined properties for simple fill

Minoru Akagi 	2013-03-21

    Fix broken compatibility of table join (project file) (fix #7068)

Victor Olaya 	2013-03-29

    [sextante] modeler tests

Victor Olaya 	2013-03-28

    [sextante] added Polygonize algorithm by Piotr Pociask

Victor Olaya 	2013-03-28

    [sextante] added some extra space in modeler for inputs tab

Victor Olaya 	2013-03-28

    [sextante]Saga algorithms can now have harcoded values in description.

    Modified SAGA descriptions accordingly and fixed Layer importer to avoid duplicated extensions

Victor Olaya 	2013-03-28

    [sextante] Tests stuff. Added new test models and scripts, geojson testdata and extra tests

Victor Olaya 	2013-03-28

    [sextante] added "delete R script" action

Merge: 93ade1f d056d5f
Werner Macho 	2013-03-28

    Merge pull request #487 from SrNetoChan/master

    New translations and some updates to PT-pt

Alexandre Neto 	2013-03-28

    reverse 'help.css' file to previous commit

Marco Hugentobler 	2013-03-28

    Fix data defined symbology for embedded layers

Marco Hugentobler 	2013-03-28

    Data defined shape for simple marker does not work yet

Marco Hugentobler 	2013-03-28

    Data defined properties for simple marker (but shape will come later)

Matthias Kuhn 	2013-03-28

    Attribute editor (drag and drop layouter): Proper handling when multiple fields are dropped

Marco Hugentobler 	2013-03-28

    Data defined symbology for marker symbol layer

Marco Hugentobler 	2013-03-28

    Moved code for data defined simple line symbolisation into its own functions

Merge: 1b663bb 0f7e90b
Nathan Woodrow 	2013-03-27

    Merge pull request #480 from nyalldawson/hue_saturation

    Add hue and saturation controls for raster layers

Nathan Woodrow 	2013-03-28

    Get fid of newly added feature in mssql provider

Larry Shaffer 	2013-03-27

    Remove WA_DeleteOnClose attribute from QgsBusyIndicatorDialog

    - Add default title

Larry Shaffer 	2013-03-27

    Move busy indicator dialog out of composer and into own gui class

Alexandre Neto 	2013-03-28

    Some PT-pt translations and corrections

Merge: d1825ec c9ef27c
Nathan Woodrow 	2013-03-27

    Merge pull request #485 from nyalldawson/blend_modes

    Blend modes pt 3 - blend modes for labels

Merge: 8793d38 d1825ec
Nyall Dawson 	2013-03-28

    Merge remote-tracking branch 'origin/master' into blend_modes

Merge: 24fedb2 d1825ec
Alexandre Neto 	2013-03-27

    Merge remote-tracking branch 'upstream/master'

Nyall Dawson 	2013-03-28

    [FEATURE] Blend modes for labels and label buffers

Nyall Dawson 	2013-03-28

    Move BlendMode enum and functions to QgsMapRenderer

Merge: dd9bf7e 9aea6ad
Jürgen Fischer 	2013-03-27

    Merge pull request #482 from matthias-kuhn/fix-7379

    Fix issue #7379: Crash when attribute table is closed after layer has be...

Merge: aa6d22a f28f13c
Jürgen Fischer 	2013-03-27

    Merge pull request #484 from matthias-kuhn/attribute-table-sort

    Fix #7459: Sorting of attribute table takes type into account

Alexander Bruy 	2013-03-27

    put Topology Checker plugin into Vector menu

edigonzales 	2013-03-27

    working on referer option for http requests

Merge: 0005467 429be1e
mhugent 	2013-03-27

    Merge pull request #483 from matthias-kuhn/pie-angle

    Add start angle offset for pie diagram

Matthias Kuhn 	2013-03-27

    Fix #7459: Sorting of attribute table takes type into account

Marco Hugentobler 	2013-03-27

    Complete data defined symbology for simple line symbol layer

Matthias Kuhn 	2013-03-27

    Add start angle offset for pie diagram

Matthias Kuhn 	2013-03-27

    Fix issue #7379: Crash when attribute table is closed after layer has been deleted

Merge: 24f1519 689c940
Nathan Woodrow 	2013-03-27

    Merge pull request #481 from matthias-kuhn/fix-missing-icons

    Fix missing icons (Removed in rebase)

Matthias Kuhn 	2013-03-27

    Fix missing icons (Removed in rebase)

Marco Hugentobler 	2013-03-27

    Improve data defined dialog, consider data defined color for single line symbol layer

Juergen E. Fischer 	2013-03-27

    fix warnings

Juergen E. Fischer 	2013-03-27

    debian packaging update

Juergen E. Fischer 	2013-03-27

    indentation update

Matthias Kuhn 	2013-03-27

    Add some GUI strings for the Expression Builder Dialog

Matthias Kuhn 	2013-03-27

    Set custom feature form visible in dual view

Matthias Kuhn 	2013-03-27

    Fix sip problems / export gui classes to libraries

Matthias Kuhn 	2013-03-26

    Fix rebase problems

Matthias Kuhn 	2013-03-11

    Attribute table: Mark current edited in red so user is aware of autocommitted changes.
    Quick fix.
    The better approach would be to only change the color after changes have been made by the user

Matthias Kuhn 	2013-02-20

    Fix: Check for existence of data provider to prevent segfault

Matthias Kuhn 	2013-02-20

    Add tests for QgsVectorLayerCache

Matthias Kuhn 	2013-02-20

    Remove unneeded variable

Matthias Kuhn 	2013-02-20

    Fix issue #7169
    If removing multiple attributes, remove the indices in descending order, so it does not get confused

Matthias Kuhn 	2013-02-20

    Add tests for attribute table / dual view

Matthias Kuhn 	2013-02-20

    Major redesign of attribute table, codename: dual view

Matthias Kuhn 	2013-03-11

    Add indexable vector layer cache

Matthias Kuhn 	2013-01-28

    Add a select by expression dialog.
    Allow to change the current selection based on a QgsExpression
    * Select (clear and select)
    * Add to selection
    * Remove from selection
    * Select within selection (Intersect)

Werner Macho 	2013-03-27

    deleted fixed Version in html

    fixed Version is obsolete

Merge: 86a246a 4435c4f
Nyall Dawson 	2013-03-27

    Fix branch to apply to current master

Minoru Akagi 	2013-03-05

    refresh field names after all layers loaded and encoding change (fix #6840)

Minoru Akagi 	2013-03-05

    Fix table join (fix #7068)

Juergen E. Fischer 	2013-03-27

    german translation update

Victor Olaya 	2013-03-27

    [sextante] changed version number (wasn't changed since last release) and min required qgis version

Victor Olaya 	2013-03-27

    [sextante] changed how saga installation test is performed (now it uses the test data)

Victor Olaya 	2013-03-27

    [sextante] more tests

Juergen E. Fischer 	2013-03-26

    topology plugin:
    - cleanups & fixes for warnings
    - log messages
    - translation strings
    - return plugin category (fixes persistent loading)

Merge: 4e29436 8bf6df2
Nyall Dawson 	2013-03-27

    Merge remote-tracking branch 'origin/master' into hue_saturation

vinayan 	2013-02-26

    rule table now prevents duplicate entries

vinayan 	2013-02-25

    layer comboboxes display proper layers as per topologyrule

vinayan 	2013-02-17

    fix gaps,overlaps for invalid goemetry errors by skipping

vinayan 	2012-12-12

    [Feature] Topology Cheker Plugin.
    added files for topology plugin

    modified cmakelists to add topology plugin folder

    Conflicts:

src/plugins/CMakeLists.txt

    fixed issues in duplicate rule where zooming was not possible..renamed 'Test' to 'Rule'

    fixed minimum segment length rule
    renamed rules to meaningful descriptions

    Added new rule "Must not have pseudos" for line vector layers.
    Renamed rules to more understandable descriptions.
    Handled WKB::MultilineStrings in line shapefiles in hanging lines rule that caused crashes.

    "segments must have minimum length" rule now only checks if the geometry contains at least one short segment

    added new Rule "Must Not Have Gaps"
    removed unwanted indexing for some rules.
    prepare commit run.

    test commit

    modified 'must not have gaps' rule.

    updated calls to new vector api

    more changes based on new api

    fixed "must not have gaps rule"
    fixed extent issues

    changed dangle rule implementation

    More rules added
    -checkPointCoveredbyLineEnds
    -checkPointInPolygon

    new rules added
    -point must be inside polygon
    -polygon must contain point
    -geometry must not be multipart

    added rule 'checkyLineEndsCoveredByPoints'
    renamed some rules
    commented 'closer than tolerance rules' -performance issues
    changed colors of error markers

    changed visualization style of errors

    changed rule paramters
    validateExtent fixed to show only errors from within canvas extent
    removed rule - polygons must contain feature
    removed direct calls to geos api
    prepare commit run

    fixed missing icon in plugin manager

    icons added. validateSelected option removed

Alexander Bruy 	2013-03-19

    UI to control brightness and contrast values in raster properties,
    attempt to fix contrast calculation

Radim Blazek 	2013-03-26

    composer legend styles fix

Radim Blazek 	2013-03-26

    composer legend styles, fixes partialy #6960

Merge: 250cc4e a482c42
Jürgen Fischer 	2013-03-26

    Merge pull request #473 from Oslandia/atlas

    Atlas: fix #7408

Marco Hugentobler 	2013-03-26

    Add dialog for data defined symbology

Juergen E. Fischer 	2013-03-26

    indentation update

nyalldawson 	2013-03-26

    Fix initial state of saturation controls

nyalldawson 	2013-03-26

    Add strength slider for raster colorization

Nyall Dawson 	2013-03-26

    [FEATURE] Add colorize control for raster layers

Nyall Dawson 	2013-03-26

    [FEATURE] Option to convert a raster to grayscale with choice of desaturation mode (lightness, luminosity, average) (fix #5837)

Nyall Dawson 	2013-03-25

    [FEATURE] Add saturation control for raster images

Larry Shaffer 	2013-03-25

    Remove interior button focus color for QgsColorButton wells

    - Focus color tinted button's set color on platforms like Ubuntu
    - Border should be updated with OS-style focus color when button in focus (currently no focus hint)

Larry Shaffer 	2013-03-23

    Update Project Properties dialog with vertical tabs and update ui

    - Dialog now subclassed from new class QgsOptionsDialogBase
    - Add collapsible group boxes where applicable
    - Update Projection Selector ui to work in outlying cases
    - Switch Opacity default for styles to Transparency

Victor Olaya 	2013-03-26

    [sextante] more testing stuff and a couple of minor fixes

Alexander Bruy 	2013-03-25

    missed file

Radim Blazek 	2013-03-25

    missing QPen header compilation fix

Alexander Bruy 	2013-03-25

    add SEXTANTE test data to build

Victor Olaya 	2013-03-25

    [sextante] more improvements in automated tests tools and some cleaning

Juergen E. Fischer 	2013-03-24

    german translation update

Tim Sutton 	2013-03-24

    Removed compiler warning

Tim Sutton 	2013-03-24

    Fix compilation errors for grass provider

Victor Olaya 	2013-03-24

    [sextante] minor corrections in test tools

Victor Olaya 	2013-03-24

    [sexante] change how temp files are deleted when exiting sextante

Victor Olaya 	2013-03-24

    [sextante] Modified test data and example models

Marco Hugentobler 	2013-03-24

    Add export macro

Merge: 920036e 56b55a0
Marco Hugentobler 	2013-03-24

    Merge composer ruler branch

Marco Hugentobler 	2013-03-24

    Fix ruler shift

Merge: dac35e1 adf8c26
Werner Macho 	2013-03-24

    Merge pull request #478 from tomass/master

    Remove russian words from lithuanian translation

Tomas 	2013-03-24

    Remove russian words from lithuanian translation

Merge: 176a08c 08fba25
Nathan Woodrow 	2013-03-23

    Merge pull request #476 from nyalldawson/blend_modes

    Blend modes pt 2

Victor Olaya 	2013-03-23

    [sextante]improved classes for creating unit tests from GUI

Victor Olaya 	2013-03-23

    [sextante]fixed somes issues in ftools algorithms due to changes in vector API

Victor Olaya 	2013-03-23

    [sextante] made temporary filenames more descriptive and readable, reusing the original filename but using a temp folder

Victor Olaya 	2013-03-23

    [sextante] added file filters to input boxes in batch processing dialog

Victor Olaya 	2013-03-22

    [sextante]Improvements in error messages in barch processing interface

Nyall Dawson 	2013-03-24

    Fix for labels incorrectly rendering when blend modes used

Juergen E. Fischer 	2013-03-23

    issue warning to message log when active iterator is closed when replaced

Nyall Dawson 	2013-03-23

    Make QgsBlendModeComboBox extend QComboBox

Marco Hugentobler 	2013-03-23

    Load and save custom snap lines in composer

Merge: 2a9d016 d6ad6e5
Werner Macho 	2013-03-23

    Merge pull request #477 from matthias-kuhn/pg-msg

    Small string change: More verbose message in pg source select

Matthias Kuhn 	2013-03-23

    More verbose message in pg source select

Nyall Dawson 	2013-03-23

    Add support for copy/pasting blend modes for layers

Merge: a006d99 7423e9a
Nathan Woodrow 	2013-03-23

    Merge pull request #471 from nyalldawson/heatmap_kernels

    [FEATURE] Add additional kernels to the Heatmap plugin...

Nyall Dawson 	2013-03-23

    Move blend mode combo box to styles tab

Marco Hugentobler 	2013-03-23

    Hide custom snap lines before printing composition

Merge: 0594453 70ef5a7
Larry Shaffer 	2013-03-22

    Merge pull request #474 from dakcarto/color-button_mk_10

    [FEATURE] QgsColorButton shows a color chooser dialog on click, checkboard color when translucent, and live updates during color choosing

Marco Hugentobler 	2013-03-22

    Fix parsing bug in wkb -> geos export

Larry Shaffer 	2013-03-22

    Fix live color updating slot parameter by using SLOT macro

Marco Hugentobler 	2013-03-22

    Data defined symbology for simple line symbol layer

Merge: 9afe76d 647fbdb
Nathan Woodrow 	2013-03-21

    Merge pull request #475 from nyalldawson/blend_modes

    Add support for blending (composition) modes, eg Overlay, Mutiply, etc (Close #5248)

Nyall Dawson 	2013-03-22

    Add blend modes widget to raster layer properties dialog

Nyall Dawson 	2013-03-22

    Add blend modes widget to vector layer properties dialog

Nyall Dawson 	2013-03-22

    New blend modes combo box widget

Nyall Dawson 	2013-03-22

    Add support for loading and saving blend modes to project files

Nyall Dawson 	2013-03-22

    [FEATURE] Add composition blend modes for layers (#5248)

Larry Shaffer 	2013-03-21

    Fix for #7398, allow alpha value change in line pattern fill color picker

    - Add alpha picker and render support for: line pattern fill, line decoration symbol, font marker symbol

Larry Shaffer 	2013-03-21

    Fix missing conversion from QgsColorButtonV2 to QgsColorButton

Alexander Bruy 	2013-02-28

    housekeeping: remove obsolete code, completely switch to new vector API

Alexander Bruy 	2013-02-28

    review Difference tool

Alexander Bruy 	2013-02-28

    review Clip tool

Alexander Bruy 	2013-02-27

    review and cleanup Convex Hull tool, also move some common routines to
    utils module and update other algs accordingly

Alexander Bruy 	2013-02-27

    cosmetic chages in QGISAlgorithm provider, also remove unused icons and
    add new ones to resources

Larry Shaffer 	2013-01-08

    [FEATURE] Update QgsColorButton to offer live color chooser updates and show transparent checkerboard background

    - Add option to Options for live color chooser support (QgsColorDialog)
    - Add ability to define whether QgsColorButton accepts live updates (default: true)
    - Move QgsColorButton to single subclass of QPushButton
    - Show different button types relative to whether button has text
    - Add transparent checkerboard background for chosen colors with alpha < 255
    - Fix triple-modal window issue for Mac (with regards to using native color dialog)

    - Composer item frame now supports transparency
    - Composer item background transparency support moved to color dialog
    - Composer composition grid now supports transparency

Matthias Kuhn 	2013-01-08

    Update core components to use the new QgsColorButton implementation

Matthias Kuhn 	2013-01-08

    Update QgsColorButton so it shows a color chooser on click

Hugo Mercier 	2013-03-21

    refs #7408
    [Atlas] Add a checkbox on "filter with"

Hugo Mercier 	2013-03-21

    refs #7408
    Fix error reporting when the filename expression is invalid

Marco Hugentobler 	2013-03-21

    Radio button groups in composer label widget, consider label alignment in adjustSizeToText (important if replacing label text in server)

Victor Olaya 	2013-03-20

    [sextante] minor code cleaning

Victor Olaya 	2013-03-20

    [sextante] R scripts can now be run from the script editor

Victor Olaya 	2013-03-20

    [sextante] temporarily disabled SAGA installation check before running algorithm

Sandro Santilli 	2013-03-20

    Improve error message on collapse due to intersection avoidance

Tim Sutton 	2013-03-20

    Added scripts and needed files for making QGIS translatable on transifex.com

Juergen E. Fischer 	2013-03-20

    update vector layer sip bindings

Juergen E. Fischer 	2013-03-20

    fix #7386 (yet another issue)

Radim Blazek 	2013-03-20

    composer legend feature counts add only to multi symbol or labeled single symbols

Juergen E. Fischer 	2013-03-20

    fix #7386 (another issue)

Marco Hugentobler 	2013-03-20

    Fix activation of paste action after cut/copy

Juergen E. Fischer 	2013-03-20

    german translation update

Martin Dobias 	2013-03-19

    Fixed QgsVectorLayer tests

Martin Dobias 	2013-03-19

    Added convenience constructors for QgsFeatureRequest

Marco Hugentobler 	2013-03-19

    Fix for printing problems in line/point pattern and svg fill

Alexander Bruy 	2013-03-19

    fix some tests broken by vector API cleanup

Werner Macho 	2013-03-19

    translation update: khmer by Khoem

Alexandre Neto 	2013-03-19

    more portuguese translations and corrections

Martin Dobias 	2013-03-19

    Remove the support for reading python plugin metadata from __init__.py

    From now on, plugins must have metadata.txt file (with INI format)
    that is used for storing of metadata. This has two advantages:
    - plugins do not need to be loaded in order to read metadata
    - repository can parse the metadata more easily

Martin Dobias 	2013-03-17

    Do not load metadata from __init__.py

Victor Olaya 	2013-03-18

    [sextante] fixed problem in fix for #7348

Radim Blazek 	2013-03-18

    composer legend: draw single symbol layers as single line

Larry Shaffer 	2013-03-18

    Disable 'overloaded virtual' warning globally when using clang

    - Commit 1145bd2 now causing 200+ 'overloaded virtual' warnings

Nyall Dawson 	2013-03-19

    Move kernelShape enum to heatmap.h

Merge: 5d62af3 d7d1ece
Larry Shaffer 	2013-03-18

    Merge pull request #464 from dakcarto/nmake-with-jom_1

    Fix for #7289, add CMake option to enable building with Qt jom (nmake) on Windows

Marco Hugentobler 	2013-03-18

    More coherent version string handling in qgis server

Tentotwo <1022tentotwo@gmail.com>	2013-03-18

    Added UI elements for specifying resolution in Rasterize

Merge: 5743f52 713d3c1
Nathan Woodrow 	2013-03-18

    Merge pull request #468 from slarosa/master

    replace some message box with message bar in main app

Salvatore Larosa 	2013-03-14

    replace some message box with message bar in main app

Juergen E. Fischer 	2013-03-18

    fix #7386

Marco Hugentobler 	2013-03-18

    Filter string in qgis server: Allow strings and attribute names with spaces

Nyall Dawson 	2013-03-18

    [FEATURE] Add triweight and Epanechnikov kernels. Make decay disabled for all kernels expect Triangular kernel. Fix math for triangular kernels.

Merge: ec01afb 9a81fa7
Nyall Dawson 	2013-03-17

    Merge branch 'master' into heatmap_kernels

Merge: 8966e9e 239479a
Nathan Woodrow 	2013-03-17

    Merge pull request #461 from nyalldawson/heatmap_fixes

    Massive speedup to heatmap plugin (fix #6756, fix #6691 and fix #6692)

Nathan Woodrow 	2013-03-17

    Ability to change splash screen using QgsCustomization

Nathan Woodrow 	2013-03-17

    Fix #7030. Enable customization via command line

Merge: 5d42734 cb685e9
Nathan Woodrow 	2013-03-16

    Merge pull request #466 from nyalldawson/master

    Rename Quantile classifier to 'Quantile (Equal Count)'

Martin Dobias 	2013-03-16

    Removed old vector layer API (select(), nextFeature(), featureAtId())

Marco Hugentobler 	2013-03-16

    Format number strings with field precision for display in attribute table, attribute dialog and editor

Victor Olaya 	2013-03-15

    [sextante] better behaviour in batch processing interface

Victor Olaya 	2013-03-15

    [sextante] added import check for gdal sieve algorithm

Victor Olaya 	2013-03-15

    [sextante] changed "usergdal" option in R algorithms to "dontuserasterpackage"

Victor Olaya 	2013-03-15

    [sextante] fixes in batch processing interface for #7348

Victor Olaya 	2013-03-15

    [sextante] changed how recent algs group is updated

Victor Olaya 	2013-03-12

    [sextante]added new OTB description

Marco Hugentobler 	2013-03-15

    Fix reading of units from project files before output unit change

Marco Hugentobler 	2013-03-15

    Convert composer entry in project file from 1.8 to 1.9 format for QGIS Server

Merge: 6afd9f4 3b9c688
Marco Hugentobler 	2013-03-15

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 1e30eb0 af1bde9
Marco Hugentobler 	2013-03-15

    Merge branch 'data_defined_symbology'

D'Hont René-Luc 	2013-03-15

    Update the expression geomFromGML2 to geomFromGML

    Like we simplified the QgsOgcUtils class, I simplify the expression with
    renamed geomFromGML2 to geomFromGML.
    This update gives me the ability to debugging geometryFromGML with
    Envelope element.

olivierdalang 	2013-02-23

    - add find by UUID

olivierdalang 	2013-02-20

    Implemented ComposerItem's Uuids

    - uuid are kept on cut/paste, but deleted on import template or copy/paste
    - removed obsolete id reference in QgsComposerLabelWidget

Alexandre Neto 	2013-03-15

    Portugues translations

Martin Dobias 	2013-03-15

    Moved expression to OGC filter code to QgsOgcUtils

Martin Dobias 	2013-03-13

    Moved visitor-based expression -> OGC filter code to QgsOgcUtils

Martin Dobias 	2013-03-13

    Moved creation of expression from OGC filter to QgsOgcUtils

Juergen E. Fischer 	2013-03-14

    hide clear button in filter line edit, when widget is disabled

Juergen E. Fischer 	2013-03-14

    fix #7357

Juergen E. Fischer 	2013-03-14

    fix QgsRasterInterface sip bindings

Alexander Bruy 	2013-03-12

    add icons for new raster tools (thanks, Robert!)

Alexander Bruy 	2013-03-11

    [API] add read/writeXML methods to QgsRasterInterface

Alexander Bruy 	2013-03-11

    [FEATURE] brightness and contrast filter for rasters

Alexander Bruy 	2013-03-14

    fix Export geometry info tool (fix #7354)

Marco Hugentobler 	2013-03-14

    Set combo box maximum for precision <= type length

Alexander Bruy 	2013-03-14

    save used contrast enhancement algorithm in private class member (follow up 5ecb26810a)

Marco Hugentobler 	2013-03-14

    Prevent overshoots with line offsets

Alexander Bruy 	2013-03-14

    update Vector Grid to vector API changes (fix #7322)

Radim Blazek 	2013-03-14

    Identify GetFeatureInfo Url context menu fix

Alexander Bruy 	2013-03-14

    update Random and Regular points tools to API changes (fix #7350)

Alexander Bruy 	2013-01-31

    restore "stretch using current extent" functionality in layer context
    menu (fix #7070)

Marco Hugentobler 	2013-03-14

    OGR typedefs do not seem to be necessary

Juergen E. Fischer 	2013-03-13

    [FEATURE] attribute editing extension
    - allow resetting of fields to NULL by button
    - use user defined date formats in forms, identify results and attribute table
    - add support for date type in postgres provider

Nyall Dawson 	2013-03-14

    Change float to double for calculations

Merge: 032c5f5 239479a
Nyall Dawson 	2013-03-14

    Merge heatmap_fixes branch

D'Hont René-Luc 	2013-03-13

    Simplifying QgsOgcUtils

    After commit 7d66529d7884b73070dbce80b1d4060d841a6933 Add GML3 to
    QgsOgcUtils, I have to simplify this class to only have :
    * geometryFromGML : read GML2 or GML3
    * geometryToGML : create GML2 (as default) or GML3

Marco Hugentobler 	2013-03-13

    Let subsymbols have their own units

Marco Hugentobler 	2013-03-13

    Output units for point pattern and line pattern symbol layers

Marco Hugentobler 	2013-03-13

    Output units for line pattern fill symbollayer

Alexander Bruy 	2013-03-13

    fix Join attributes by location (#7103)

Alexander Bruy 	2013-03-13

    fix Sum line length tool after API changes (fix #7335)

Alexander Bruy 	2013-03-13

    add tooltip to button in sigleband pseudocolor renderer widget
    (addresses #7138)

Alexander Bruy 	2013-03-13

    fix maximum field value calculation in vector layer (addresses #7193)

Marco Hugentobler 	2013-03-13

    Output units for svg fill

Radim Blazek 	2013-03-13

    composer legend width fix, fixes #7099

Nyall Dawson 	2013-03-13

    Use double rather than float when appropriate to improve precision of heatmaps

Marco Hugentobler 	2013-03-13

    Output units for simple fill symbol layer

D'Hont René-Luc 	2013-03-12

    Add GML3 to QgsOgcUtils

    After the commit 969df016bcdbd1ead8a347b7a5d55c8b36db183a Moved GML import/export to a new class: QgsOgcUtils, I decided to add GML3.
    I updated QgsOgcUtils, QGIS WFS Server, and the Python Iterface and I added unit test for GML3.

Radim Blazek 	2013-03-13

    WMS GetFeatureInfo supported formats fix, fixes #7238

Marco Hugentobler 	2013-03-13

    Use OGRSpatialReferenceH instead of void pointer

Merge: bb5c471 96887b8
Nathan Woodrow 	2013-03-12

    Merge pull request #467 from 3nids/immutablefields

    [fix #7332] enables fields edition for newly added layers

Denis Rouzaud 	2013-03-13

    fix #7332

Larry Shaffer 	2013-03-12

    Revert unnecessary disabling of unknown warnings

Larry Shaffer 	2013-03-12

    Add Rotate Feature action to edit menu

Larry Shaffer 	2013-03-12

    Set custom QGIS-style group boxes as default on Mac

    - Mac Qt-style group boxes have issues that need addressed by Qt

Larry Shaffer 	2013-03-06

    Add function to collapsible group box's to fix visual issues during collapse and expand

    - Update QgsCollapsibleGroupBox for basic Mac style

Larry Shaffer 	2013-03-12

    Remove extra horizontal line from composer item properties

    - Suggested by Olivier Dalang

Juergen E. Fischer 	2013-03-13

    german translation update

Merge: a05747c 3b8cbc2
Nyall Dawson 	2013-03-13

    Merge heatmap_fixes branch

Nyall Dawson 	2013-03-13

    Convert radius to a float, not an integer. Fixes heatmaps created with a radius < 1.

Merge: 1164c81 a56c957
Nyall Dawson 	2013-03-13

    Merge branch 'master' into heatmap_fixes

Nyall Dawson 	2013-03-13

    [FEATURE] Add option to select kernel shape (quartic, triangular or uniform) in heatmap plugin

Marco Bernasocchi 	2013-03-12

    fix typedef void *OGR issues

Victor Olaya 	2013-03-12

    [sextante] fixed problem in Split RGB bands algorithm

Victor Olaya 	2013-03-12

    [sextante]fixed #7330

Victor Olaya 	2013-03-12

    [sextante] added multiband check in SAGA algorithms

Marco Hugentobler 	2013-03-12

    Use double instead of qreal also on non-Android

Marco Bernasocchi 	2013-03-12

    fix qreal vs double issues

Marco Bernasocchi 	2012-09-06

    removing obsolete qtmain_android.cpp

Marco Hugentobler 	2013-03-12

    Distance unit for vector field symbol layer

Marco Hugentobler 	2013-03-12

    Emit changed signal in unit combo box slots

Marco Hugentobler 	2013-03-12

    Possibility to specify several output units for font marker and ellipse symbol layers

Marco Hugentobler 	2013-03-12

    Output unit for svg marker

Nyall Dawson 	2013-03-12

    Rename Quantile classifier to 'Quantile (Equal Count)', to aid transitions from MapInfo to QGIS.

Nyall Dawson 	2013-03-12

    Move decay radio widget into advanced group box, and set the default value to 0. This method of controlling the kernel shape is non-standard, and should be achieved instead by giving users a choice of standard kernel functions.

Victor Olaya 	2013-03-11

    [sextante] fixed #7324

Victor Olaya 	2013-03-11

    [sextante] edited GRASS descriptions

Victor Olaya 	2013-03-11

    [sextante] fixed #7318

Juergen E. Fischer 	2013-03-11

    support embedding of spatialite layers on relative paths

Juergen E. Fischer 	2013-03-09

    fix QgsPalettedRasterRenderer sip binding

Juergen E. Fischer 	2013-03-09

    oracle provider: switch to OCICollGetElemArray

Marco Hugentobler 	2013-03-11

    Output unit for simple marker

Sandro Santilli 	2013-03-11

    Rename staged plugin install rules to use dashes, not underscores

    See http://lists.osgeo.org/pipermail/qgis-developer/2013-March/024759.html

Marco Hugentobler 	2013-03-11

    Output units for line decoration symbol layer

Marco Hugentobler 	2013-03-11

    Output units for marker line properties

Larry Shaffer 	2013-03-10

    Fix for #7307, project Save function not correctly adding path to Open Recent Projects menu

    - Did work for Save As.., but not Save
    - Add 5 second timeout for 'Saved project to: ' status bar message for Save and Save As..

Victor Olaya 	2013-03-10

    [sextante] R algorithms now use raster package by default

Victor Olaya 	2013-03-10

    [sextante] improved automated test-creation tools

Victor Olaya 	2013-03-10

    [sextante] added ParameterFile in modeler

Victor Olaya 	2013-03-10

    [sextante] divided v.split in two different modules

Victor Olaya 	2013-03-10

    [sextante] fixed #7297

Marco Hugentobler 	2013-03-10

    Full support for width/offset/dash units in simple line symbollayer

Merge: 0c1faa5 247980b
Nathan Woodrow 	2013-03-10

    Merge pull request #455 from 3nids/immutablefields

    [Feature #6562] add editable option for all edit types

Werner Macho 	2013-03-10

    translation update: gl_ES by Xan

Victor Olaya 	2013-03-10

    [sextante] modifed behaviour of 'log' tab in execution dialog

Victor Olaya 	2013-03-10

    [sextante] fixed #7295

Larry Shaffer 	2013-03-08

    Fix for #7289, add CMake option to enable building with Qt jom (nmake) on Windows

    - Can now compile using NMake with jom directly from QtCreator using MSVC compiler (2008) and OSGeo4W devel libs
    - Make app capable of running from build directory
    - Caveat: may be better way to do it; could have better warning control

Werner Macho 	2013-03-09

    translation update: danish by Jacob

Sandro Santilli 	2013-03-08

    WMS provider: protect from simple redirect loops in GetCapabilities

    See http://hub.qgis.org/issues/3457

Larry Shaffer 	2013-03-08

    Fix for older compilers, like on default Mac setup

Nathan Woodrow 	2013-03-08

    Expose dialog created by QgsAttributeDialog to iface

Radim Blazek 	2013-03-08

    enabled identify results context menu for rasters, zoom to feature, copy feature, copy GetFeatureInfo url

Marco Hugentobler 	2013-03-08

    Fix check state for legend groups restored from project file

Merge: b9f3da6 290f8fd
Nyall Dawson 	2013-03-08

    Merge branch 'master' into heatmap_fixes

Martin Dobias 	2013-03-08

    Moved GML import/export to a new class: QgsOgcUtils

Larry Shaffer 	2013-03-07

    On Mac use Close for quit action (conflicts with app menu's quit action and key sequence)

Larry Shaffer 	2013-03-06

    Keep composer multi-item selection only when Shift is pressed during click

    - Fixes issues where Shift was still registered as pressed when shift click happened outside of view (due to lingering keyboard focus)

Larry Shaffer 	2013-03-07

    Fix #7287, keep composer listings sorted in menus and manager

Werner Macho 	2013-03-07

    translation update: danish by Jacob

Marco Hugentobler 	2013-03-07

    Separate units for line width, line offset, dash pattern

Merge: 90b66dc 0b6fcda
volaya 	2013-03-07

    Merge pull request #462 from MatMatt/master

    [sextante] R scripts can now have empty lines

Matteo Mattiuzzi 	2013-03-07

    R-scripts can have up to 10 consecutive empty lines before the parser exits

Merge: 0a25aad 7db1b60
mhugent 	2013-03-06

    Merge pull request #454 from Oslandia/atlas

    refs #7263

olivierdalang 	2013-03-01

    change "paste in place" shortcut to ctrl+shift+V

olivierdalang 	2013-02-26

    [Feature] Paste in place in the composer using ctrl+alt+v.

Marco Hugentobler 	2013-03-07

    Modify testqgsscalecombobox to match modified behaviour of QgsScaleComboBox

Nyall Dawson 	2013-03-07

    Automatically set the projection on output raster to match input layer

Nyall Dawson 	2013-03-06

    Refactor to avoid creating multiple QgsDistanceArea objects and recalculation of static or unused variables. Results in massive speed increase and fixes #6756, #6691 and #6692.

Victor Olaya 	2013-03-06

    [sextante] fixed #7251

Victor Olaya 	2013-03-06

    fixed #7277

Victor Olaya 	2013-03-01

    [sextante] improvements in test tools

Denis Rouzaud 	2013-03-06

    switched default and ok arguments

Denis Rouzaud 	2013-03-06

    Added default value argument for readEntryList

Martin Dobias 	2013-03-06

    Improved support for parsing of GML2, added some autotests

Martin Dobias 	2013-03-05

    Map layer registry: un-deprecated addMapLayer(), added removeMapLayer() for convenience

Martin Dobias 	2013-03-05

    Added option to load newly exported OpenStreetMap layer to canvas

Martin Dobias 	2013-03-05

    Define OpenStreetMap actions in .ui file and make Vector menu permanent

Merge: 2f53505 6d1eb26
Nathan Woodrow 	2013-03-05

    Merge pull request #448 from szekerest/master

    MSSQL Fixes (Fix #6733 and Fix #7254)

szekerest 	2013-03-05

    Fix the behaviour of the trusted connection checkbox (#6262)

Werner Macho 	2013-03-05

    translation update: romanian language

Merge: a976ecb ba91c8f
Nathan Woodrow 	2013-03-04

    Merge pull request #458 from 3nids/respectUIimmutableoption

    respect the disabled option defined in the UI file

Denis Rouzaud 	2013-03-05

    respect the disabled option defined in the UI file

Denis Rouzaud 	2013-03-05

    keep coding consistent

Merge: 7c0746b b4aaa19
Nathan Woodrow 	2013-03-04

    Merge pull request #457 from nyalldawson/gradfixes

    Allow long/bigint columns to be used for graduated symbology (Fix #4593)

Nyall Dawson 	2013-03-05

    Allow long/bigint columns to be used for graduated symbology (#4593)

Merge: ea0c87e 58a7edb
Nathan Woodrow 	2013-03-04

    Merge pull request #453 from nyalldawson/gradfixes

    Don't treat null values as zero for graduated symbology (Fix #6096)

Larry Shaffer 	2013-03-03

    Fix #7195, transparency options in composer should be 0-100%

Denis Rouzaud 	2013-03-04

    [FEATURE] add editable option for all edit types

Hugo Mercier 	2013-03-04

    refs #7263
    refs #6856
    Reset QPrinter to circumvent PDF corruption bug

Juergen E. Fischer 	2013-03-04

    30c7ec40 also applies to mingw

Marco Hugentobler 	2013-03-04

    Consider avoid intersection settings when pasting features

Nyall Dawson 	2013-03-04

    Use isNull() to test for null attribute values

Nyall Dawson 	2013-03-04

    Use isEmpty() to test for null values

Nyall Dawson 	2013-03-04

    Don't treat null values as zero for graduated symbology

Juergen E. Fischer 	2013-03-03

    german translation update

Larry Shaffer 	2013-03-03

    Remove redundant subheaders for composer panels with appropriate titles

dakcarto 	2013-03-02

    Set minimum width for composition and item properties panels in composer

Larry Shaffer 	2013-03-02

    Fix for #7194, tabs partially shown for composer panels

    - All newly designed panels reworked to ensure smallest reasonable width

Larry Shaffer 	2013-03-02

    Fix missing SVG previews for existing composer picture item

    - Previews now load when picture is first selected and its properties are shown (unless already loaded)
    - NOTE: the loading of SVGs per QListWidget per picture should be replaced with a model/view per composer, or something cached
    - Combobox no longer over-expands width of dock widget when it contains long paths

Larry Shaffer 	2013-03-02

    Fix Qt connection error

Juergen E. Fischer 	2013-03-02

    fix debian builds

Larry Shaffer 	2013-03-01

    Fix composer window activations on Windows and Ubuntu

Larry Shaffer 	2013-03-01

    Update Composer Manager's template functionality

    - Add specific template path support
    - Add user templates directory support
    - Add buttons to open user or default template directory
    - Add selection of list item for newly added composers
    - Update GUI with collapsible group box
    - Use unique title dialog for composer rename function

Juergen E. Fischer 	2013-03-01

    fix #7255 - any editing capability should enable toggle editing

Marco Hugentobler 	2013-03-01

    Fix WMS filter request with new API (ticket 7258)

Merge: 54f3e0a 735577d
volaya 	2013-03-01

    Merge pull request #442 from MatMatt/master

    [sextante]set package used when writing in case of #passfilenames

Merge: 4baba76 cc239b2
Nathan Woodrow 	2013-03-01

    Merge pull request #449 from nyalldawson/grad_fixes

    Fix calculation of graduated symbology breaks (Fix #7256)

Denis Rouzaud 	2013-03-01

    Do not wait for feature form closing for non-editable layers

szekerest 	2013-03-01

    MSSQL: Fix for handling spatial tables with no FID columns (#7254)

Martin Dobias 	2013-03-01

    Fix SpatiaLite 3.0 support

Juergen E. Fischer 	2013-03-01

    downgrade plugin load message from WARNING to INFO

Juergen E. Fischer 	2013-03-01

    fix windows build

Nyall Dawson 	2013-03-01

    Fix calculation of graduated symbology breaks

Larry Shaffer 	2013-02-28

    Add SPATIALITE_INCLUDE_DIR to include directories in analysis cmakelists for new OSM support

Larry Shaffer 	2013-02-28

    Add New from Template to composer's Composer menu

    - Show busy indicator dialog while template is loading into hidden composer (much faster loading)
    - Clean up composer actions' text (title capitalize action text, sentence capitalize tool tips)

Juergen E. Fischer 	2013-03-01

    show values of unknown wkbtypes when rendering

Larry Shaffer 	2013-02-28

    Add new, duplicate and delete composer to iface

    - Works via QgsComposerView, which is already exposed in iface

Martin Dobias 	2013-02-28

    Old unmaintained OpenStreetMap support is dead. Long live new OpenStreetMap support!

Juergen E. Fischer 	2013-02-28

    german translation update

Juergen E. Fischer 	2013-02-28

    indentation update

Martin Dobias 	2013-02-23

    Add file headers, do not report error in case there are no spatial tables in SpatiaLite database

Martin Dobias 	2013-02-23

    [FEATURE] new OpenStreetMap data access API and GUI

    The idea is to replace the current OSM provider+plugin by this new code. Differences from old code:
    - read-only access - without editing and upload support
    - no special provider (using SpatiaLite provider)
    - underlying OSM topology accessible from API
    - download using Overpass API: fast, customizable, nearly unlimited download
    - OSM XML files have to be first imported to a Sqlite3 database, then SpatiaLite layers can be exported

Martin Dobias 	2013-01-27

    OSM provider: make the looooooooooong lines that create triggers actually readable

szekerest 	2013-02-28

    MSSQL: Fix for reading 3D geometries (#6733)

olivierdalang 	2013-01-21

    Updated icons for gis theme

    - added rotate feature icon
    - changed add label action icon
    - added offset curve action
    - added add html (composer) icon

Merge: 13b362e 62e6b13
Larry Shaffer 	2013-02-28

    Merge pull request #435 from Oslandia/atlas

    [Atlas] Fix UI to be consistent with the use of QgsCollapsibleWidgets

Juergen E. Fischer 	2013-02-28

    avoid gdalconst deprecation warning

Merge: 4f397f2 7316701
Martin Dobias 	2013-02-28

    Merge pull request #446 from matthias-kuhn/diag-py-bindings

    Make diagram renderer (python bindings) more stable

Juergen E. Fischer 	2013-02-28

    wms provider: also accept application/octet-stream as image content type

Matthias Kuhn 	2013-02-28

    Make diagram renderer (python bindings) more stable

Marco Hugentobler 	2013-02-28

    Handle plain/regexp mode for delimited text provider same as for preview

Amit Kulkarni 	2013-02-21

    add old/new scale comparison and emit scaleChanged only if new scale is different than old.

Merge: 84db88b f5d81ae
Nathan Woodrow 	2013-02-27

    Merge pull request #445 from szekerest/master

    MSSQL: Fix for the problem with the length of the numeric fields (Fix #7249)

szekerest 	2013-02-27

    MSSQL: Fix for the problem with the length of the numeric fields (#7249)

Larry Shaffer 	2013-02-27

    Rename QgsComposer::progressDialog

    - It's a busy indicator that doesn't track operation progress

Larry Shaffer 	2013-02-26

    Hide new composer when duplicating (loading template) as it is faster

    - Show busy indicator dialog
    - Add busy indicator dialog method to QgsComposer

Merge: 7267c6e af3245b
Werner Macho 	2013-02-27

    Merge pull request #444 from SrNetoChan/master

    Some translation changes to PT-pt

Victor Olaya 	2013-02-27

    [sextante] fixed PointsInPolygonWeighted and PointsLayerFromTable algorithms

Alexandre Neto 	2013-02-26

    Some translations

Larry Shaffer 	2013-02-26

    Add shift-click modifier to QgsCollapsibleGroupBox

    - Expands current group box on shift-click, then collapses any others in sync group

Larry Shaffer 	2013-02-26

    Avoid crash where composer is deleted after spawning modal composer manager

Larry Shaffer 	2013-02-25

    Add unique title input dialog for new and duplicate composers

    - Allows user to title composer before creation (optionally based on existing composer titles)
    - Helps limit duplicate titles
    - Non-GUI generation of new and duplicate composers not restricted (unchanged)
    - Duplicate composer slot now free of GUI interruptions
    - Change from hiding of duplicate composer (during template loading) to pausing updates to give user feedback

Hugo Mercier 	2013-02-26

    Revert "[Atlas] Replace QgsCollapsibleGroupBoxBasic by QgsCollapsibleGroupBox (add auto-save collapsilble states)"

    This reverts commit 56e9fb3eba0dfaf8f02bb2ccb66eb0218066a8f3.

Marco Hugentobler 	2013-02-26

    Reject features with empty geometry in QgsMapToolAddFeature

Matteo Mattiuzzi 	2013-02-26

    now passFileNames uses raster in case of writing.
    raster:::writeRaster supports any gdal formats (passFileNames and useRasterPackage)
    and some other changes

Marco Hugentobler 	2013-02-26

    Fix placement of simple markers in cached images

Victor Olaya 	2013-02-26

    [sextante] fixed wrong import

Larry Shaffer 	2013-02-25

    [sextante] fix typo

Victor Olaya 	2013-02-25

    [sextante] deleted problematic help files

Victor Olaya 	2013-02-25

    [sextante]modified problematic headers

Merge: 148e7e1 aa4b291
volaya 	2013-02-25

    Merge pull request #440 from MatMatt/master

    [sextante] changed R command .libPaths to add and not substitute paths

Werner Macho 	2013-02-25

    forgot rest of the files ;) now adding translator and adjusted scripts

Werner Macho 	2013-02-25

    added first malayam language commit. translator assumed and flag added

Matteo Mattiuzzi 	2013-02-25

    changed the R command behavior .libPaths() in RAlgorithm.py to add a .lib.loc and not substitute one
    modifies the Advanced_Raster_histogramm.rsx in order to fully benefit from raster package RAM savety

Merge: f85d3ae 79d5fb3
volaya 	2013-02-25

    Merge pull request #439 from mach0/master

    Added html help files to be installed in doc directory for OTB help

Werner Macho 	2013-02-25

    added help files in doc subdirectory to be installed

Merge: 5ac7d03 cfb56a2
volaya 	2013-02-25

    Merge pull request #438 from MatMatt/master

    [sextante] added quotation marks to make passFileNames work.

matteo 	2013-02-25

    added quotation marks to make passFileNames work

Hugo Mercier 	2013-02-25

    [Atlas] Replace QgsCollapsibleGroupBoxBasic by QgsCollapsibleGroupBox (add auto-save collapsilble states)

Merge: 34e6b9a 9517c0e
Hugo Mercier 	2013-02-25

    Merge pull request #1 from dakcarto/atlas-ui

    [Atlas] Update spacing for atlas panel

Larry Shaffer 	2013-02-22

    [FEATURE] Add duplicate function to composer manager and composer ui

    - Addresses feature request #7203
    - Add actions to composer that trigger main app's, instead of referencing
    - Allows Ctrl(Cmd)-P to initiate printing (instead of a new composer)
    - Allows Ctrl(Cmd)-N to create new composer
    - Use new templateXML function when saving composer template

Victor Olaya 	2013-02-24

    [sextante]Replaced provider.crs() by layer.crs(). Fixed memory layer usage

Victor Olaya 	2013-02-24

    [sextante]deleted ftool_utils

Victor Olaya 	2013-02-24

    [sextante] added autofilling on double-click in batch processing dialog
    Other minor changes

Victor Olaya 	2013-02-24

    [sextante]Changed how SAGA installation is checked

Victor Olaya 	2013-02-23

    [sextante] improved handling of ParameterCrs

Victor Olaya 	2013-02-23

    [sextante] minor changes in algorithms and some code cleaning

Victor Olaya 	2013-02-23

    [sextante] changes in R interface

Victor Olaya 	2013-02-22

    [sextante] added new modeler-only tools

Victor Olaya 	2013-02-21

    [sextante] changed statisticByCategories, so now it does not depend on external libs

Victor Olaya 	2013-02-21

    [sextante]Improvements in batch processing interface and in the simplified toolbox organization

Victor Olaya 	2013-02-21

    [sextante] commented out loadfromDict method

Victor Olaya 	2013-02-21

    [sextante] changed saga cmdname method and modified merge raster algorithm description

Werner Macho 	2013-02-24

    small help file change

Werner Macho 	2013-02-23

    adding some licenses and copyrights to sextante

Nathan Woodrow 	2013-02-23

    Replace saving done dialog with message bar

Larry Shaffer 	2013-02-22

    Fix #6184, canvas doesn't refresh after pasting layer style

Larry Shaffer 	2013-02-22

    [Atlas] Update spacing for atlas panel

Hugo Mercier 	2013-02-22

    [Atlas] Fix UI to be consistent with the use of QgsCollapsibleWidgets

Merge: 857f849 8176da0
Jürgen Fischer 	2013-02-21

    Merge pull request #433 from 3nids/pg_hstore

    added hstore and inet fields to postgres provider

Juergen E. Fischer 	2013-02-22

    da60fe fixes #7071

Juergen E. Fischer 	2013-02-22

    block vector layer signals when updating attribute values from field calculator (fixes #7190)

Juergen E. Fischer 	2013-02-22

    german translation update

Marco Hugentobler 	2013-02-21

    Some wfs servers don't like srsname in DescribeFeatureType request (ticket #5241)

Marco Hugentobler 	2013-02-21

    Remove namespace prefix from typename in QgsGml

Werner Macho 	2013-02-21

    adding some function help files for field calculator, thanks to Zoltan Siki

Larry Shaffer 	2013-02-20

    Fix duplication of main app's Window and Help menu to composers for Mac

Larry Shaffer 	2013-02-21

    Followup to be3bad3

    - Simpler means of bringing composer windows to front, if manager dialog is going to be closed

D'Hont René-Luc 	2013-02-21

    WGIS WFS Server : GeoJSON Fid has to be a String

    Adding "\"" befaore and after the fid for the GeoJSOn format.

Denis Rouzaud 	2013-02-21

    added hstore and inet fields to postgres provider

Juergen E. Fischer 	2013-02-21

    debian packaging update

Marco Hugentobler 	2013-02-21

    Protect point and line pattern symbol layer from eating too much memory

Juergen E. Fischer 	2013-02-20

    fix debian builds

Alexander Bruy 	2013-02-21

    Make "Layer - New" accesible from QgsInterface, update GPS importer
    plugin (fix #7202)

Alexander Bruy 	2013-02-21

    different icons for GPS importer and Create new GPX layer (fix #6860)

Larry Shaffer 	2013-02-20

    Add Print Composers submenu to new Composer menu in composer

    - Remove QgisApp::instance() usage in favor of already available passed in pointer to QgisApp

Marco Hugentobler 	2013-02-20

    Fix WFS loading with geoserver layers

Merge: 6355e9b ad7deec
Jürgen Fischer 	2013-02-20

    Merge pull request #432 from matthias-kuhn/fix-vector-layer-signals

    Fix: emit committedFeaturesAdded and committedFeaturesRemoved

Larry Shaffer 	2013-02-20

    Run prepare-commit on qgscomposer.cpp

Larry Shaffer 	2013-02-20

    Add binding to iface for action to show composer manager

Larry Shaffer 	2013-02-20

    Add New and Manager actions to new Composer menu in composer

Matthias Kuhn 	2013-02-20

    Fix: emit committedFeaturesAdded and committedFeaturesRemoved

Larry Shaffer 	2013-02-20

    Fix #7196, composer manager doesn't close when showing a chosen composer

    - Fix zoom-to-full when composer window is shown

Marco Hugentobler 	2013-02-20

    Implement moving of snapped features together with the snap line

Marco Hugentobler 	2013-02-20

    Improve handling of snap lines

Alexander Bruy 	2013-02-20

    attempt to fix crash when changing symbols in graduated renderer

Nathan Woodrow 	2013-02-20

    Updates to composer window

    - Split composer toolbar into many
    - Rename File menu to Composer - because the composer isn't a "file"

Larry Shaffer 	2013-02-19

    Fix crash when loading a project that hits a group box with 'collapse' set

Juergen E. Fischer 	2013-02-19

    german translation update

Juergen E. Fischer 	2013-02-19

    debian packaging fix

Juergen E. Fischer 	2013-02-19

    Make QSPATIALITE optional, but still include it in osgeo4w and debian package

Juergen E. Fischer 	2013-02-19

    [FEATURE] postgres provider: optionally skip columns without geometry type constraint

Marco Hugentobler 	2013-02-19

    Fix copy paste bug

Marco Hugentobler 	2012-12-24

    Compute min/max on demand in gdal provider

Larry Shaffer 	2013-02-19

    Add available sql drivers to Mac bundled app

Sandro Santilli 	2013-02-19

    Revert "Enable topological editing on first TopoGeometry layer creation"

    This reverts commit edecf385fddd7d166e134023057998612af6ad58.

    The correct way to do this is by hooking on the editingStarted slot
    (thanks jef for pointing that out)

Marco Hugentobler 	2013-02-19

    Snap to arbitrary snap lines

Sandro Santilli 	2013-02-19

    Enable topological editing on first TopoGeometry layer creation

    I'm not sure this is an acceptable behavior, but I'm sure users
    do want to edit TopoGeometry layers in a topological way.
    The problem with this implementation is that topological editing
    is enabled for editing of every layer, not just the TopoGeometry
    one.

Larry Shaffer 	2013-02-15

    Update composer ui files

    - Add section headers (should be moved to app stylesheet, and custom label or container class made)
    - Enable map grid group box (was disabled)
    - Reformat all form layouts to look like rest of app (more grid layout-like, with labels left-aligned and growing entry fields)
    - Re-layout map extents group box
    - Expand more group boxes by default (increases discovery)

Larry Shaffer 	2013-02-14

    Fix some compiler warnings

olivierdalang 	2013-02-13

    replaced "opacity" by "transparency" in the composer GUI

olivierdalang 	2013-02-14

    Add syncGroup to CollapsibleGroupBoxes

olivierdalang 	2013-02-12

    Update of composer item's GUI

Larry Shaffer 	2013-02-15

    Updates to QgsCollapsibleGroupBoxBasic

    - Use title instead of checkbox to define QgsCollapsibleGroupBox offset
    - Fix error when group box has form layout with QPushButtons that refuse to fully hide
    - Update vertical offsets for Ubuntu
    - Add control-click modifier and tool tip for toggling all collapsible group boxes
    - Ensure disclosure triangle mirrors enabled state of group box

Juergen E. Fischer 	2013-02-19

    fix #7179

Werner Macho 	2013-02-19

    added malayalam language on request

Merge: dc074b3 7717aee
Larry Shaffer 	2013-02-18

    Merge pull request #418 from dakcarto/cmake_stagedplugins-optmz_2

    Update stage-installed plugins CMakeLists.txt

Marco Hugentobler 	2013-02-18

    Always use topological editing if using avoid intersection (where possible also to background layers). Without topological editing, it is possible to have very small gaps between the polygons

Marco Hugentobler 	2013-02-18

    Show snap lines in ruler mouse move event

Juergen E. Fischer 	2013-02-18

    fix build with older Qt

Alexander Bruy 	2013-02-18

    fix imports (addresses #7176)

Alexander Bruy 	2013-02-18

    disable SEXTANTE algorithms that require 3rd party Python modules

Alexander Bruy 	2013-02-18

    add CMakeLists.txt to SEXTANTE tools directory

Marco Hugentobler 	2013-02-18

    Improve coordinate display

Juergen E. Fischer 	2013-02-18

    debian packaging fix

Werner Macho 	2013-02-18

    new language file on request: welcome Cambodia

Alexander Bruy 	2013-02-18

    add missed directory to CMakeLists.txt
    disable StatisticsByCategories algorithm because it requires 3rd party
    Python module scipy

Juergen E. Fischer 	2013-02-18

    fix #7172

Victor Olaya 	2013-02-17

    [sextante] added tools to ease creating unit test for algorithms

Victor Olaya 	2013-02-17

    [sextante] improved toolbox and modeler to better use classification by categories (easy mode)

Victor Olaya 	2013-02-17

    [sextante]minor fixes and added new R script examples

Victor Olaya 	2013-02-17

    [sextante] Log file is now read backwards and limited to a fixed number of lines

Victor Olaya 	2013-02-16

    cleaned SEXTANTE/SAGA algorithms

Victor Olaya 	2013-02-16

    addded new SEXTANTE python algorithms

Victor Olaya 	2013-02-16

    improved management of tables in SEXTANTE

Juergen E. Fischer 	2013-02-17

    fix #7172 and #7174

Juergen E. Fischer 	2013-02-17

    [FEATURE] add qspatialite sql driver plugin

Marco Hugentobler 	2013-02-17

    Consider multiple pages for ruler scale

Marco Hugentobler 	2013-02-17

    Store reference to composition in ruler to get page info

Radim Blazek 	2013-02-17

    WMS identify format preference order: Html,Feature,Text

Radim Blazek 	2013-02-17

    Html identify result print fix

Juergen E. Fischer 	2013-02-17

    fix #7171

Juergen E. Fischer 	2013-02-16

    also optionally apply SHAPE_ENCODING to layer creation (fixes #5911)

Arunmozhi 	2013-02-16

    added searching of colorramps in style manager

Juergen E. Fischer 	2013-02-15

    fix #7160

Juergen E. Fischer 	2013-02-15

    quote closing parens within column names (fixes #7159)

Merge: c1527af 2e84efa
mhugent 	2013-02-15

    Merge pull request #428 from schmandr/master

    Add support for 1bit PNG format to QGIS Server WMS

Andreas Schmid 	2013-02-15

    Add support for 1bit PNG format to QGIS Server WMS

Alexander Bruy 	2013-02-15

    also fix loading checkbox state from settings

Alexander Bruy 	2013-02-15

    fix handling of TAB delimiter in delimited text plugin

Marco Hugentobler 	2013-02-14

    Show ruler marker for cursor position

Marco Hugentobler 	2013-02-14

    Better placement for y-coordinate labels

Marco Hugentobler 	2013-02-14

    Read composer from xml considers rulers

Marco Hugentobler 	2013-02-14

    Fix calculation of ruler y-coordinates

Marco Hugentobler 	2013-02-14

    Don't draw view frame (alignment with ruler widgets)

Juergen E. Fischer 	2013-02-14

    ocispatial: require OCI library

Larry Shaffer 	2013-02-13

    Add collapse toggling synchronization on Alt-click of title to QgsCollapsibleGroupBoxBasic

Juergen E. Fischer 	2013-02-13

    fix windows build

Larry Shaffer 	2013-02-11

    Make measure tool dialogs stay on top of other windows during operation

    - Not tested with X11, may need Qt::X11BypassWindowManagerHint too

Larry Shaffer 	2013-02-12

    Add collapse toggling synchronization to QgsCollapsibleGroupBoxBasic

    - Holding Alt modifier key when toggling collapsed state will synchronize the toggling across other boxes with the same syncGroup QString value
    - Synchronizes boxes of same syncGroup via recursive search in parent or grandparent widget (if grandparent is not QgisApp)

Merge: 8e11e5f 42dad85
mhugent 	2013-02-12

    Merge pull request #427 from matthias-kuhn/rubberband-doc

    Documentation update for QgsRubberband

Matthias Kuhn 	2013-02-12

    Documentation update for QgsRubberband

Merge: b45d8cb d1a05f7
mhugent 	2013-02-12

    Merge pull request #422 from Oslandia/atlas

    Feature sorting and filtering for atlas generation

Marco Hugentobler 	2013-02-12

    Snap to paper items and consider multipage compositions when showing snap lines

Larry Shaffer 	2013-02-11

    Split QgsCollapsibleGroupBox into basic class and subclass that auto-saves collapsed state

    - Split authored by Etienne Tourigny
    - Add Q_PROPERTY declarations to make some class properties settable for promoted widget in QtDesigner (by Olivier Dalang)
    - Update existing .ui files with dynamic properties (but not saveCheckedState, which should be cautiously used)
    - Update sip file so both classes are available

Alexander Bruy 	2013-02-11

    missed comma

Alexander Bruy 	2013-02-11

    fix issues with non-ASCII filenames in GDALTools, thanks to Evgenia for
    pointing on this problem

Larry Shaffer 	2013-02-10

    Use new vector edit macro support to batch Show/Hide Label tool's operation

Larry Shaffer 	2013-02-10

    Limit canvas redraws when working with vector layer undo stack

    - Fix unreported bug where clicking on group in legend would clear previously selected vector layer's undo stack
    - Ensure empty view is created on project load (cosmetic)

Larry Shaffer 	2013-02-10

    Update vector layer edits rollback method and app rollback actions

    - Make optional whether edit buffer is deleted
    - Returns optional functionality where rollback was similar to setting undo stack to index 0

Juergen E. Fischer 	2013-02-10

    [FEATURE] allow filter expressions in value relations (and fix display of related values and value maps in attribute table)

Juergen E. Fischer 	2013-02-10

    german translation update

Juergen E. Fischer 	2013-02-10

    wms: improve xsd/gml detection on getfeatureinfo

Juergen E. Fischer 	2013-02-10

    wms: catch service exception on GetFeatureInfo and use feature extent if there's no geometry

Juergen E. Fischer 	2013-02-09

    fix #7125

Larry Shaffer 	2013-02-09

    Add option to show canvas refresh event in Log Message panel

    - In Options at bottom of Rendering tab
    - Useful for debugging excessive refreshes from userspace without having to build with debug and filter logs
    - Records time taken for refresh and any resolvable sender class

Juergen E. Fischer 	2013-02-09

    ftools api update (fixes #7130)

Merge: 5967db9 8303a47
Giuseppe Sucameli 	2013-02-09

    Merge pull request #424 from slarosa/fix_rubber_band_python_plugins

    Fixes rubberBand for extent selection in gdal_clipper and sextante algs

Larry Shaffer 	2013-02-08

    Fix Show/Hide Labels to allow NULL values in table to work for show value

Larry Shaffer 	2013-02-08

    Update QgsMapToolShowHideLabels to work with new vector api

    - Works now, but should have worked before this fix

Salvatore Larosa 	2013-02-08

    Fixes rubberBand for extent selection in gdal_clipper and sextante algs

Marco Hugentobler 	2013-02-08

    Better approach to split lines. Fixes bug #4618

Juergen E. Fischer 	2013-02-08

    fix windows build

Larry Shaffer 	2013-02-07

    Add images/theme_originals directory

    - Helps with conversion of interface graphics to SVG

Radim Blazek 	2013-02-08

    GML GetFeatureInfo XSD validation, disabled

Victor Olaya 	2013-02-07

    better raster support in R/SEXTANTE

Victor Olaya 	2013-02-07

    more fixes in python sextante algorithms

Victor Olaya 	2013-02-07

    fixed #7116

Larry Shaffer 	2013-02-07

    Fix typo in QgsPalLabeling

Larry Shaffer 	2013-02-06

    Update QgsPalLabeling to work with new vector api

    - Switch data defined properties from field index- to name-based
    - Add routine to migrate properties to new keys:  labeling/dataDefined/[enum name]
    - Add QHash containing old-style data provider mapping of index to name for use in properties migration
    - Update QgsLabelingGui, QgsMapToolLabel, QgsLabelPropertyDialog to work with name-based properties

Merge: 863da7d d97f05e
Radim Blazek 	2013-02-07

    Merge remote branch '3nids/maptoolidentify_returnresults'

Marco Hugentobler 	2013-02-07

    Improve performance of vector reprojection by transforming the coordinates of a feature together

Juergen E. Fischer 	2013-02-07

    postgres provider: only record active iterator, when it's open (fixes crash on labeling non-existing attributes)

Denis Rouzaud 	2013-02-07

    fix SLOT

Juergen E. Fischer 	2013-02-07

    fix warning

Denis Rouzaud 	2013-02-07

    unifying identify results in a single struct

Denis Rouzaud 	2013-02-07

    updated class name

Denis Rouzaud 	2013-02-05

    return results directly from the identify method instead of using a private attribute

Hugo Mercier 	2013-02-07

    [Atlas] Replace the sort direction combobox by a up/down button

Juergen E. Fischer 	2013-02-07

    indentation update

Juergen E. Fischer 	2013-02-07

    ftools api updates

Victor Olaya 	2013-02-06

    added explicit CRS checking in sextante algorithms

Victor Olaya 	2013-02-06

    fixed bug in mmqgis/ftools algs in sextante after adaptation to new vector api

Hugo Mercier 	2013-02-06

    [Atlas] Fix minor UI behaviour

Hugo Mercier 	2013-02-06

    [Atlas] Add i18n to error messages

Hugo Mercier 	2013-02-06

    [Atlas] Restore painting on error return

Radim Blazek 	2013-02-06

    QgsMapToolIdentifyAction cleanup

Merge: 81d865a ec634a2
Nathan Woodrow 	2013-02-06

    Merge pull request #413 from olivierdalang/labelCanDisplayHtml

    [Feature] add HTML capabilities to composer labels

Merge: 50d4bb6 b642722
Nathan Woodrow 	2013-02-06

    Merge pull request #408 from olivierdalang/showBackgroundCheckboxForComposerItem

    [feature] added draw background checkbox in composer items
    Fix #6389

Radim Blazek 	2013-02-06

    WMS identify feature support - get vector features from GML GetFeatureInfo

Hugo Mercier 	2013-02-06

    [Atlas] Add Python unit tests for feature sorting and filtering

Hugo Mercier 	2013-02-06

    [Atlas] Add SIP bindings for feature sorting and filtering

olivierdalang 	2013-02-06

    added a kind of oversampling for labels when rendered as HTML

Juergen E. Fischer 	2013-02-06

    also verify wkbSize in QgsGeometry::exportToWkt

Hugo Mercier 	2013-02-06

    [Atlas] Add unit tests for sorting and filtering

Hugo Mercier 	2013-02-06

    [Atlas] Add better exception handling

Hugo Mercier 	2013-02-06

    [Atlas] Add UI management for feature sorting and filtering

Hugo Mercier 	2013-02-05

    [Atlas] Add feature sorting and filtering

Hugo Mercier 	2013-02-05

    [Atlas] Remove cout

olivierdalang 	2013-02-06

    rechange the basic resolution

olivierdalang 	2013-02-06

    Set html's background to transparent

olivierdalang 	2013-02-06

    changed tab width of QPlainTextEdit in QComposerLabelWidget (easier to read for html)

Juergen E. Fischer 	2013-02-06

    fTools: fix add/export geometry columns

Marco Hugentobler 	2013-02-05

    Fix ticket #5584 (crash saving empty geometry)

Juergen E. Fischer 	2013-02-05

    fix warning

Marco Hugentobler 	2013-02-05

    Fix double redraw after applying vector properties

Nathan Woodrow 	2013-02-05

    Add GUI_EXPORT to identify map tool

Denis Rouzaud 	2013-02-04

    remove useless funcs from sip

Denis Rouzaud 	2013-01-25

    MapToolIdentify moved to gui to make it accessible in python

    put back convertMeasurement in gui as it is not app specific

    use display settings for specific app units

Juergen E. Fischer 	2013-02-05

    fix warning

Victor Olaya 	2013-02-04

    Finished adapting sextante python algorithms to new vector API
    Some code cleaning

Marco Hugentobler 	2013-02-04

    Show more verbose error message (ticket #7095)

Merge: 93dbfd7 8a880ca
Victor Olaya 	2013-02-04

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2013-02-04

    started adapting sextante to new vector api

Juergen E. Fischer 	2013-02-03

    use CMAKE_*_FLAGS also on unix

Juergen E. Fischer 	2013-02-03

    more fTools api updates

Juergen E. Fischer 	2013-02-03

    debian packaging fix

Juergen E. Fischer 	2013-02-03

    german translation fix

Larry Shaffer 	2013-02-03

    Update stage-installed plugins CMakeLists.txt

Merge: dc340de 1095f98
Victor Olaya 	2013-02-03

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2013-02-03

    edited some SAGA/GRASS algorithm description in SEXTANTE

Victor Olaya 	2013-02-03

    Minor SEXTANTE changes

Victor Olaya 	2013-02-03

    improvements in SEXTANTE modeler

Larry Shaffer 	2013-01-24

    Add option to use custom QSettings for QgsCollapsibleGroupBox

    - Useful for plugins that may want to store collapsed state in their own QSettings file

Larry Shaffer 	2013-02-02

    Fix build error under clang on Mac

    - Remove APPLE_CLANG_WARNINGS option
    - Add warnings via flags instead of definitions

Juergen E. Fischer 	2013-02-03

    debian packaging update

Juergen E. Fischer 	2013-02-02

    more api updates in ftools

Juergen E. Fischer 	2013-02-02

    fix warnings brought up by clang

Juergen E. Fischer 	2013-02-02

    remove usage of deprecated methods within QgsVectorLayer itself

Larry Shaffer 	2013-02-01

    Add CMake option whether to show extra warnings from clang on Apple

    - Set APPLE_CLANG_WARNINGS:BOOL=FALSE to not show extra warnings (TRUE by default)

Larry Shaffer 	2013-02-01

    Make sure QtTest gets bundled on Mac, if ENABLE_TESTS is set

    - Was configured, but wan't being triggered

Etienne Tourigny 	2013-02-01

    [API] restore QgsMapLayerRegistry::addMapLayer() but keep it deprecated

Juergen E. Fischer 	2013-02-01

    fTools: fix error basic statistics

Alexander Bruy 	2013-02-01

    first fix for new vector api in SEXTANTE

Juergen E. Fischer 	2013-02-01

    first take on porting ftools to vector iterator api

ddehaan 	2013-01-31

    Copyright updates; Add headers to feature iterator

Juergen E. Fischer 	2013-01-31

    debian packaging fix: quantal and raring also use dh_python2

Juergen E. Fischer 	2013-01-31

    include stack trace in logged python warning messages

Juergen E. Fischer 	2013-01-31

    fix warnings

Alexander Bruy 	2013-01-31

    clear cached image for raster layers when applying contrast enhancement
    from raster toolbar (fix #7069)

Juergen E. Fischer 	2013-01-31

    debian packaging update

Merge: a396613 3b29fad
Nathan Woodrow 	2013-01-31

    Merge pull request #416 from szekerest/master

    Update MS SQL driver to new vector API

Alexander Bruy 	2013-01-31

    update russian python console help translation

Merge: 859854f c728ea4
Werner Macho 	2013-01-30

    Merge pull request #415 from gioman/master

    Some translations for the pt_PT GUI.

Larry Shaffer 	2013-01-30

    Update project file opening precedence order at app launch

    - Fix typo so default template on new project works
    - Project open precedence order is (highest first):
    -  1) specified on command line
    -  2) specified or most recent via Options gui
    -  3) new project from template
    -  4) new blank project
    - Keep new project template from loading in app constructor (in case already project via command line)
    - Keep new project template from loading if previous auto-open project crashed
    - Add status bar messages about loading project during addProject()

Giovanni Manghi 	2013-01-31

    Some translations

Juergen E. Fischer 	2013-01-31

    OGR style support only with GDAL >=1.7

Juergen E. Fischer 	2013-01-30

    fix QgsSqlAnywhereProvider::attributeIndexes()

Juergen E. Fischer 	2013-01-30

    debian packaging: reenable sqlanywhere provider

Juergen E. Fischer 	2013-01-30

    fix attribute mapping in vector layer import

ddehaan 	2013-01-29

    Update SQLAnywhere data provider to the new API.

Juergen E. Fischer 	2013-01-30

    fix attribute table for new vector api

szekerest 	2013-01-30

    Rework mssql driver to support the new iterator model

Juergen E. Fischer 	2013-01-30

    debian packaging fix (quantal versions were actually unused before a4fa7535)

Marco Hugentobler 	2013-01-30

    Fix ruler layout

Larry Shaffer 	2013-01-28

    [FEATURE] Add option to auto-open 'New, Most recent or Specific' project on app launch

    - Add error trapping to catch bad projects that crash app, then notify user and avoid reopening

Larry Shaffer 	2013-01-29

    Switch QgsMessageBar subject/message from QLabel to QTextEdit

    - Fix issue with heightForWidth where long lines in QLabel with word wrap cause excessive message bar height
    - Set scroll area fixed height to 1.5 font-based line size, creating a single line scroll box for wrapped messages
    - Can now select and copy message subject and text
    - HTML (QTextEdit subset) now supported for message
    - Clean up Close button style

Juergen E. Fischer 	2013-01-29

    debian packaging update: ubuntu raring

Juergen E. Fischer 	2013-01-29

    german translation update

Juergen E. Fischer 	2013-01-29

    oracle provider: fix support for geometryless tables (fixes #7023)

olivierdalang 	2013-01-29

    (notes and micro-cleanup)

olivierdalang 	2013-01-29

    upgraded to collapsible groupboxes

olivierdalang 	2013-01-29

    fix for composer map item's background when non-opaque

Merge: a00e413 bb97787
Marco Hugentobler 	2013-01-29

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 81dacc7 9f9ce32
Marco Hugentobler 	2013-01-29

    [FEATURE]: possibility to export vector symbology (using ogr feature style)

Juergen E. Fischer 	2013-01-29

    fix sip error

Marco Hugentobler 	2013-01-29

    Implement drawing of ruler markers

Werner Macho 	2013-01-29

    translation update: et_EE by Veiko

Juergen E. Fischer 	2013-01-29

    register QgsMessageLog::MessageLevel

olivierdalang 	2013-01-28

    begins to work

olivierdalang 	2013-01-28

    UI enable/disable works

Juergen E. Fischer 	2013-01-29

    update calls to new api

olivierdalang 	2013-01-29

    [feature] added draw background checkbox in composer items
    (this allow to workaround the non-opaque background bug with atlas and is more consistent with the frame settings) )

Larry Shaffer 	2013-01-26

    [FEATURE] Add style options for legend layer/groups, and live refresh of all legend style options

    - Based of off work from Stefan Ziegler (pull request #331)
    - Options inherited by embedded groups (which are still always italic)
    - Original layer name now saved to project file (instead of adjusted display name)
    - Fix bug where setting capitalization, then saving/reopening would permanently set capitalization
    - [API] Add originalName() to QgsMapLayer to access original (pre-adjusted name)
    - [API] Add setupFont() method to legend group items
    - [API] Add updateLegendItemStyles() and updateLegendItemSymbologies() to QgsLegend to allow style option changes to become active without app restart

Merge: 8c89c2a c279ec2
Giuseppe Sucameli 	2013-01-28

    Merge pull request #394 from etiennesky/gdaltools1

    GdalTools - use raster format save option and pyramids dialogs

Etienne Tourigny 	2013-01-28

    fix layerModified signal mapping

Etienne Tourigny 	2013-01-28

    implement currentLayer() and setCurrentLayer() in QgsLegendInterface to set/get current layer

Etienne Tourigny 	2013-01-28

    allows for plugins to insert actions for layers in TOC, with QgsLegendInterface::addLegendLayerAction()

Larry Shaffer 	2013-01-28

    Remove invalid relative path to images resource file

Merge: 958cd2a 4cd271b
Nathan Woodrow 	2013-01-28

    Merge pull request #403 from matthias-kuhn/expression-build-dialog-save-window-geometry

    Save geometry of expression build dialog on close

Merge: 6c931f3 fb63167
Nathan Woodrow 	2013-01-28

    Merge pull request #407 from matthias-kuhn/expression-builder-margin

    Fix for #6165 - Overlapping widgets in expression builder dialog

Matthias Kuhn 	2013-01-28

    Fix for #6165 - Overlapping widgets in expression builder dialog
    Reset the top margin of widgets to the default value

Juergen E. Fischer 	2013-01-28

    debian packaging update (fixes #7060)

Marco Hugentobler 	2013-01-28

    Add composer rulers to composer graphics view

Marco Hugentobler 	2013-01-28

    Add class QgsComposerRuler

Juergen E. Fischer 	2013-01-28

    fix warnings, add copyright headers, cosmetics

Juergen E. Fischer 	2013-01-27

    osgeo4w: packaging updates

Victor Olaya 	2013-01-27

    minor edits to SEXTANTE algorithms and scripts

Tim Sutton 	2013-01-27

    Update doc/osx.t2t

Merge: 247c2db 5b9b03f
Paolo Cavallini 	2013-01-27

    Merge pull request #405 from matthias-kuhn/piediagram-test-fix

    Replace control image for piediagram with proper one

Tim Sutton 	2013-01-27

    qwt compile error under OSX - note for Larry

Matthias Kuhn 	2013-01-27

    Replace control image for piediagram with proper one

Tim Sutton 	2013-01-27

    Update osx install - update old nokia download path

Victor Olaya 	2013-01-27

    Added compiled SEXTANTE ui files

Victor Olaya 	2013-01-27

    edited GRASS and SAGA algorithm descriptions

Merge: 20e4ec5 a9a289e
Victor Olaya 	2013-01-27

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Tim Sutton 	2013-01-27

    Update doc/osx.t2t

    Added note about how to get command line tools.

Martin Dobias 	2013-01-27

    OSM provider ported to new API

Victor Olaya 	2013-01-26

    edited GRASS/SEXTANTE algorithm descriptions

Victor Olaya 	2013-01-26

    minor sextante fixes

Martin Dobias 	2013-01-26

    Postgres - debug mode: do not slow down fetching of features unless necessary

    (the debug routine was consuming ~50% of rendering time)

Juergen E. Fischer 	2013-01-26

    fix windows build

olivier 	2013-01-20

    Added layerIsExpanded() to QgsLegendInterface

Juergen E. Fischer 	2013-01-26

    german translation update

Juergen E. Fischer 	2013-01-26

    follow up 994dc1cc216: also change level in QgsMessageLogViewer

Martin Dobias 	2013-01-26

    QgsVectorLayer: deprecate old API: select(), nextFeature(), featureAtId()

Merge: 985468e 994dc1c
Martin Dobias 	2013-01-26

    Merge remote-tracking branch 'origin/master' into new_vector_api

Juergen E. Fischer 	2013-01-26

    - [API] introduce QgsMessageLog::MessageLevel and change logMessage() level
      parameter to that type
    - change default level to WARNING
    - change startup messages to INFO
    - don't unhide the warning button for INFO messages
    - fix warnings produced by python code

Nathan Woodrow 	2013-01-26

    Add test for format expression function

Larry Shaffer 	2013-01-25

    Add empty QUndoView to QgsUndoWidget for initial show

    - Shows disabled view instead of blank dock area (same as creating new project after closing project)

Juergen E. Fischer 	2013-01-25

    cleanup doIntersectLines.py and fix #7021

Matthias Kuhn 	2013-01-25

    Save geometry of expression build dialog on close

Juergen E. Fischer 	2013-01-25

    append resolution and transparency arguments also to tile request (fixes #3981)

Juergen E. Fischer 	2013-01-25

    leaner imitation of .arg

Radim Blazek 	2013-01-25

    WCS max extent verification fix for servers without overvies

Larry Shaffer 	2013-01-24

    Fix background issue for Gnome desktop

    - Revert de437ab

Larry Shaffer 	2013-01-23

    Add Qt styles flags to QgsAppStyleSheet and update styled group boxes

Radim Blazek 	2013-01-25

    more robust raster color map conversion from 1.8 project and style file, fixes #7023

Merge: 4f3e89a 2a54248
Victor Olaya 	2013-01-24

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2013-01-24

    added extra import parameters for vector layers in GRASS/SEXTANTE interface
    minor fix to create a new instance when a model is edited

Victor Olaya 	2013-01-24

    edited GRASS/SEXTANTE descriptions

Juergen E. Fischer 	2013-01-24

    use 'geom' as default name for geometry columns in browser data items (implements #7042)

Marco Hugentobler 	2013-01-24

    Consider WMS opacity also for labels and in the GetPrint request

Nathan Woodrow 	2013-01-24

    Add string format() function to expression

Juergen E. Fischer 	2013-01-24

    log python warnings and enabled deprecation warnings

Merge: 5f304b3 0ccff60
Martin Dobias 	2013-01-24

    Merge remote-tracking branch 'jef/oraclespatial-nva' into new_vector_api

    Conflicts:
doc/TRANSLATORS
i18n/qgis_de.ts
src/app/qgisapp.cpp
src/core/qgis.cpp
src/core/qgsvectorlayerimport.cpp
src/providers/oracle/CMakeLists.txt
src/providers/oracle/qgsoracleprovider.cpp
src/providers/oracle/qgsoracleprovider.h

Merge: dda51c6 5f70a68
Martin Dobias 	2013-01-23

    Merge remote-tracking branch 'origin/master' into new_vector_api

    Conflicts:
python/core/qgsvectordataprovider.sip
src/app/legend/qgslegendlayer.cpp
src/app/qgisapp.cpp
src/app/qgsmergeattributesdialog.cpp
src/core/qgsvectordataprovider.cpp
src/core/qgsvectordataprovider.h
src/core/qgsvectorlayer.cpp
src/gui/qgssearchquerybuilder.cpp
src/providers/postgres/qgspostgresprovider.cpp
src/providers/wfs/CMakeLists.txt

Tim Sutton 	2013-01-24

    Fix error in test for issue 7023

Juergen E. Fischer 	2013-01-23

    port oracle provider to new_vector_api
    + progress dialog in progress dialog
    + fix for feature form from attribute table

Merge: de437ab b1bfb9a
Tim Sutton 	2013-01-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2013-01-23

    Set options list style to to white background

Merge: 53197ad 73b3d9c
Larry Shaffer 	2013-01-22

    Merge pull request #389 from slarosa/pyqgis-console

    Update translation for Python Console

Juergen E. Fischer 	2013-01-14

    more oracle provider improvements:
    - enable warnings and more error handling in qocispatial
    - read ordinates in one go (OCICollGetElemArray/OCINumberToRealArray not working yet)
    - set prefetch count
    - fix support for int keys (numbers with precision 0)
    - interpret oracle crs without auth_name as EPSG

Juergen E. Fischer 	2013-01-14

    oracle provider improvements:
    - improve srs lookup
    - insert crs to oracle table on import, if not existent (requires INSERT privilege on MDSYS.SDO_COORD_REF_SYSTEM)
    - move table lookup into thread
    - use QgsMessageOutput for import errors (also in postgres and spatialite)
    - german translation update

Juergen E. Fischer 	2013-01-12

    oracle provider: accept number(0) as key

Juergen E. Fischer 	2013-01-09

    oracle provider: fix connection settings

Juergen E. Fischer 	2013-01-09

    [FEATURE] add oracle provider

Merge: 4479cd7 b6e6147
Marco Hugentobler 	2013-01-22

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2013-01-22

    [Feature: Add more color options. Provided by olivierdalang]. Modifications for xml reading / writing

Marco Hugentobler 	2013-01-22

    Shorten code for xml reading / writing

Marco Hugentobler 	2013-01-22

    Shorten code for xml reading and writing

Marco Hugentobler 	2013-01-22

    Avoid reseting of pen width if changing stroke color

olivierdalang 	2013-01-21

    (remove useless code)

olivierdalang 	2013-01-21

    QgsScalebar now saves colors in XML

olivierdalang 	2013-01-21

    Allow setting of font color in QgsComposerLegend

olivierdalang 	2013-01-20

    (changed default color)

olivierdalang 	2013-01-20

    color works for scalebars

olivierdalang 	2013-01-20

    remove always black text
    this is unconsistant with the other drawText function and makes it impossble for a composer item to have a font color

redlegoreng 	2013-01-19

    ça marche tjs pas...

redlegoreng 	2013-01-19

    line color starts to work

redlegoreng 	2013-01-19

    typo

redlegoreng 	2013-01-19

    starting to refresh the scalebar composer item

Marco Hugentobler 	2013-01-22

    Clone gradient in singleband gray renderer. Combine new opacity with existing one in mapserver

Tim Sutton 	2013-01-22

    Created test to replicate issue #7023

Tim Sutton 	2013-01-22

    Dont dump on every style conversion

Alexander Bruy 	2013-01-22

    fix output of the eliminate slivers polygon tool (fix 6925). Patch by
    Bernhard Strobl

Larry Shaffer 	2013-01-21

    [FEATURE] Add custom group box settings to Options

    - Add options to set group box title to bold, and to draw platform-consistent custom border and background
    - Useful for group boxes on Ubuntu (default have no borders/backgrounds) and Mac (default are a bit funky-looking)
    - NOT tested yet on Windows

Merge: 995ede3 0757e42
Victor Olaya 	2013-01-21

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

    Conflicts:
python/plugins/sextante/algs/ftools/Difference.py
python/plugins/sextante/algs/ftools/Intersection.py
python/plugins/sextante/outputs/OutputTable.py

Victor Olaya 	2013-01-21

    added support for all gdal/ogr formats in all providers
    added support for pre and post execution hooks

Victor Olaya 	2013-01-21

    fixed ftools overlay algorithms
    code cleaning and minor edits in other algorithms

Juergen E. Fischer 	2013-01-21

    INSTALL: better note about short names.

Marco Hugentobler 	2013-01-21

    wfs provider: copy geometry and attributes only if necessary

Larry Shaffer 	2013-01-18

    Add adjustable Qt stylesheet class, QgisAppStyleSheet

    - [API] Remove individual stylesheet option functions (e.g. setFontSize) in favor of direct access to QgisAppStyleSheet functions

Marco Hugentobler 	2013-01-21

    Implement rewind() in wfs iterator

Marco Hugentobler 	2013-01-21

    Prevent concurrent wfs iterators for now

Marco Hugentobler 	2013-01-21

    Fix incremental wfs loading

Marco Hugentobler 	2013-01-21

    Change WFS provider for new vector api

Merge: 2a4d79d bfb2b7a
Larry Shaffer 	2013-01-20

    Merge pull request #393 from dakcarto/options_re-org_5

    Reorganize Options dialog

Juergen E. Fischer 	2013-01-18

    german translation update

Juergen E. Fischer 	2013-01-18

    fix #7006 (if you actually use it)

Etienne Tourigny 	2013-01-18

    use  raster format and pyramid save widgets in gdaltools (translate, dem, pyramids)

Etienne Tourigny 	2013-01-18

    fix version test for gdal-1.10 (needs updates to widgets also)

Etienne Tourigny 	2013-01-18

    update raster format and pyramid save widgets for python, add pyramid config options support to raster writer, other fixes

Juergen E. Fischer 	2013-01-18

    fix #7006

Merge: 7809cbd 1910621
Marco Hugentobler 	2013-01-18

    Merge branch 'composer_inference_lines'

Marco Hugentobler 	2013-01-18

    Show alignment rubber band on top

Marco Hugentobler 	2013-01-18

    Update composition sip bindings

Marco Hugentobler 	2013-01-18

    Set alignment snap and tolerance for composition

Juergen E. Fischer 	2013-01-18

    about box: use webview for version info and use ok button

Juergen E. Fischer 	2013-01-18

    use CPLFree on memory allocated by GDAL (fixes #7008)

Marco Hugentobler 	2013-01-18

    Alignment snap also for item resize in composer

Radim Blazek 	2013-01-18

    GRASS raster draw extent precission fix

Juergen E. Fischer 	2013-01-18

    fix windows build

Larry Shaffer 	2013-01-17

    Switch saving edits from Attribute Table dialog from connection to using public function

Larry Shaffer 	2013-01-17

    Minimize canvas refreshes during save/rollback/cancel current edits actions

Larry Shaffer 	2013-01-17

    Fix #7007, canvas is not refreshing when exiting editing mode

Larry Shaffer 	2013-01-17

    Fix for #6992, GDAL create options help dialog shows up behind other dialogs on Mac

Larry Shaffer 	2013-01-14

    Reorganize Options dialog

    - Add Data Sources, Canvas/Legend sections
    - Fix excess whitespace issue for list widget pane in QtDesigner and QGIS
    - Switch GDAL drive table load to on current page name

Merge: a6c5fd8 e12d139
rldhont 	2013-01-17

    Merge pull request #392 from rldhont/new_vector_api

    Update QGIS WFS Server to use the new vector API

D'Hont René-Luc 	2013-01-17

    Update QGIS WFS Server to use the new vector API

    This update needs to be tested. It should primarily test the
    PROPERTYNAME parameter for GetFeature request, and test TRANSACTION.
    This update it's just for compatibility. It should be good to update the
    code to use all the new vector API capability.

Marco Hugentobler 	2013-01-17

    Automatically update project files in qgis server

Salvatore Larosa 	2013-01-17

    Followup d3981b8:
    now it works properly with pylupdate4

Marco Hugentobler 	2013-01-17

    Cleanup code for composer item align

Merge: 79d7246 3fe0f99
Werner Macho 	2013-01-17

    Merge pull request #390 from gioman/master

    More pt_PT translations by Nelson Silva

Merge: a928d51 629fa5a
Werner Macho 	2013-01-17

    Merge pull request #391 from slarosa/gdal_tools_issue

    fix typo in gdal tools

Salvatore Larosa 	2013-01-17

    fix typo in gdal tools

Marco Hugentobler 	2013-01-17

    Show alignment lines

Marco Hugentobler 	2013-01-17

    [FEATURE]: snap to left/mid/right coordinates of other items when moving composer items

Martin Dobias 	2013-01-16

    Update of providers' feature iterators

    Currently providers do not support concurrent access of more iterators at once, so keep pointer to the currently active iterator and auto-close previous iterator when a new one is requested.
    Auto-close iterators when all features have been set.
    Auto-close iterators when the provider is deleted.

Larry Shaffer 	2013-01-15

    Turn on all edit triggers and set minimum heights for custom/current env vars tables

    - Set minimum heights for all table widgets in Options->System

Larry Shaffer 	2013-01-15

    Increase relative height of custom/current env vars table headers

Larry Shaffer 	2013-01-15

    Update Options dialog vertical tabs after paintEvent, instead of on resize

    - Allows full updating of icon-only mode on OSes that emit only one resize event

Giovanni Manghi 	2013-01-15

    More pt_PT translations by Nelson Silva

Juergen E. Fischer 	2013-01-15

    fix build

Salvatore Larosa 	2013-01-15

    Update translation for Python Console

Merge: ce64ede a1743ab
mhugent 	2013-01-15

    Merge pull request #388 from mwa/offline_editing_api

    Move QgsOfflineEditing to core

Mathias Walker 	2013-01-15

    Move QgsOfflineEditing to core and add SIP bindings; refactor Offline Editing Plugin

Merge: 0357f0f 6768327
Tim Sutton 	2013-01-15

    Merge pull request #387 from slarosa/pyqgis-console

    Add QgsMessageBar for pyqgis console

Salvatore Larosa 	2013-01-15

    Add QgsMessageBar for pyqgis console

Merge: bdcb6c1 ca77a98
mhugent 	2013-01-15

    Merge pull request #386 from Oslandia/atlas

    Fix atlas map resizing

Larry Shaffer 	2013-01-14

    Add mousePressEvent to QgsMessageBar sip file

Juergen E. Fischer 	2013-01-14

    more oracle provider improvements:
    - enable warnings and more error handling in qocispatial
    - read ordinates in one go (OCICollGetElemArray/OCINumberToRealArray not working yet)
    - set prefetch count
    - fix support for int keys (numbers with precision 0)
    - interpret oracle crs without auth_name as EPSG

Larry Shaffer 	2013-01-14

    Re-add mysteriously missing connections for custom env variables checkbox

    - Probably removed during QtDesigner changes to .ui file; code into .cpp file instead
    - Possible fix for #6961

Hugo Mercier 	2013-01-14

    refs #6956
    Fix map frame resizing : do not touch the frame size, adapt the geometry's extent if needed

Juergen E. Fischer 	2013-01-14

    oracle provider improvements:
    - improve srs lookup
    - insert crs to oracle table on import, if not existent (requires INSERT privilege on MDSYS.SDO_COORD_REF_SYSTEM)
    - move table lookup into thread
    - use QgsMessageOutput for import errors (also in postgres and spatialite)
    - german translation update

Juergen E. Fischer 	2013-01-13

    [FEATURE] add second browser

Larry Shaffer 	2013-01-13

    Add QgisApp::messageTimeout() to iface sip file

    - [API] Remove recently added, and unnecessary, mMessageTimeout and setMessageTimeout() from QgisApp

Larry Shaffer 	2013-01-13

    Set fixed size for close icon in QgsMessageBar

Larry Shaffer 	2013-01-12

    Finish refactoring that caused build error

Juergen E. Fischer 	2013-01-13

    fix build error

Nathan Woodrow 	2013-01-13

    Fix build

Larry Shaffer 	2013-01-12

    Add stop/start and user default option for timeout of timed QgsMessageBars

    - Add pause/start icons to timeout countdown progress bar
    - Add user-defined option for general message timeouts
    - [API] Add get/set methods for general message timeouts to QgisApp

Merge: ac29c5b 5b06de9
Jürgen Fischer 	2013-01-12

    Merge pull request #378 from slarosa/ftools_split_vector

    fix #4534

Juergen E. Fischer 	2013-01-12

    prepare-commit.sh: remove trailing blanks from python files

Juergen E. Fischer 	2013-01-12

    german translation update

Juergen E. Fischer 	2013-01-12

    prepare-commit.sh: remove trailing blanks from python files

Juergen E. Fischer 	2013-01-12

    fix sip binding of QgsCredentials::get() (always returned true; partly rolls back dcf3ede)

Merge: 13bfb5e 8203eff
Larry Shaffer 	2013-01-12

    Merge pull request #385 from slarosa/pyqgis-console

    remove item QgsInterface from import class menu in python console

Salvatore Larosa 	2013-01-12

    remove item QgsInterface from import class menu in python console
    since a369ed0 it is no longer necessary to import iface object

Merge: 5b431df bc4f8f2
Victor Olaya 	2013-01-12

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Larry Shaffer 	2013-01-12

    Add convenience methods for pushing a non-widget-based message to QgsMessageBar

    - Switch some WARNING messages over to INFO
    - Add default icon for CRITICAL messages

Nathan Woodrow 	2013-01-12

    Import iface into Python console

Larry Shaffer 	2013-01-12

    Update 'not vector/editable layer' dialogs to message bar for new Rotate map tool

Larry Shaffer 	2013-01-12

    Fix #6957, move 'not vector/editable layer' dialogs to message bar for map edit and select tools

    - Move notifications to base QgsMapToolEdit class
    - Add QgsMessageBar::INFO icon (also useful for lightweight WARNING)

Victor Olaya 	2013-01-12

    sextante file dialog now remembers last used folder

Victor Olaya 	2013-01-12

    modified grass postprocessing and edited grass description

Victor Olaya 	2013-01-12

    code cleaning

Victor Olaya 	2013-01-12

    editing parameters in modeler now remembers previous values

Marco Hugentobler 	2013-01-12

    Transform anchor point if rotating reprojected features

vinayan 	2013-01-08

    moved to Advanced Editing Toolbar

vinayan 	2013-01-08

    rotate closest feature if selection is empty

vinayan 	2013-01-06

    icon added,fixed issue with no selection on

vinayan 	2013-01-06

    prepare commit script run

vinayan 	2013-01-06

    Fixed Rotation anchor issue while zooming panning

vinayan 	2013-01-06

    Added Rotate Map Tool

Merge: 971c7b8 8803a00
Larry Shaffer 	2013-01-11

    Merge pull request #382 from dakcarto/iface_edits-tool-switch-fix_1

    Fix #6968, saving/rollbacking edits deselects current editing tool

Larry Shaffer 	2013-01-09

    Fix #6968, saving/rollbacking edits deselects current editing tool

Nathan Woodrow 	2013-01-10

    Add groupbox support to attribute editor

Larry Shaffer 	2013-01-11

    Add descriptive names to message bar levels (from Matthais Kuhn)

    - Enum containing INFO, WARNING and CRITICAL

Juergen E. Fischer 	2013-01-12

    oracle provider: accept number(0) as key

Merge: 078f0d0 eb02e91
Marco Hugentobler 	2013-01-11

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2013-01-11

    Fix python zebra style test

Juergen E. Fischer 	2013-01-11

    oracle provider: fix menu entry

Merge: 37f7d57 5003c46
Jürgen Fischer 	2013-01-10

    Merge pull request #384 from lynxlynxlynx/master

    Try to find QWT harder

Larry Shaffer 	2013-01-10

    Update QgsMessageBar sip file to include timeout messages

Larry Shaffer 	2013-01-10

    Switch 'select vector layer first' dialog warning for labeling toolbar action to QgsMessageBar timeout message

Larry Shaffer 	2013-01-10

    Add optional message timeout with countdown progress bar to QgsMessageBar

Jaka Kranjc 	2013-01-10

    FindQwt.cmake: also detect qwt6 suffixes

Marco Hugentobler 	2013-01-10

    Fix display of paper size after loading from Template. Fixes #6818

Merge: 834107a f2a0378
volaya 	2013-01-10

    Merge pull request #383 from slarosa/sextante-issue

    Fix for destination CRS in SEXTANTE GRASS algs:

Merge: 4ddcb3e 2c1db1c
mhugent 	2013-01-10

    Merge pull request #380 from bischofia/updateFieldName

    update field names when vector layer properties are applied

Salvatore Larosa 	2013-01-10

    Fix for destination CRS in GRASS algs:
    Refs: http://lists.osgeo.org/pipermail/qgis-user/2013-January/020847.html

Nathan Woodrow 	2013-01-09

    Add support for QCalendarWidget in custom forms

Juergen E. Fischer 	2013-01-10

    re-enable QGisApp::updateLayerModifiedActions()

Werner Macho 	2013-01-10

    translation update: gl_ES by Xan

Juergen E. Fischer 	2013-01-09

    fix crash on CRS validation

Juergen E. Fischer 	2013-01-09

    fix some warnings and myriads of global QString objects

Juergen E. Fischer 	2013-01-09

    oracle provider: fix connection settings

Juergen E. Fischer 	2013-01-09

    osgeo4w: change geos_c_i to geos_c

Juergen E. Fischer 	2013-01-09

    german translation update

Juergen E. Fischer 	2013-01-09

    [FEATURE] add oracle provider

Minoru Akagi 	2012-12-07

    update field names when vector layer properties are applied

Victor Olaya 	2013-01-08

    improvements for handling tables

Merge: 964e842 45fab4b
Victor Olaya 	2013-01-08

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Salvatore Larosa 	2013-01-08

    fix #4534

Merge: e59de66 7e29d7c
Victor Olaya 	2013-01-07

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Martin Dobias 	2013-01-07

    Fixed closing of feature iterators

Martin Dobias 	2013-01-06

    Postgres feature iterator fixes (rewind, FID filter, closing)

Merge: a785fd5 522bbcd
Victor Olaya 	2013-01-04

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Merge: 5c00014 a572f3c
Victor Olaya 	2013-01-04

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2013-01-01

    edited grass and saga algorithm descriptions

Victor Olaya 	2013-01-01

    refactor fTools algorithms

Martin Dobias 	2012-12-29

    Fixing support for spatialite 4.0

Martin Dobias 	2012-12-28

    Faster initialization of attributes

Martin Dobias 	2012-12-28

    Slightly faster preparation of vectors of points

Marco Hugentobler 	2012-12-27

    Disable scale field if no symbology export

Marco Hugentobler 	2012-12-27

    Export ogr feature style in mm for line width and in ground units for line pattern

Marco Hugentobler 	2012-12-26

    Let ogr give ids to created features (otherwise, there are problems with exported dxf files)

Marco Hugentobler 	2012-12-25

    Ogr style string for line pattern fill

Marco Hugentobler 	2012-12-25

    Write offset into ogr pen style

Marco Hugentobler 	2012-12-25

    Write pen cap and join style to ogr pen

Marco Hugentobler 	2012-12-25

    Add custom dash dot pattern to symbol layer utils function

Marco Hugentobler 	2012-12-23

    Fetch attributes for symbology export

Marco Hugentobler 	2012-12-23

    Feature style for simple fill

Marco Hugentobler 	2012-12-23

    Use start / stopRender for renderer in vector symbology export

Marco Hugentobler 	2012-12-21

    Dash dot pattern

Marco Hugentobler 	2012-12-21

    Use scale for symbology export (if symbol measures are defined in map units)

Martin Dobias 	2012-12-20

    Re-enabled GPX provider

Martin Dobias 	2012-12-20

    Fixed isModified()

Marco Hugentobler 	2012-12-20

    Hack to fix line widths (for dxf only?)

Martin Dobias 	2012-12-19

    Checking of invalid values when calling edit buffer operations

Martin Dobias 	2012-12-19

    Changed data structure for added features from list to map to allow efficient lookups

Marco Hugentobler 	2012-12-18

    ogr feature style for simple marker

Marco Hugentobler 	2012-12-18

    Add coordinate transform to symbol layer vector export

Marco Hugentobler 	2012-12-18

    Better error handling

Merge: 81b0930 122cff7
Martin Dobias 	2012-12-18

    Merge remote-tracking branch 'origin/master' into new_vector_api

    Also disabled mapserver until compilation is fixed.
    Fixed tests.

    Conflicts:
src/app/legend/qgslegendlayer.cpp
src/app/qgsattributedialog.cpp
src/app/qgsattributedialog.h
src/app/qgslabelpropertydialog.cpp
src/app/qgsmaptoollabel.cpp
src/app/qgsvectorlayerproperties.cpp
src/core/CMakeLists.txt
src/core/composer/qgsatlascomposition.cpp
src/core/qgsexpression.cpp
src/core/qgspallabeling.cpp
src/core/qgsvectorlayer.cpp
src/core/qgsvectorlayer.h
src/core/qgsvectorlayerimport.cpp
src/mapserver/qgsprojectparser.cpp
src/mapserver/qgswfsserver.cpp
src/mapserver/qgswfsserver.h
src/mapserver/qgswmsserver.cpp
src/providers/postgres/qgspostgresprovider.cpp
src/providers/spatialite/qgsspatialiteprovider.h
tests/src/core/testqgsexpression.cpp
tests/src/python/test_qgsmemoryprovider.py

Martin Dobias 	2012-12-17

    QgsVectorLayer: large internal refactoring

    Most important changes:
    - introduced feature iterator for QgsVectorLayer
    - vector editing moved to QgsVectorEditBuffer
    - complete rework of undo/redo commands for vector layers
    - geometry cache separated from editing (QgsVectorLayerCache)
    - non-essential editing functionality moved to QgsVectorLayerEditUtils

Marco Hugentobler 	2012-12-17

    Fix width of simple line style

Marco Hugentobler 	2012-12-17

    Possibility of choosing symbology export method in export dialog

Marco Hugentobler 	2012-12-13

    Add enum to vector file writer describing the type of symbology export

Marco Hugentobler 	2012-12-07

    Implement ogr style in simple line symbol layer

Marco Hugentobler 	2012-12-07

    [FEATURE]: add base mechanisms for OGR feature style export

Chris Crook 	2012-11-03

    Code for delimited text provider

Merge: e0f9d53 a9ff3cf
ddehaan 	2012-10-28

    Merge remote-tracking branch 'origin/master'

Sandro Santilli 	2013-01-08

    Quality topology layer names

    ... so you can recognize them in the snapping option dialog

Nathan Woodrow 	2013-01-08

    Rename Query/Build Query to Filter/Set Filter to better reflect action

Nathan Woodrow 	2013-01-08

    Fix loading of Python Init method with unsaved features

Werner Macho 	2013-01-08

    translation update: galician by Xan

Juergen E. Fischer 	2013-01-08

    fix syntax error

Nathan Woodrow 	2013-01-08

    [API] Add method to QgsMapLayerRegistry to get layers using name

Merge: 4ff5b29 c4115cf
Nathan Woodrow 	2013-01-07

    Merge pull request #377 from matthias-kuhn/attredit-load-idx

    Fix issue 6899: Drag and drop designer uses first field after project re...

Larry Shaffer 	2013-01-06

    Update Options dialog vertical tabs

    - Icon-only mode now only shows vert. scrollbar as needed
    - Icon-only mode is snapped to when splitter is near icons
    - Splitter is adjusted for vert. scrollbar width, keeping it from covering icon-only mode icons
    - Remove size grip for dialog

Juergen E. Fischer 	2013-01-07

    Include project home in browser toplevel browser (implement #6955)
    [API] add QgsProject::homePath()
    [API] make QgsBrowserModel::reload() a public slot

Matthias Kuhn 	2013-01-07

    Show scroll bars for drag and drop attribute editor if necessary

Matthias Kuhn 	2013-01-07

    Fix issue 6899: Drag and drop designer uses first field after project reload
    idx was not properly initialized at project load.

Juergen E. Fischer 	2013-01-07

    fix windows build

Juergen E. Fischer 	2013-01-07

    - [API] add optional progress dialog to QgsVectorLayerImport
    - postgres/mssql: fix primary key generation on import (fixes #6907)
    - fix crash on browser refresh after vector layer import

Juergen E. Fischer 	2013-01-06

    german translation update

Radim Blazek 	2013-01-06

    doxygen warnings fixes

Juergen E. Fischer 	2013-01-06

    fix #6726

Juergen E. Fischer 	2013-01-06

    attribute table: NULL values are considered less than other values (fixes #6715)

Larry Shaffer 	2013-01-06

    Switch main Options dialog to vertical tabs

    - Icon-only mode enabled by fully moving splitter to left

Merge: 2a002c5 0595f74
Larry Shaffer 	2013-01-06

    Merge pull request #372 from dakcarto/iface_enviro_3

    [FEATURE] Configure custom environment variables

Juergen E. Fischer 	2013-01-06

    [API] make primary key field indexes available:
    - add QgsVectorLayer::pendingPkAttributeList()
    - add QgsVectorDataProvider::pkAttributeIndexes()
    - skip primary key attribute when pasting features (fixes #6164)
    - default to skip primary key attribute in when merging features/attributes
    - reset primary key attributes to default value when splitting features (better fix for #6060)
    - comment out unused QgsPasteTransformations

Merge: b2932de 3f5f706
Jürgen Fischer 	2013-01-04

    Merge pull request #364 from matthias-kuhn/attredit-aliases

    Attredit aliases

Larry Shaffer 	2013-01-04

    Add checkbox to filter non-QGIS-specific vars from current env vars table

Juergen E. Fischer 	2013-01-05

    fix windows build

Juergen E. Fischer 	2013-01-05

    QgsVectorLayer: delete before adding/changing features (fixes #6422)

Juergen E. Fischer 	2013-01-04

    update INSTALL

Juergen E. Fischer 	2013-01-04

    wfs in core needs expat

Juergen E. Fischer 	2013-01-04

    more API updates to the python plugins

Radim Blazek 	2013-01-04

    multipart reply extracted from WCS provider QgsNetworkReplyParser

Radim Blazek 	2013-01-04

    QgsWFSData CORE_EXPORT

Radim Blazek 	2013-01-04

    QgsWFSData moved to core

Larry Shaffer 	2013-01-03

    Fix #6940, error traceback output to console crashes under QScintilla 2.7

Marco Hugentobler 	2013-01-04

    Test WFS version and throw error if 1.0 is not supported by the server

Larry Shaffer 	2013-01-01

    [FEATURE] Configure custom environment variables

    - Fix for #3097
    - Could help plugins, like SEXTANTE, work better across platforms via abstracted coding based upon env vars
    - In app prefs, configure variables and view current set, with tooltips to show pre-startup value (if any)

Matthias Kuhn 	2012-12-21

    Save/Load attribute editor layout for layers without geometry

Matthias Kuhn 	2012-12-21

    Show field alias in drag and drop designer dialogs

ddehaan 	2012-10-28

    Fix int/integer datatype confusion in primary key identification for the sqlanywhere provider

Werner Macho 	2013-01-04

    translation update: lao by Lao GIS users

Juergen E. Fischer 	2013-01-04

    nmea parsing: call strtod with locale "C" (fixes #6687)

Merge: 3359870 fb763a7
Marco Hugentobler 	2013-01-04

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2013-01-04

    Saver double comparison, minor code cleanup (deleting a 0 pointer is always save)

Larry Shaffer 	2012-12-09

    Draw SVG symbol from cached QImage unless it exceeds half of cache size, then use QPicture

    - Fix #6855, SVG markers/fills larger than half cache (559^2 X 32 + SVG) are drawn with QPicture
    - Fix #6861, make QPicture SVG symbols scale with Composer page zoom
    - Fix #6861, make SVG symbol output to print/image more accurate by setting 'size' to double
    - Update/add support for non-squared SVG via QImage and QPicture, on screen and in output to print/image
    - Non-squared SVG QImage/QPicture can now be used in pattern fill, without excess space

Merge: 1bda31d fb26989
Nathan Woodrow 	2013-01-03

    Merge pull request #374 from bholland/master

    Fix #6942

ben 	2013-01-03

    Bounding box now takes into account font descent so letters like g and j are not cut off from the legend title.

Juergen E. Fischer 	2013-01-04

    fTools: replace QgsRectangle.expand with .scale

Juergen E. Fischer 	2013-01-04

    fix #6926

Juergen E. Fischer 	2013-01-03

    python plugins: replace QgsMapRenderer.destinationSrs() with destinationCrs() (closes #6391)

Merge: d4ef4fd d6a33f5
Werner Macho 	2013-01-03

    Merge pull request #373 from slarosa/pyqgis_console_1

    Reorganize icons theme for pyqgis console

Merge: b48ae8b 77d48a0
Werner Macho 	2013-01-03

    Merge pull request #347 from slarosa/pyqgis-console

    fix output directory for pyqgis console on installing

Merge: 71580df 90ef576
Werner Macho 	2013-01-03

    Merge pull request #370 from slarosa/osm_plugin_issue

    fixes issues for OSM plugin generated from api cleanup commit

Merge: 93e0526 aef3f34
Werner Macho 	2013-01-03

    Merge pull request #371 from bstroebl/fix#6925

    fix #6925 fTools eliminate now works if the polygon to merge with has an id of 0

Radim Blazek 	2013-01-03

    wcs test fix

Juergen E. Fischer 	2013-01-03

    use project projections instead of WGS84 for WMS crs preselection (fixes #6939)

Radim Blazek 	2013-01-03

    raster sublayers win fix

Salvatore Larosa 	2013-01-03

    Reorganize icons theme for pyqgis console
    - add icon to Python Console entry in Plugins menu

Bernhard Ströbl 	2013-01-03

    fix #6925

    fTools' eliminate now works if the polygon to merge with has an id of 0

Sandro Santilli 	2013-01-02

    Mark topology group visibility off

    This is really a workaround to http://hub.qgis.org/issues/6938

Larry Shaffer 	2013-01-01

    Fix for #6937, ensure QgsRubberBand is deleted if no active vector layer

Sandro Santilli 	2013-01-01

    Reorganize topoviewer layers into subgroups

Larry Shaffer 	2012-12-31

    Revert "Fix #6931, apply patch from Borys Jurgiel"

    This reverts commit bd65e86b5f079ecb8969b3132b64bfbf7d20a1dd.

    Sorry, did not notice more complete fix in pull request from Salvatore Larosa

Larry Shaffer 	2012-12-31

    Fix #6931, apply patch from Borys Jurgiel

Larry Shaffer 	2012-12-31

    Fix #6725

    - Restore toggle editing button state in attribute table editor if toggling canceled or commit/rollback changes fails

Larry Shaffer 	2012-12-31

    Move toggle/save/rollback/cancel edits slots from private to public

Larry Shaffer 	2012-12-31

    Reinstate Save Active Layer Edits action

    - Now enables/disables relative to vector layer isModified() state (gives feedback when save is finished)
    - Now works with active legend layer, regardless of whether a selection exists in legend
    - Add to legend contextual menu when right-clicked vector layer isModified()

Larry Shaffer 	2012-12-28

    Updates to legend active layer

    - Single click in blank, non-item space in legend unsets active layer (same behavior as clicking group)
    - Underline active layer (helpful when active layer, and no selection or multiple selected layers)

Juergen E. Fischer 	2012-12-31

    german translation update and some string fixes

Giuseppe Sucameli 	2012-12-31

    fix #6932 (due to deprecated getLayerID method removal)

Salvatore Larosa 	2012-12-31

    fix for issues generated from api cleanup commit

pcav 	2012-12-31

    Fix #5843

Juergen E. Fischer 	2012-12-29

    fix #5251

Juergen E. Fischer 	2012-12-29

    geos 3.3.6 doesn't produces geos_c_i on windows anymore also check geos_c

Larry Shaffer 	2012-12-28

    Fix #6924, finish move from png to new svg icons for Current Edits actions

    - Remove graphical limitation indicating edit is only vector-based (previously removed themes/gis/mActionSaveEdits.png)
    - Remove themes/default/mActionSaveEdits.png, just duplicate of mActionsFileSave.png

Merge: 837f187 2b2da5d
Martin Dobias 	2012-12-28

    Merge pull request #350 from matthias-kuhn/qgsmessagebar

    Transfer ownership of widgets to C++ when pushed to the QgsMessageBar

Nathan Woodrow 	2012-12-28

    Fix #6214. Show names under symbols

Victor Olaya 	2012-12-28

    fixed #6918

Merge: ce4d03b 8b98197
Nathan Woodrow 	2012-12-27

    Merge pull request #368 from tecoholic/6897

    Fixes #6897. Handle import of old symbols.

Arunmozhi 	2012-12-27

    Fixes #6897

Werner Macho 	2012-12-27

    added GPL license to file

Arunmozhi 	2012-12-27

    changed style version from 0 to 1

Nathan Woodrow 	2012-12-27

    Remove Symbol: from symbol selector tree view names

Merge: d8b271d 90c571d
mhugent 	2012-12-27

    Merge pull request #366 from matthias-kuhn/rubberband-point-symbols

    Add different point symbols for QgsRubberband.

Merge: c419888 6a9c994
Nathan Woodrow 	2012-12-27

    Merge pull request #367 from tecoholic/imp_style

    Improved Style functionality. Fix recursive symbol dialogs

Arunmozhi 	2012-12-27

    added scripts/qgisstyle to gitignore

Arunmozhi 	2012-12-27

    auto update the symbol DB with 0s in place of NULLs

Merge: 7344368 0ff4324
Nathan Woodrow 	2012-12-26

    Merge pull request #365 from tecoholic/improved_symbols

    fix for #6901.  Fix crash when Changing symbols to > 1 symbology classes

Sandro Santilli 	2012-12-26

    Place new group after current item (for non-group current item)

    See #6879
    When current item is a group the behavior is still to append the
    new group to the end of the child list (as before)

Sandro Santilli 	2012-12-26

    Fix adding groups to empty projects

    Closes #6879 again

Larry Shaffer 	2012-12-26

    Update to legend right-click

    - Right-click now performs widget item change before contextual menu is handled (no more lost right-clicks)
    - Right-clicks within multiple selection preserve selection, but still switch item
    - Right-clicks outside of current selection clears selection and switches to new item before contextual menu

Larry Shaffer 	2012-12-18

    [FEATURE] Add save/rollback/cancel current edits for selected or all vector layers

    - Fix for issue #6782
    - Ensure undo widget is not enabled unless active (again)

Matthias Kuhn 	2012-12-26

    Add pen width to rubberband bounding rect

Arunmozhi 	2012-12-26

    fixed the possibility to recursively open stylemgr and symbol selector

Juergen E. Fischer 	2012-12-22

    remove raster metadata from test data to make tests run without changing git tracked files

Juergen E. Fischer 	2012-12-22

    fix msvc build

Matthias Kuhn 	2012-12-25

    Add different point symbols for QgsRubberband.

Victor Olaya 	2012-12-24

    added missing file with JoinAttributes algorithm

Arunmozhi 	2012-12-24

    changed the parent group id for main groups to 0 from NULL

Alexander Bruy 	2012-12-24

    fix python plugins after API cleanup

Arunmozhi 	2012-12-24

    changed the ungrouped groupid to 0 from NULL

Victor Olaya 	2012-12-24

    adapted mmqgis and sextante algs to changes in management of selected features

Victor Olaya 	2012-12-23

    Added mechanism for better handling selected features in algorithms
    Implemented it in fTools Simplify algorithm

Alexander Bruy 	2012-12-20

    fix tests

Alexander Bruy 	2012-12-20

    remove deprecated methods from API

Larry Shaffer 	2012-11-25

    Add CMake option for custom Python framework on Mac

Larry Shaffer 	2012-12-18

    Keep attribute editor text synchronization from affecting editing

    - Cursor no longer jumps to end of text after each edit (on Mac)
    - Move QgsStringRelay slot definitions into cpp file
    - Fill editable QComboBox with attribute's value in custom forms
    - Add validator to editable QComboBox

Juergen E. Fischer 	2012-12-22

    osgeo4w: switch to GRASS 6.4.3RC2

Victor Olaya 	2012-12-21

    minor fixes for otb and gdal, and edited some grass descriptions

Marco Hugentobler 	2012-12-21

    Paletted raster renderer: replace nodata values in a color table copy before the main loop

Arunmozhi 	2012-12-21

    fix for #6901

Radim Blazek 	2012-12-21

    GRASS Direct test script initial work

Merge: 79947fe a9de654
Marco Hugentobler 	2012-12-21

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2012-12-21

    raster sublayer test Windows fix

Merge: ac52671 0d9dcb5
Marco Hugentobler 	2012-12-21

    Merge branch 'master' of github.com:qgis/Quantum-GIS

dassau 	2012-12-21

    changed german translation for resampling

dassau 	2012-12-21

    small change

Radim Blazek 	2012-12-21

    Use QgsRubberBand constructor with geom type to avoid future break by QgsRubberBand

Radim Blazek 	2012-12-21

    QgsRubberBand constructor fix (it is not possible to call constructor from constructor in C++ (	2012-12-20

    More GRASS direct functions

Radim Blazek 	2012-12-20

    raster creation moved from QgsGdalProvider::create() to GDAL provider extern C function

Werner Macho 	2012-12-20

    translation update: ro by Bogdan

Radim Blazek 	2012-12-20

    NetCDF sublayers test

Alexander Bruy 	2012-12-20

    use normalize path (use native separators, avoid duplicate separators)

Alexander Bruy 	2012-12-20

    use system-wide temp directory for temporary files instead of own dir in
    user profile

Alexander Bruy 	2012-12-20

    fix SEXTANTE CMakeLists.txt

Salvatore Larosa 	2012-11-30

    fix output directory for pyqgis console on installing

Victor Olaya 	2012-12-20

    reorganized native algorithms into one single group

Radim Blazek 	2012-12-19

    More GRASS direct functions

Radim Blazek 	2012-12-19

    raster save as VRT fixes and improvements, fixes #6821

Merge: bcca81b e0d9796
Marco Hugentobler 	2012-12-18

    Merge branch 'crs_transform_cache'

Radim Blazek 	2012-12-18

    Fixed default contrast enhancement for raster multiband / single byte

Juergen E. Fischer 	2012-12-18

    fix warnings

Radim Blazek 	2012-12-18

    Delete raster provider also if invalid

Radim Blazek 	2012-12-18

    GRASS r.bitpattern fix

Radim Blazek 	2012-12-18

    More GRASS direct functions

Radim Blazek 	2012-12-18

    Improved raster singleband pseudocolor classification GUI

Larry Shaffer 	2012-12-18

    Followup to 9069f3b

    - Avoid canvas refresh when new command is added after user clicks back in undo view history

Sandro Santilli 	2012-12-17

    Expose setGroupExpanded to python

Sandro Santilli 	2012-12-17

    Survive when setLayerExpanded is called with a layer unknown by legend

Sandro Santilli 	2012-12-17

    Add QgsAppLegendInterface::setLayerExpanded method

    .. and use it from the db_manager plugin

Radim Blazek 	2012-12-17

    More GRASS direct functions

Sandro Santilli 	2012-12-17

    Fix addGroup() not to refuse invisibleRootItem as the group parent

    Fixes #6879.
    NOTE: if a caller really wants to add a group to current item
          there's a specific method for that: addGroupToCurrentItem

Radim Blazek 	2012-12-17

    Raster statistics and histogram moved from QgsRasterDataProvider to QgsRasterInterface

Radim Blazek 	2012-12-17

    Removed GDAL dependencies where easily possible

Radim Blazek 	2012-12-17

    QgsRasterBlock::DataType moved to QGis::DataType

Alexander Bruy 	2012-12-17

    update anomality images for stingray

Marco Hugentobler 	2012-12-17

    Use coordinate transform cache in maprenderer

Marco Hugentobler 	2012-12-17

    Cache for coordinate transformations

Giuseppe Sucameli 	2012-12-17

    don't break the loop after interior ring while calculating perimeter:

    the returned ptr's pointing to a wrong position whether we break the loop before reading all the points of all the rings.

Merge: cdaebd1 a18cb51
volaya 	2012-12-16

    Merge pull request #360 from slarosa/sextante-issue

    Fixes issue #5505 (sextante/nviz)

Salvatore Larosa 	2012-12-16

    Fixes issue #5505

Radim Blazek 	2012-12-16

    More GRASS direct functions

Marco Hugentobler 	2012-12-16

    Change binding for QgsMapRenderer::render

Alexander Bruy 	2012-12-16

    fix help files installation for TauDEM

Merge: 3b3d1a7 948faef
mhugent 	2012-12-15

    Merge pull request #354 from Oslandia/atlas

    refs #6741

Larry Shaffer 	2012-12-14

    Update labeling tools and make more undo/redo friendly

    - Change QgsVectorLayer::redoEditCommand to only strip invalid QVariants, not null ones
    - Update undo/redo command text to start with action and end with sample of label text
    - Update pin/unpin labels tool to be fully undo/redo-able
    - Store generated label text in QgsLabelPosition (sans direction symbols)
    - Update change label properties dialog to show whether label text is expression

Merge: 33e3925 3a59fd4
Victor Olaya 	2012-12-15

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

    Conflicts:
python/plugins/sextante/grass/ext/CMakeLists.txt

Victor Olaya 	2012-12-15

    added postgis tools to sextante
    edited some grass descriptions and renamed postproc folder (now it is not only for postproc, but also for pre execution checks)

Radim Blazek 	2012-12-15

    More GRASS direct functions

Larry Shaffer 	2012-12-14

    Update undo/redo widget and vector layer rollback

    - Allows for any number of undo/redo commands with only one refresh
    - Significantly decreases time needed to cancel or redo many edits
    - Disable undo/redo dock's widgets and toolbar actions when layer not in editing mode

Sandro Santilli 	2012-12-14

    TopoViewer: make topology group start as collapsed

Sandro Santilli 	2012-12-14

    Initialize all members in Interval constructor.

    Fixes memory conditional jumps depending on uninitialized values
    and as a consequence the unstable results from qgis_expressiontest

    Closes #6877

Sandro Santilli 	2012-12-14

    Fix addGroup to return the integer groupIndex other methods expect

    This commit fixes #6591, although doesn't make the existing
    interface any better than it is, and it is really bad :)
    No plugin should need any adaption with the changes.

Radim Blazek 	2012-12-14

    More GRASS direct functions

Merge: d997863 7e34355
volaya 	2012-12-14

    Merge pull request #358 from slarosa/sextante-issue

    fix for sextante/convexhull tool based on field

Salvatore Larosa 	2012-12-14

    fix for sextante/convexhull tool based on field
    the tool does not work if option "Create convex hulls based on field" is used
    to due of missing some methods. This patch fixes the issue.

Merge: 968c6d8 eff5c20
mhugent 	2012-12-13

    Merge pull request #357 from matthias-kuhn/rb

    Set default rubberband width

Matthias Kuhn 	2012-12-14

    Set default rubberband width
    Was uninitialized, leading to screen corruption
    http://hub.qgis.org/issues/6845

Marco Hugentobler 	2012-12-14

    Set nodata values in raster block

Marco Hugentobler 	2012-12-13

    Implement readBlock in gdal provider for performance reason

Alexander Bruy 	2012-12-14

    move missed CMakeLists.txt to ext directory, fix path

Merge: f2fc33b 2c59866
Victor Olaya 	2012-12-13

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-12-13

    more grass-sextante improvements (mainly fine tuning some algorithms)

dassau 	2012-12-13

    fixed strange translation for clip tool (ftools)

Alexander Bruy 	2012-12-13

    add missed CMakeLists.txt for SEXTANTE GRASS provider

Victor Olaya 	2012-12-12

    added fix by Salvatore Larosa that fixes #6862

Merge: d401a6e f218a39
Victor Olaya 	2012-12-12

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Werner Macho 	2012-12-12

    adding licenses to a few files more - we are under 100 files ..

Alexander Bruy 	2012-12-12

    fix QgsDistanceArea bindings

Merge: 32f0dfd d9a3c99
Marco Hugentobler 	2012-12-12

    Merge branch 'wms_raster_performance'

Marco Hugentobler 	2012-12-12

    Add comment

Marco Hugentobler 	2012-12-12

    Some loop optimisations

Marco Hugentobler 	2012-12-12

    Fix unwanted double reading in last commit

Radim Blazek 	2012-12-12

    More GRASS direct functions for Windows

Marco Hugentobler 	2012-12-12

    Avoid null fill in gdal provider if raster covers the whole requested extent. Enable raster provider code block which was outcommented in earlier commit

Juergen E. Fischer 	2012-12-12

    improve html viewing in identify results window:
    - add print to normal context menu instead of replacing it completely
    - enable inspection with QGISDEBUG
    - allow accessing remote urls
    - use QgsNetworkManager (eg. to allow skip SSL errors or do
      authenticaton)

Hugo Mercier 	2012-12-12

    refs #6741
    Fix resolution issues when printing in raster mode

Merge: e38b222 d584b76
mhugent 	2012-12-12

    Merge pull request #352 from Oslandia/atlas

    Fix atlas composition

Marco Hugentobler 	2012-12-12

    Loop optimisation

Larry Shaffer 	2012-12-07

    Add SVG symbol of QGIS north arrow decoration (provided by ramon)

    - Feature request #6814
    - Converted 'N' text to path and centered

Merge: a4186df c84408e
Victor Olaya 	2012-12-12

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

    Conflicts:
python/plugins/sextante/grass/GrassAlgorithm.py

Victor Olaya 	2012-12-12

    Added DensifyGeometriesInterval.py by @underdark, and fixed existent DensifyGeometries.py

Victor Olaya 	2012-12-12

    Improving GRASS bindings and editing GASS descriptions

Radim Blazek 	2012-12-11

    define extern C also functions implemented in qgsgrassgislib.cpp, it should make functions visible on Windows

Radim Blazek 	2012-12-11

    More info if GRASS modules fails. G__getenv to see if it moves forward on Windows.

Werner Macho 	2012-12-11

    updates to licenses

    Again some updates to clean the whole QGIS tree of unlicensed files.
    Main purpose is to make the source tree checkable by debian licensechecker to clearly state the license of QGIS and find out if everything is compatible.

Merge: 6e8bf84 dcf3ede
Hugo Mercier 	2012-12-11

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

    Conflicts:
src/core/composer/qgsatlascomposition.cpp

Hugo Mercier 	2012-12-11

    Fix the atlas composer: use the stored number of features, instead of featureCount()

Alexander Bruy 	2012-11-29

    make username and password in-out parameters in QgsCredentials bindings

Radim Blazek 	2012-12-11

    G__init_null_patterns GRASS 6.5, fixes #6849

Juergen E. Fischer 	2012-12-11

    fix windows build

Larry Shaffer 	2012-12-10

    Ensure Composer set to zoomFull() when shown from menu or manager

    - Zoom full happens on initial showing or showing after hiding, via user close or spontaneously by os
    - If Composer is open, behind other windows or minimized, zoom state is maintained

Larry Shaffer 	2012-12-10

    Add ability to save parent project when in Composer

Larry Shaffer 	2012-12-09

    Fix aligned multi-line labels for print or image output

Larry Shaffer 	2012-12-10

    Fix GRASS module tools dialog on Mac

    - Show disclosure triangles for QTreeWidget item sections and root (were hidden)
    - Root for tree set to decorated, as double-click to collapse/expand is set, and could hide children

Larry Shaffer 	2012-12-10

    GRASS module env variable fix for Mac

Matthias Kuhn 	2012-12-10

    Transfer ownership of widgets to C++ when pushed to the QgsMessageBar

Radim Blazek 	2012-12-10

    GRASS Direct: Mac DYLD_LIBRARY_PATH fix

Marco Hugentobler 	2012-12-10

    inline more raster block methods

Larry Shaffer 	2012-12-10

    Fix Grass Direct module build on Mac

Alexander Bruy 	2012-12-10

    pass unicode string to TreeSettingItem

Nathan Woodrow 	2012-12-10

    Fix #6843

Werner Macho 	2012-12-10

    added machine readable GPL2 to dxflib

Giuseppe Sucameli 	2012-12-10

    yet another fix following 3da32c00d5

Giuseppe Sucameli 	2012-12-10

    another change missing in 3da32c00d

Giuseppe Sucameli 	2012-12-10

    fix #6842

Giuseppe Sucameli 	2012-12-10

    fix #6847

Giuseppe Sucameli 	2012-12-10

    fix #6846

Giuseppe Sucameli 	2012-12-09

    fix #6848

Giuseppe Sucameli 	2012-12-10

     add fix for file missed in d83ed0aa1a0

Giuseppe Sucameli 	2012-12-09

    do not translate geometry types, change dbmanager translation context names (fix #6837)

Werner Macho 	2012-12-10

    adding license

Juergen E. Fischer 	2012-12-10

    update fake grass library build on windows

Juergen E. Fischer 	2012-12-10

    fix warnings

Juergen E. Fischer 	2012-12-10

    remove trailing blanks

Marco Hugentobler 	2012-12-09

    Store colors directly as qrgb in paletted raster renderer for faster drawing

Marco Hugentobler 	2012-12-09

    Disable block in raster provider for performance reason

Juergen E. Fischer 	2012-12-09

    fix build of fake grass lib

Victor Olaya 	2012-12-08

    fixed #6227

Victor Olaya 	2012-12-08

    improved new algorithm classification mechanism
    fixed #6834

Sandro Santilli 	2012-12-07

    Drop orphaned TopoGeometry objects on deleteFeatures

Sandro Santilli 	2012-12-07

    Add minorVersion() method, fix doc of majorVersion()

Marco Hugentobler 	2012-12-07

    More wms optimisations: create pallabeling only once, take crs from cache

Marco Hugentobler 	2012-12-07

    Optimization in writing raster values in paletted raster renderer

Victor Olaya 	2012-12-07

    added alternative organization in sextante toolbox

Marco Hugentobler 	2012-12-07

    Use CRS cache and avoid sqlite lookup for each request

Radim Blazek 	2012-12-06

    More GRASS direct modules

Merge: ef6da72 fc22a6f
mhugent 	2012-12-06

    Merge pull request #341 from matthias-kuhn/rubberband-point

    Allow the rubberband to display points

Radim Blazek 	2012-12-06

    GRASS compilation fix 2

Radim Blazek 	2012-12-06

    GRASS compilation fix

Radim Blazek 	2012-11-09

    GRASS Direct

Sandro Santilli 	2012-12-06

    Fetch topological layer info at construction time

    Simplify addFeatures and changeGeometryValues accordingly

Tim Sutton 	2012-12-06

    Code and comment tidy up in geometry clip test

Tim Sutton 	2012-12-06

    Transfer ownership of transparency to prevent crashing python apps.

Merge: b304df8 8a90e2c
mhugent 	2012-12-06

    Merge pull request #345 from bischofia/joined_minmax

    fix references to joined fields of vector layer

Werner Macho 	2012-12-06

    adding missing files to basque translation

Giuseppe Sucameli 	2012-12-06

    fix #6817 (introduce with a1a1fb7be)

Giuseppe Sucameli 	2012-12-06

    fix fields creation importing layers to PG

Juergen E. Fischer 	2012-12-05

    remove trailing whitespace

Juergen E. Fischer 	2012-12-05

    fix warning

Giuseppe Sucameli 	2012-12-05

    dbmanager: minor fixes

Giuseppe Sucameli 	2012-11-30

    do not use st_multi when SL < 2.4 (follow 2469c5aa17)

Giuseppe Sucameli 	2012-11-29

    SL provider: convert geometries to multipart when necessary (fix #6257)

Giuseppe Sucameli 	2012-12-05

    import vector layer: allow to create single-part geometries from shapefile (follow 08e844f6d06)

Alexander Bruy 	2012-12-05

    connect missed signal

Werner Macho 	2012-12-05

    add missing FindQextserialport.cmake to complete issue #6613

Giuseppe Sucameli 	2012-12-05

    fix SL provider (follow 90972db78a):

    fix build linking SL < v4,
    fix SL4 database version check,
    rename SPATIALITE_RECENT_VERSION macro to the more significant SPATIALITE_VERSION_GE_4_0_0,

Giuseppe Sucameli 	2012-12-05

    dbmanager: allow to import layer from canvas (fix #6824),
    add dialog to choose vector file to be imported (fix #6825),
    allow to export table to vector file (fix #6826)

    Thanks to Silvio Grosso for the sponsorship!

Juergen E. Fischer 	2012-12-04

    german translation update

Juergen E. Fischer 	2012-12-04

    fix indentation and some translation strings

Alexander Bruy 	2012-12-04

    fix typo

Merge: d32a377 47097b7
Giuseppe Sucameli 	2012-12-04

    Merge pull request #346 from brushtyler/splite4_provider

    update SL provider to use SpatiaLite v4 features

Alexander Bruy 	2012-12-04

    add missed renderer capabilities to Python bindings

Victor Olaya 	2012-12-04

    Grass bindings improvements in SEXTANTE
    Fixed minor bugs in SAGA an GDAL merge algorithms

Marco Hugentobler 	2012-12-03

    Allow connection with local ident on non-standard port

Alexander Bruy 	2012-12-03

    checkable action for toolbox and cleanup

Alexander Bruy 	2012-12-03

    create help edition dialog from .ui

Alexander Bruy 	2012-12-01

    add placeholder text for filters

Alexander Bruy 	2012-12-01

    create modeller dialog from .ui file

Alexander Bruy 	2012-12-01

    create config dialog from .ui
    add tooltips to search boxes

Alexander Bruy 	2012-11-12

    use QgsFilterLineEdit in toolbox instead of own implementation

Alexander Bruy 	2012-12-01

    create history dialog from .ui file

Alexander Bruy 	2012-10-30

    new sexy lineedit widget with builtin clear button

Alexander Bruy 	2012-10-30

    create results viewer dialog from .ui

Alexander Bruy 	2012-10-30

    create toolbox from .ui file
    add clear button to filter (fix #5695)

Sandro Santilli 	2012-12-03

    Properly encode direction symbols in style templates (#6812)

    NOTE: this commit does NOT fix the project save operation,
          but only an output of that operation

Juergen E. Fischer 	2012-12-03

    fix #6800 (introduced with 0dc01f5ff)

Larry Shaffer 	2012-12-03

    Update text and tips for mActionSaveAllEdits

    - Add separator to Layers menu to organize attribute table functions

Victor Olaya 	2012-12-03

    corrected copyright headers

Giuseppe Sucameli 	2012-11-30

    SLD support: export local svg paths to URI (fix #6792)

Giuseppe Sucameli 	2012-11-30

    move svg utils functions to the symbollayerv2utils class

Giuseppe Sucameli 	2012-12-02

    fix segfaults and memory leaks in sip files (fix #6805)

Merge: 5cf1c77 871d4e8
Giuseppe Sucameli 	2012-12-02

    Merge pull request #348 from slarosa/sextante-issue

    fixes #6228 (slarosa think definitely, and so do I :))

Salvatore Larosa 	2012-12-02

    fixes #6228 (I think definitely)

Sandro Santilli 	2012-11-06

    Initial support for adding new TopoGeometry objects

Werner Macho 	2012-12-02

    Name change for language

Werner Macho 	2012-12-02

    translation update: gl_ES by Xan

Juergen E. Fischer 	2012-12-02

    fix 45a933a4

Larry Shaffer 	2012-12-01

    Add edit-saving actions to iface

Larry Shaffer 	2012-12-01

    Add legend icon for editable layers with unsaved edits

Larry Shaffer 	2012-12-01

    Add 'Save All Edits' action to layers menu and digitizing toolbar

Juergen E. Fischer 	2012-12-02

    german translation update

Werner Macho 	2012-12-02

    adding missing copyright to files

Juergen E. Fischer 	2012-12-01

    indentation update

Juergen E. Fischer 	2012-12-01

    fix #6803

Alexander Bruy 	2012-12-01

    add tooltips for groups and providers (fix #5951)

Merge: e7995cf 69308d3
Magnus Homann 	2012-12-01

    Merge pull request #343 from homann/qgsexpression_DA

    Settings for measurements ellipsoid moved, fix for #3296 and #4252.

Radim Blazek 	2012-12-01

    customization enable fix

Radim Blazek 	2012-12-01

    global customization enable checkbox

Radim Blazek 	2012-12-01

    more precise layer min/max scale description + icon

pcav 	2012-12-01

    IT GUI translation

pcav 	2012-11-30

    Load layer in canvas Checked (fixes #6641)

Merge: 047127b 635e19a
volaya 	2012-11-30

    Merge pull request #342 from slarosa/master

    fix for #6749 and #6278

Giuseppe Sucameli 	2012-11-30

    [FEATURE] update SL provider to use statistics (available from spatialite v4.0).

    Patch by Alessandro Furieri.

Werner Macho 	2012-11-30

    added Basque language on request .. this is our 50! Language!

Merge: 9342a9c aab08cb
Marco Hugentobler 	2012-11-30

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2012-11-30

    [FEATURE]: use a custom linestyle for composer grid

Minoru Akagi 	2012-11-30

    fix references to joined fields of vector layer

D'Hont René-Luc 	2012-11-30

    Remove InsertResults

Giuseppe Sucameli 	2012-11-30

    import vector layer: pass empty geometry column importing non-spatial table, do not deference null pointer (fix #6728)

D'Hont René-Luc 	2012-11-30

    WFS-T debugging and using provider for adding features

Marco Hugentobler 	2012-11-30

    Fix saving of excluded attributes for wms/wfs server

Victor Olaya 	2012-11-30

    fixed #6759 and #6228

Merge: 6d71876 1a7ccd0
Victor Olaya 	2012-11-30

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Giuseppe Sucameli 	2012-11-29

    fix crash adding features containing missing attributes (fix #6791)

Etienne Tourigny 	2012-11-29

    browser: add Fast Scan option for directories, when activated its items will only be checked for extension, not content

Etienne Tourigny 	2012-11-20

    fix legend refresh

Etienne Tourigny 	2012-11-20

    browser: fix mModel vs. mProxyModel index

D'Hont René-Luc 	2012-11-29

    Intersect Filter capabilities

D'Hont René-Luc 	2012-11-29

    First CITE compatibility

Giuseppe Sucameli 	2012-11-29

    dbmanager: avoid duplicate field error (fix #6279)

Giuseppe Sucameli 	2012-11-28

    dbmanager: fix #5812,
    move PG informations to postgis/info_model.py

Giuseppe Sucameli 	2012-11-28

    dbmanager: display info about missing modules on the info panel instead of on the status bar

Giuseppe Sucameli 	2012-11-28

    create multipart layers whether the input is a singlepart shapefile (fix #5547)

Giuseppe Sucameli 	2012-11-28

    dbmanager: use a default value for varchar limit (follow a4484b217ed)

Larry Shaffer 	2012-11-28

    Update QgsLegend::selectedLayers() and add to QgsLegendInterface

    - Add option to return selected layers in drawing order

Merge: a448f6a a4484b2
Magnus Homann 	2012-11-28

    Merge branch 'master' into qgsexpression_DA

Giuseppe Sucameli 	2012-11-28

    dbmanager: fix #6511

Giuseppe Sucameli 	2012-11-28

    fix #6777

Nathan Woodrow 	2012-11-28

    Fix #6764 again.  Replace backslash for python code only

Nathan Woodrow 	2012-11-28

    Fix #6764

Merge: c989673 ee12df2
Tim Sutton 	2012-11-28

    Rebase failed - merging branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-11-28

    Test improvements - moved writeShape to utilities for DRY. Added clip test to geometry python tests.

Victor Olaya 	2012-11-28

    Fixed some minor bugs in sextante algs
    Removed SAGA Split algorithms

Larry Shaffer 	2012-11-27

    Add option to set inside and outside maximum for delta angle between curved label characters

    - Addresses #6763, #6673 and #2113, but does not perform any feature simplification
    - Recommend adding some letter [and word] spacing before applying any delta angle adjustment

Larry Shaffer 	2012-11-27

    Add access to QgisApp's mActionCopyStyle and mActionPasteStyle to QgisInterface

Giuseppe Sucameli 	2012-11-27

    fix #6769

Giuseppe Sucameli 	2012-11-27

    fix build with Qt < 4.8

Giuseppe Sucameli 	2012-11-27

    fix qgis-server crash moving QCursor to the GUI classes (follow 454c732a3)

Marco Hugentobler 	2012-11-27

    Consider alpha value for annotation rectangle in QGIS server

Salvatore Larosa 	2012-11-27

    fix for #6749 and #6278

Merge: a757935 4cfdba4
Alexander Bruy 	2012-11-27

    Merge branch 'identify_improvements'

Alexander Bruy 	2012-11-22

    put back to derived attrs clicked coordinates

Alexander Bruy 	2012-11-22

    add perimeter to derived attributes for polygonal geometries

Juergen E. Fischer 	2012-11-27

    fix build with Qt<4.8 and some doxygen warnings

Giuseppe Sucameli 	2012-11-27

    [FEATURE] add support to SVG images from url.

    Work done for Regione Toscana-SITA

Merge: 6e24c16 b54c3bf
Giuseppe Sucameli 	2012-11-26

    Merge pull request #340 from slarosa/master

    Changed import sextante class entry according to 6173fa3 (PyQGIS Console)

Matthias Kuhn 	2012-11-14

    Add some comments

Matthias Kuhn 	2012-11-14

    SIP bindings for point rubberband.

Matthias Kuhn 	2012-11-14

    Extend QgsRubberBand to support points.

Salvatore Larosa 	2012-11-26

    changed import sextante class entry according to 6173fa3

Merge: 4dc85e4 6e24c16
Magnus Homann 	2012-11-26

    Merge branch 'master' into qgsexpression_DA

Magnus Homann 	2012-11-26

    Removed ellipsoid settings from QgsOptions

Merge: afeb497 f1ab2db
Werner Macho 	2012-11-26

    Merge pull request #339 from kimaidou/myqgis

    Correct french translation of print composer legend properties

Michael Douchin 	2012-11-26

    Correct french translation of print composer legend properties

D'Hont René-Luc 	2012-11-26

    Replace OnlineResource by onlineResource

D'Hont René-Luc 	2012-11-26

    QGIS Server WFS Capabilities schemaLocation updated

Werner Macho 	2012-11-26

    translation update: small changes in vector menu

Alexander Bruy 	2012-11-26

    [FEATURE] Possibility to save error messages as shapefile from check
    geometry validity tool. Contributed by Salvatore Larosa

Merge: 9f71d9f 838864f
Werner Macho 	2012-11-26

    Merge pull request #335 from giohappy/master

    projectSaved SIGNAL added to QgsProject

Merge: a0c8b5c 755707d
Werner Macho 	2012-11-25

    Merge pull request #338 from simon04/too_many_classes

    Abort classification upon high number of classes

Juergen E. Fischer 	2012-11-25

    t2t fixes

Magnus Homann 	2012-11-25

    Changed to QgsProject also in qgscompersscalebar

Simon Legner 	2012-11-25

    Abort classification upon high number of classes

Magnus Homann 	2012-11-25

    Using QgsProject settings instead, not fully tested

Magnus Homann 	2012-11-24

    Copied ellipsoidal settings to project properties

Merge: 21370d9 b60a00f
Werner Macho 	2012-11-23

    Merge pull request #337 from gioman/master

    PT_PT translations courtesy of Pedro Palheiro

Larry Shaffer 	2012-11-20

    Add extra check on project close for any layer in edit mode with unsaved edits

    - Ensures user has opportunity to save provider edits
    - Make project dirty if any unsaved edits found
    - Add red notification to project save prompt dialog, and set Cancel to default
    - Fix for #6054 and #6732

Merge: 1f1448d 7f8768a
Magnus Homann 	2012-11-23

    Update from master

Vânia Neves 	2012-11-23

    PT_PT translations courtesy of Pedro Palheiro

Merge: e5dae02 dd1d4b5
Marco Hugentobler 	2012-11-23

    Merge branch 'wms_layer_opacity'

Marco Hugentobler 	2012-11-23

    Small cleanup

Marco Hugentobler 	2012-11-23

    Use lists for opacity params inside wms server

Nathan Woodrow 	2012-11-24

    [FEATURE] Add CLI option for customization file

Marco Hugentobler 	2012-11-23

    Also support layer transparency in server for old symbology

Marco Hugentobler 	2012-11-23

    [FEATURE]: wms server has possibility to set transparency on layer/group level

Marco Hugentobler 	2012-11-23

    Remove double content from wmsserver (probably a merging artifact)

Giuseppe Sucameli 	2012-11-23

    fix build

Marco Hugentobler 	2012-11-22

    Keep legend drawing order as default

Marco Hugentobler 	2012-11-22

    Server: fix layer order in GetProjectSettings request

Tim Sutton 	2012-11-22

    Remove expectedFailure decorator for vector file writer test. Small doc updates for vfile writer

Tim Sutton 	2012-11-22

    ../src/core/qgsvectorfilewriter.h

Tim Sutton 	2012-11-22

    Better annotation of vector file writer api changes

Larry Shaffer 	2012-11-21

    Pass path to Qt plugins when Mac bundle is run from build directory

Larry Shaffer 	2012-11-21

    Better fix for QgsVectorFileWriter segfault and test

    - Revert test to 735c255 commit, excepting 'assert myResult==QgsVectorFileWriter.NoError' edit

Larry Shaffer 	2012-11-21

    Fix for PyQgsVectorFileWriter test segfault on Mac

    - Initialize newFilename to QString(), or QgsDebugMsg for newFilename segfaults (line 650)
    - Set test assert to QgsVectorFileWriter::WriterError enum for success (NoError = 0, i.e. false)

Larry Shaffer 	2012-11-21

    Fix for quick left-then-right clicks incorrectly registering as double left on Mac

Radim Blazek 	2012-11-21

    composer legend optional space between columns

Radim Blazek 	2012-11-21

    composer multicolumn legend: division to columns heuristic, optional splitting layers into multiple columns, optional equal column width

giohappy 	2012-11-21

    Update src/core/qgsproject.h

    defined projectSaved() SIGNAL emitted when the project file has been written and closed

giohappy 	2012-11-21

    Update src/core/qgsproject.cpp

    emit projectSaved SIGNAL when the project file is saved and closed

Merge: 0893db7 d673606
Marco Hugentobler 	2012-11-21

    Merge branch 'drawing_order_embedded'

Marco Hugentobler 	2012-11-21

    Another fix for embedded groups and drawing order. Deactivated the server method for now as it still needs to be adapted

Victor Olaya 	2012-11-20

    fixed #6737

Victor Olaya 	2012-11-20

    fixed #6738

D'Hont René-Luc 	2012-11-20

    Better WFS service exception management

Marco Hugentobler 	2012-11-20

    More drawing order related changes...

Marco Hugentobler 	2012-11-20

    Synchronize check states between legend and layer order widget

Merge: cb07ae4 0533e2d
Victor Olaya 	2012-11-20

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Marco Hugentobler 	2012-11-20

    Implement addDrawingOrder for wms server under consideration of embedded groups

Victor Olaya 	2012-11-20

    cleaned BatchProcessingDialog code

Merge: bab4395 ddb5117
mhugent 	2012-11-19

    Merge pull request #332 from bischofia/shp_enc

    turn ignoreShapeEncoding option ON by default

Larry Shaffer 	2012-11-19

    Add ability to save PAL engine settings to project file (OFF by default)

    - Add 'Save settings with project' checkbox to engine settings dialog
    - Add Restore Defaults button to engine settings dialog
    - Unchecking 'save with project' will clear settings in project file on save

Minoru Akagi 	2012-11-20

    set ignoreShapeEncoding option on by default

Victor Olaya 	2012-11-19

    Improvementes to SEXTANTE batch processing interface
    Better progress handling in SEXTANTE script algorithms

Radim Blazek 	2012-11-19

    keep extent of overview set to union of extents of layer in overview; dont shrink on resize; fixes #1788

Marco Hugentobler 	2012-11-19

    Background color option for svg annotation. Save frame transparency (was missing also for text annotation)

Marco Hugentobler 	2012-11-19

    Set better window titles for svg annotation

Marco Hugentobler 	2012-11-19

    Fix loading / saving of layer order with embedded group

Marco Hugentobler 	2012-11-19

    Implement embedded group aware drawing order mechanism (load/save to xm does not yet work)

Alexander Bruy 	2012-11-19

    add missed images to SEXTANTE algorithm help files

Victor Olaya 	2012-11-19

    made SEXTANTE command line usage more pythonic
    Fixed problem with temporary grass mapset created by SEXTANTE (wrong path)

D'Hont René-Luc 	2012-11-18

    WFS QGIS Server OnlineResource is an attribute in GetCapabilities for DCPType

D'Hont René-Luc 	2012-11-18

    Add Post capabilities to DescribeFeature

D'Hont René-Luc 	2012-11-18

    #6608 QGIS crashes when used as WFS client together with QGIS server because of exportToGML2 MultiPolygon has empty coordinates

D'Hont René-Luc 	2012-11-18

    XML Schema has attribute elementFormDefault and not elementFromDefault

Radim Blazek 	2012-11-18

    graduated renderer GUI DnD and sort; categorized symbol GUI better drop indicator

Merge: 28531f3 3f40232
Victor Olaya 	2012-11-18

    minor change to last commit fixing #6635

Victor Olaya 	2012-11-18

    fixed #6635. Partial solution, now it goes to (0,0) upon model loading

Victor Olaya 	2012-11-18

    fixed #6635. Partial solution, now it goes to (0,0) upon model loading

Etienne Tourigny 	2012-11-17

    add All Ramps items in tree widget

Etienne Tourigny 	2012-10-07

    store relative cpt-city paths for portability

Etienne Tourigny 	2012-10-07

    adjust .sip file after rebase

Etienne Tourigny 	2012-10-07

    allow to convert cpt-city ramps to standard gradients ramps, keeping author and license info in xml props ; allow to convert gradient ramps to/from discrete/continuous ramps and use float instead of integer stops

Etienne Tourigny 	2012-09-22

    make QgsCptCityColorRampV2 subclass of QgsVectorGradientColorRampV2 and adjust both accordingly (changed stops map to list)

Radim Blazek 	2012-11-17

    composer legend single column box width fix

Merge: 845edd9 01775ce
Giuseppe Sucameli 	2012-11-16

    Merge pull request #330 from slarosa/master

    minor fix for python console

Salvatore Larosa 	2012-11-16

    icon changed for hide/show toolbar action

Salvatore Larosa 	2012-11-16

    minor fix for console help dialog

D'Hont René-Luc 	2012-11-16

    Better support of TypeName and FeatureId in QGIS Server WFS

Nathan Woodrow 	2012-11-07

    [FEATURE] Add --code arg to run python code on qgis load

Larry Shaffer 	2012-11-14

    Update to limit of number of features sent to PAL

    - Distributes max number across total number of features registered in PAL
    - Caveat: PAL may not show label for every registered feature

Merge: 5bc0a8a 6abedba
Jürgen Fischer 	2012-11-15

    Merge pull request #320 from matthias-kuhn/fix-attredit

    Fix for http://hub.qgis.org/issues/6647

Merge: 5053818 1237546
Jürgen Fischer 	2012-11-15

    Merge pull request #328 from slarosa/master

    Add action: Hide/Show toolbar for PyQGIS Console

Juergen E. Fischer 	2012-11-16

    fix another build error and some warnings

Juergen E. Fischer 	2012-11-16

    fix build error

Juergen E. Fischer 	2012-11-16

    ignore no ssl error error

Victor Olaya 	2012-11-15

    applied fix for #6127 (problems with non-ascii strings

Merge: 10a57ad 7d0d5d3
Victor Olaya 	2012-11-15

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Etienne Tourigny 	2012-11-15

    scanItemsInBrowser2/scanZipInBrowser2 : remove QgsApplication::upgradeConfig() and fix tests

D'Hont René-Luc 	2012-11-15

    DescribeFeatureType support namespace

D'Hont René-Luc 	2012-11-15

    DescribeFeatureType improvement

Tim Sutton 	2012-11-15

    Unit test updates - mark bad tests as expectedFailure

Tim Sutton 	2012-11-15

    Mark vector file writer test as expected to fail.

D'Hont René-Luc 	2012-11-15

    Correcting tests from test_qgsrectangle.py

Victor Olaya 	2012-11-15

    fixed problem when running grass in modeler (wrong output names, it was a problem introduced by the grass session functionalities)
    reverted shell=true in R execution
    Removed help files help menu

Merge: 36da82a 3f4f5f0
Martin Dobias 	2012-11-14

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Sandro Santilli 	2012-11-14

    Set max number of labels to 100 for edge label layer (topoviewer)

Sandro Santilli 	2012-11-14

    Limit max number of node labels to 100, and candidate positions to 1

    Also set layer transparency to 100% (there's a separate layer with the dots)

D'Hont René-Luc 	2012-11-13

    Validation after merging

D'Hont René-Luc 	2012-11-12

    Add geometric method

D'Hont René-Luc 	2012-11-09

    Add CQL_FILTER to WFS for QgsExpression

D'Hont René-Luc 	2012-11-09

    QgsRectangle From GML2

D'Hont René-Luc 	2012-11-09

    Ending spatial test

D'Hont René-Luc 	2012-11-08

    First spatial test

D'Hont René-Luc 	2012-11-05

    Remove QgsExpression::SpatialNode and the Server QgsFilter use in QGIS WFS Server

D'Hont René-Luc 	2012-11-05

    First test with Qvariant QgsGeometry*

D'Hont René-Luc 	2012-10-29

    Add Spatial Operator to QgsExpression and use it in QGIS WFS Server

D'Hont René-Luc 	2012-10-18

    #2781 Relative paths to SvgMarker doesn't work in new symbology

D'Hont René-Luc 	2012-11-14

    Remove the capability to not get geometry in WFS GetFetaure request

Alexander Bruy 	2012-11-14

    fix warnings

Larry Shaffer 	2012-11-13

    Add option to limit number of labels rendered per layer (OFF by default)

    - Initial limit set to 2000
    - Results would look better if limited subset was a random sampling of all features

Salvatore Larosa 	2012-11-13

    changes console help in window modal

Etienne Tourigny 	2012-11-13

    fix promptForRasterSublayers=Load all

Etienne Tourigny 	2012-11-13

    fix loading rasters with sublayers from commandline and add raster command

Radim Blazek 	2012-11-13

    multicolumn composer legend

Alexander Bruy 	2012-11-13

    deactivate TauDEM provider by default

Merge: 3b88637 543ac03
mhugent 	2012-11-13

    Merge pull request #329 from matthias-kuhn/diagram

    Diagrams: Hide background color button when unnecessary

Matthias Kuhn 	2012-11-13

    Diagrams: Hide background color button when unnecessary

Salvatore Larosa 	2012-11-12

    Added action: Hide/Show toolbar for PyQGIS Console
    - image help update

Victor Olaya 	2012-11-12

    fixed #6571

Sandro Santilli 	2012-11-12

    Use ASCII direction arrows

Merge: 4195eaf aaded5a
Werner Macho 	2012-11-12

    Merge pull request #327 from slarosa/master

    Updating for translation in console help

Salvatore Larosa 	2012-11-12

    Update the console help:
    - update italian/english translations

Sandro Santilli 	2012-11-12

    TopoViewer: add direction symbol for "next_right_edge" layer

Alexander Bruy 	2012-11-12

    Ukrainian translation update

Merge: e11ee59 4496c74
Alexander Bruy 	2012-11-12

    Merge branch 'sextante_user_dir'

Alexander Bruy 	2012-11-12

    add missed scripts to examples group

Alexander Bruy 	2012-11-12

    put sextante config dir under ~/.qgis (fix #6662)
    also fix scripts lookup

Alexander Bruy 	2012-11-12

    remove patch from sources

Alexander Bruy 	2012-11-12

    get rid of "&" symbol in SAGA description and help files

Alexander Bruy 	2012-11-12

    fix installing SEXTANTE sample modeles and scripts

Victor Olaya 	2012-11-12

    Added new vector algorithms

Larry Shaffer 	2012-11-11

    Remove old direction symbol option from labeling gui

Larry Shaffer 	2012-11-10

    Add custom line direction symbols to labeling

    - Options to place symbol above or below label text
    - Option to reverse symbol direction
    - Add character selector dialog for single font to src/gui

Merge: c4b74c9 b2eb1c1
Giuseppe Sucameli 	2012-11-11

    Merge pull request #325 from slarosa/master

    Updating help and minor changes for console

Salvatore Larosa 	2012-11-11

    updating help and minor changes for console

Radim Blazek 	2012-11-11

    Categorized vector GUI DnD and sorting, fixes #2816

Werner Macho 	2012-11-11

    translation update: and add swahili language coordinator

Werner Macho 	2012-11-11

    translation update: added swahili on request

Victor Olaya 	2012-11-11

    Fixed #6619

Marco Hugentobler 	2012-11-10

    Zonal statistics: avoid access to pixels outside the raster. Fixes ticket #6624

Werner Macho 	2012-11-10

    translation update: gl_ES by XAN

Larry Shaffer 	2012-11-09

    Add data defined option to always show a label, unless overridden

    - Label is skipped during PAL priority calculation, permitting collisions and overlaps
    - Overridden by layer and data defined 'scale/pixel size visibility' and data defined 'show label'  options
    - Add option to Change Label tool

Nathan Woodrow 	2012-11-04

    [FEATURE] Add ability to create user defined Python (and C++) expression functions

Victor Olaya 	2012-11-10

    disabled postgis algs until they are ready

Merge: 27f197c e5f07ed
Victor Olaya 	2012-11-10

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-11-10

    fixed problems with missing example scripts folder
    Restructured gdal tools (now gdal/ogr)
    Added new OTB segmentation algos

Larry Shaffer 	2012-11-07

    Add pixel size limiting for labels defined in map units

    - Allows user to quickly set visibility thresholds based upon text legibility
    - By default initially on for map unit labels to skip rendering at sizes < 3 px

Merge: a2d4347 17c5e37
volaya 	2012-11-09

    Merge pull request #324 from giohappy/master

    Quote input vector/raster path parameter in Sextante SagaAlgorithm

giohappy 	2012-11-09

    Update python/plugins/sextante/saga/SagaAlgorithm.py

    Add quotes to input vector/raster paths parameters

Alexander Bruy 	2012-11-09

    [FEATURE] Eliminate tool for fTools, contributed by Bernhard Strobl

Merge: 716e188 05aca2b
alexbruy 	2012-11-09

    Merge pull request #323 from sanak/ftools-dissolve-line

    Add line layer support for dissolve function (fix #5059)

Merge: 3f72a6a 36452a8
mhugent 	2012-11-09

    Merge pull request #321 from matthias-kuhn/rubberband

    [FIX]: Build rubberband completely even with incomplete input

Tim Sutton 	2012-11-09

    Added from uri test for mem provider. Simplified the vector writer test.

Merge: 3564eae 3250221
Giuseppe Sucameli 	2012-11-09

    Merge pull request #322 from matthias-kuhn/ellipsemarker

    Alpha for ellipse marker (fix #6668)

Matthias Kuhn 	2012-11-09

    [FIX] Alpha for ellipse marker
    http://hub.qgis.org/issues/6668

sanak 	2012-11-06

    add line layer support for dissolve function.

Tim Sutton 	2012-11-09

    Added unit test for vector file writer as it is currently segfaulting in master

Juergen E. Fischer 	2012-11-09

    debian packaging update

Matthias Kuhn 	2012-11-09

    [FIX]: Build rubberband completely even with incomplete input
    An empty polyline in a mulipolyline led to the rubberband ignoring all further polylines.
    e.g. addGeometry( [[(1,2)(2,3)][][(2,3)(3,4)]] ) was ignoring the polyline (2,3)(3,4).

Sandro Santilli 	2012-11-08

    Fix next edge label direction arrows

    Basically uses direction indicator for the next_left but omits
    it for the next_right (would require backward direction)

    Also this commit sets the line color, even if fully transparent,
    for the sake of showing a color which corresponds to the label
    color (would be better to have support for a "label" kind of icon
    in the legend..)

Sandro Santilli 	2012-11-08

    Split edge layer into "edge" and "edge label"

    Mind you: you may need to re-run cmake as a filename changed

Larry Shaffer 	2012-11-08

    Fix for #6658, update duplicateLayers() to work around odd layer group segfault bug

    - Move QgsLegend::findLegendLayer() methods to public

Matthias Kuhn 	2012-11-08

    No need to register QgsStringRelay with Qt Meta Type

Victor Olaya 	2012-11-08

    fixed missing scripts folder

Matthias Kuhn 	2012-11-08

    Add python bindings for setEditorLayout

Matthias Kuhn 	2012-11-08

    Attribute Editor: Synchronize editable QComboBox for LineEdit's and similar.
    Fixes http://hub.qgis.org/issues/6647

Marco Hugentobler 	2012-11-08

    Ticket #6643 Interpolation plugin: the option to load a layer after analyses should be on by default

Larry Shaffer 	2012-11-07

    Add letter and word spacing to curved labels for line layers

    - Curved spacings match Qt-produced spacings for parallel (and other) labels
    - Remove redundant letter/word resetting in options gui
    - Remove on-fly adjustments to spinbox steps (only made sense with UTM, not LatLong)

Sandro Santilli 	2012-11-08

    Split node layer into "node" and "node label"

Victor Olaya 	2012-11-08

    Harcoded example folder for models and scripts
    fixed bugs in mmqgis library.

Juergen E. Fischer 	2012-11-07

    osgeo4w: fix crssync run if installed into a directory with blanks

Sandro Santilli 	2012-11-07

    Fix layer visibility settings

Victor Olaya 	2012-11-07

    restructured admintools (was geoservertools)

Alexander Bruy 	2012-11-07

    create directories for models and R script in user folder

Larry Shaffer 	2012-11-07

    Update QgsMessageBar sip binding

Larry Shaffer 	2012-11-07

    Update to QgsMessageBar stylesheet

Tim Sutton 	2012-11-07

    Enabled some tests that werent running because they missed test prefix in method name. Better error messages for failing tests

Radim Blazek 	2012-11-07

    vector save as: separated MITAB and MIF formats, fixes #6233; added test if OGR SpatiaLite is available

Marco Hugentobler 	2012-11-07

    Ticket #6644 terrain analysis plugin: the option to load a layer after analyses should be on by default

Marco Hugentobler 	2012-11-07

    Fix bug #6582: QGIS server displayes text layers only with absolute pathes

Juergen E. Fischer 	2012-11-07

    fix some attribute editor signals

Juergen E. Fischer 	2012-11-07

    fix layer extent calculation

Larry Shaffer 	2012-11-05

    Update to QgsMessageBar and duplicateLayers()

    - Move project macros message into project open method (as app property, partially showed behind later messages)
    - Support for multi-line messages that also wrap at with canvas window width
    - Update text stylesheets to handle all text styling
    - Show count of remaining queued messages
    - Add popup menu to Close button with action to optionally close all messages at once
    - Add slot to clear all widgets, called on project close
    - Update QgisApp::duplicateLayers() to use QgsMessageBar instead of popup dialogs

Etienne Tourigny 	2012-11-06

    add QgsApplication::upgradeConfig to upgrade any configs that changed from 1.8
    use different keys for scanItemsInBrowser and scanZipInBrowser in qgis-1.9 because new storage type (string vs. int) causes conflicts with 1.8

Radim Blazek 	2012-11-06

    vector feature counts moved to vector layer, enabled feature counts in composer legend, fixes #6237

Juergen E. Fischer 	2012-11-06

    make html print option more visible in identify tool

Juergen E. Fischer 	2012-11-06

    add missing GUI_EXPORT to QgsSvgAnnotationItem

Merge: f410e38 550a2c6
Marco Hugentobler 	2012-11-06

    [FEATURE]: svg- and text items can be used as watermarks in QGIS server. Developed for Faunalia ( http://www.faunalia.it) with funding from Regione Toscana \- Settore SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE

Victor Olaya 	2012-11-06

    Added missing cmake files
    fixed bug in execution dialog when running iterative algorithms

Merge: a2e6a48 ff78ef1
Victor Olaya 	2012-11-06

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Marco Hugentobler 	2012-11-05

    Save / restore settings for annotation tools. Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Settore SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE

Marco Hugentobler 	2012-11-05

    Consistent names for Svg classes. Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Settore SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE

Marco Hugentobler 	2012-11-05

    QGIS server: ignore svg items not fixed to pixel position. Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Settore SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE

Marco Hugentobler 	2012-11-05

    Print svg item in qgis server. Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Settore SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE

Juergen E. Fischer 	2012-11-06

    fix build error (please stick with C++)

Larry Shaffer 	2012-11-05

    Set transparent background only for Close tool button, instead of also for tool tip

Victor Olaya 	2012-11-06

    code cleaning

volaya 	2012-11-05

    Update python/plugins/sextante/CMakeLists.txt

    added servertools folder to cmakelists

Radim Blazek 	2012-11-05

    fixed warning

Larry Shaffer 	2012-11-05

    Add Atlas generation dock to Composer's View->Panels menu

Merge: d53f123 5de2fee
Victor Olaya 	2012-11-05

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-11-05

    cleaned code in geoserver algs

Radim Blazek 	2012-11-05

    add total feature count in legend, fixes #3402

Victor Olaya 	2012-11-05

    fixed #6571, #6619 and problem with missing arrows in modeler
    added first draft of geoserver tools
    nviz is back in grass tools

Etienne Tourigny 	2012-11-05

    check for existence of icon file in plugin manager

Juergen E. Fischer 	2012-11-05

    german translation update

Juergen E. Fischer 	2012-11-05

    allow saving single geometries as multi geometries

Juergen E. Fischer 	2012-11-05

    add CORE_EXPORT to QgsAttributeEditorElement/QgsAttributeEditorContainer/QgsAttributeEditorField

Sandro Santilli 	2012-11-05

    Only change the TopoGeometry definition, not its reference, on edit

    Refactor the TopoGeometry editor to avoid touching the edited table
    and directly act on the topology relation instead. Fixes #6621 but
    also generally makes less writes to the database.

Sandro Santilli 	2012-11-05

    Start all topology layers as invisible (it may cost really a lot to visualize...)

Sandro Santilli 	2012-11-05

    Add alias to pk query, fixing ambiguous "ctid" reference (#6620)

Juergen E. Fischer 	2012-11-05

    fix warnings

Merge: 08b05f3 38f82d3
Giuseppe Sucameli 	2012-11-04

    Merge pull request #316 from slarosa/master

    Minor changes for layout in console

Salvatore Larosa 	2012-11-04

    minor changes for layout in console:
    - moved header text in output area
    - add default value to True for Use preloaded API option in settings dialog
    - include traceback to codepad link

Juergen E. Fischer 	2012-11-04

    fix debug build

Matthias Kuhn 	2012-11-04

    Merged Squashed pull request #296 (tabs and groups for feature form)

Juergen E. Fischer 	2012-11-04

    fix windows build (CORE_EXPORT missing from QgsDirectoryParamWidget)

Giuseppe Sucameli 	2012-11-04

    grass plugin: avoid garbled japanese/cyrillic chars in the tools' GUI (fix #4547, #3164)

    Thanks Minoru Akagi for patches!

Merge: 6ecfc29 ed4bc25
Giuseppe Sucameli 	2012-11-03

    Merge pull request #314 from slarosa/master

    [FEATURE] Sharing snippets code from PyQGIS console

Etienne Tourigny 	2012-11-03

    add missing ui file, fix typo

Etienne Tourigny 	2012-11-03

    browser dock filter: use QgsFilterLineEdit, ui and code cleanup ; add QgsFilterLineEdit::cleared() signal

Etienne Tourigny 	2012-04-11

    add directory properties dialog to browser dock

Etienne Tourigny 	2012-04-05

    browser filter

Etienne Tourigny 	2012-04-11

    do not populate items in rowCount(), use canFetchMore() and fetchMore() instead

Etienne Tourigny 	2012-04-03

    Browser: change Add Layers and Refresh buttons ; use designer file for qgsbrowserdock

Juergen E. Fischer 	2012-11-03

    fix warnings

Juergen E. Fischer 	2012-11-03

    apply revised #6613

Juergen E. Fischer 	2012-11-03

    partly fix #6610

Larry Shaffer 	2012-11-03

    Update to duplicate layer(s)

    - Better information about unsupported types
    - Action unavailable in contextual menu for individually selected unsupported layers

Salvatore Larosa 	2012-11-03

    removed shortcut for sharing code action

Salvatore Larosa 	2012-11-03

    [FEATURE] - Sharing snippets code from PyQGIS console
    - now you can share snippets code by codepad.org
    - added much more actions in contextual menu

Juergen E. Fischer 	2012-11-03

    allow printing of html results in identify window (implements #6575)

Werner Macho 	2012-11-03

    adjust translation update script to reflect changes for console

Werner Macho 	2012-11-03

    translation update: gl_ES by Xan

Giuseppe Sucameli 	2012-11-03

    fix crashes using uninitialized geometries with GEOS functions,
    ensure geos geometries are up to date when passed to GEOS functions

Sandro Santilli 	2012-11-02

    Fix bug introduced by reordering postgis table metadata info cols

    Thanks jef :)

Sandro Santilli 	2012-11-02

    Reorder and rename postgis layers metadata columns shown in selector

Alexander Bruy 	2012-11-01

    use new lineedit widget in several dialogs

Alexander Bruy 	2012-11-01

    [FEATURE] add lineedit with builtin clear button

Sandro Santilli 	2012-11-02

    Use "TopoGeometry" as the datatype for topogeometries

    "Topology" is too generic, as also the primitive tables (edges,
    nodes and faces) are part of the topology

Marco Hugentobler 	2012-10-31

    [FEATURE]: Use text annotations as watermarks in QGIS server. Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Settore SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE

Sandro Santilli 	2012-11-02

    Retain old TopoGeometry id on editing

    Avoids leaving orphaned TopoGeometry objects and breaking
    upper hirearchical  layers

Giuseppe Sucameli 	2012-11-02

    update remove/duplicate layer actions at startup

Giuseppe Sucameli 	2012-11-02

    sextante: fix NameError (undefined var) executing GRASS commands

Larry Shaffer 	2012-11-02

    Update to duplicate layer(s)

    - Duplicate layer always created below source layer, and at same nested group depth
    - Duplicate layer is always set to not visible (much faster, canvas refresh not needed when duplicating many layers)

Merge: 70fc8ca 2425f92
Giuseppe Sucameli 	2012-11-02

    Merge pull request #313 from slarosa/master

    Automatically switch focus to the input area in console

Salvatore Larosa 	2012-11-02

    automatically switch focus to the  input area in console
    - any keystroke switch focus when in the output area
    - moved closeEvent method to DockWidget (since 0330202 it has not worked anymore)

Marco Hugentobler 	2012-11-02

    WMS server GetLegendGraphics: differentiate between layer space and layer title space

Larry Shaffer 	2012-10-31

    [FEATURE] Duplicate map layer(s)

    - Action available in Layer menu and legend contextual menu
    - Layer style copy/pasted to duplicate
    - Memory and plugin layers skipped
    - Add sip binding to action in app interface

Juergen E. Fischer 	2012-11-01

    show filled attribute table again (partly reverts 779e16603)

Sandro Santilli 	2012-11-01

    Do not drop schema name from URI, even if it's the same as current

    The dropping was done in 2007 to workaround a bug which was elsewhere
    (in OGR usage, as reported in #843). I guess by now everything
    would work transparently, but if it doesn't it'd be time to fix it
    for real.

    This commit fixes bug #6599, making life harder for NON-BOGUS code
    which isn't confused by schemas...

    Please test !

Sandro Santilli 	2012-11-01

    TopoViewer: add layer for full faces

Sandro Santilli 	2012-11-01

    TopoViewer: only use queries for layers when really needed

Merge: dbea359 6abe861
Giuseppe Sucameli 	2012-11-01

    Merge pull request #312 from slarosa/master

    Moved all the console files into own directory

Salvatore Larosa 	2012-11-01

    Moved all the console files into own directory

Marco Hugentobler 	2012-11-01

    WMS GetProjectSettings: better drawing order detection

Marco Hugentobler 	2012-11-01

    Fix crash if calling GetProjectSettings the first time

Merge: 98e8ba4 66368f9
Giuseppe Sucameli 	2012-10-31

    Merge pull request #311 from slarosa/master

    python console: add splitter and scrollbars, fix for DEL and Backspace key

Juergen E. Fischer 	2012-10-31

    indentation update

Salvatore Larosa 	2012-10-31

    vertical scrollbar as needed both input and output area

Juergen E. Fischer 	2012-10-31

    extent b47b43997

Sandro Santilli 	2012-10-31

    Add initial support for editing TopoGeometry objects

    This is pretty hackish in that it basically creates a new TopoGeometry
    on every edit, leaving loads of orphaned ones around.

Salvatore Larosa 	2012-10-31

    fix for DELETE and BACKSPACE key
    (it is only an appearance issue)

Sandro Santilli 	2012-10-31

    Drop mIsGeography member from QgsPostgresProvider

    ... now replaced by mSpatialColType

Sandro Santilli 	2012-10-31

    Add mSpatialColType member in QgsPostgresProvider

    This member tells us if a spatial column is of type Geometry,
    Geography or TopoGeometry. The member is currently unused but
    will eventually be used for specially handling TopoGeometry.
    It could replace the mIsGeography bool, but replacement isn't
    done by this commit.

    Incidentally, this commit also adds SRID and type detection
    for TopoGeometry columns

Radim Blazek 	2012-10-31

    fixed warning

Radim Blazek 	2012-10-31

    feature counts in rulebased widget

Salvatore Larosa 	2012-10-31

    add vertical scroll bar for input area in console

Larry Shaffer 	2012-10-31

    Fix output/python/qgis dir for Win32 builds that add dir/CMAKE_CFG_INTDIR

Salvatore Larosa 	2012-10-31

    Add resize splitter for console
    as it was from f15b4e1

Larry Shaffer 	2012-10-31

    Update for d7a7a46, make sure targets are always built for install

Larry Shaffer 	2012-10-30

    Add CMake option WITH_STAGED_PLUGINS (ON by default)

    - Core plugins remain available once staged (no need to re-build targets, unless source updated or build directory cleared)
    - Once plugins are staged, setting WITH_STAGED_PLUGINS to OFF allows for much quicker subsequent builds
    - PyQGIS utilities, console and installer are always staged, regardless of WITH_STAGED_PLUGINS

Larry Shaffer 	2012-10-30

    Revert part of a27aad0, not compatible with generated makefiles for GCC 4.2.1

Merge: f68b688 47da0c0
Giuseppe Sucameli 	2012-10-30

    Merge pull request #310 from slarosa/master

    Add default font-family and size to output area - PyQGIS Console

Salvatore Larosa 	2012-10-30

    add default font-family and size to output area in console
    fix for help dialog

Merge: 234709d 10178d7
Giuseppe Sucameli 	2012-10-30

    Merge pull request #308 from slarosa/master

    Add UI file for help - PyQGIS Console

Merge: e3cd56f 234709d
Salvatore Larosa 	2012-10-30

    Merge branch master of https://github.com/qgis/Quantum-GIS

Salvatore Larosa 	2012-10-30

    removed importing of traceback module as it is unused

Werner Macho 	2012-10-30

    changed nokia to digia as they are the new owner of qt

Juergen E. Fischer 	2012-10-29

    osgeo4w: switch to GRASS 6.4.3RC1

Tim Sutton 	2012-10-29

    Added python test for QgsFeature from Germán Carrillo

Merge: e5437c4 d6e3188
Victor Olaya 	2012-10-29

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-29

    Fixed bug using multipleinputpanel in modeler

Tim Sutton 	2012-10-29

    Added Dave DeHaan (SQLAnywhere author and maintainer) to the authors file

Tim Sutton 	2012-10-29

    Fix for failure in unit test thanks to Massimo.

Alexander Bruy 	2012-10-29

    remove unused import

Giuseppe Sucameli 	2012-10-21

    use plain delimiter if one delimiter only was selected (partially fix #4091)

Marco Hugentobler 	2012-10-29

    WMS: add keyword attribute for sia feature info output

Alexander Bruy 	2012-10-29

    remove about dialog from SEXTANTE plugin

Alexander Bruy 	2012-10-29

    show english help for console if translations not found

Radim Blazek 	2012-10-29

    fixed accidentally swapped transparency group boxes

Salvatore Larosa 	2012-10-29

    Add UI file for help
    minor fix in settings dialog

Larry Shaffer 	2012-10-26

    Run Mac bundled app from build directory

    - No longer a need for hard link
    - Build directory app bundle, providers, Python plugins and unit tests functional
    - Adjusted resources corrected on install

Merge: f010205 1bac84c
Giuseppe Sucameli 	2012-10-28

    Merge pull request #307 from slarosa/master

    Reimplemented copy action for keybindings in console

Salvatore Larosa 	2012-10-29

    Reimplemented copy action for keybindings in console

Merge: 9744b8a 0660dcf
Tim Sutton 	2012-10-28

    Merge pull request #306 from slarosa/master

    Remove the about tab in settings dialog for console

Salvatore Larosa 	2012-10-28

    Remove the about tab in settings dialog for console

Tim Sutton 	2012-10-28

    Marked symbologyv2 test as expected to fail

Tim Sutton 	2012-10-28

    Updated developer panel in about box

Tim Sutton 	2012-10-28

    Fix transparency issue for splash

Merge: 46655cf 50f3352
Giuseppe Sucameli 	2012-10-28

    Merge pull request #305 from slarosa/master

    python console: fix AttributeError, method PythonEdit.createStandardContextMenu doesn't exists

Tim Sutton 	2012-10-28

    Updated splash with essen hackfest image

Salvatore Larosa 	2012-10-28

    Improvement to contextual menu
    - typo in help.htm

Merge: 8f6ae95 fe08fd6
Victor Olaya 	2012-10-28

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-28

    changed behaviour of pyculator when no selection exist

Juergen E. Fischer 	2012-10-28

    osgeo4w: fix program entry removal

Tim Sutton 	2012-10-28

    Fix for jenkins breakages caused by addition of licens info to xslt

Merge: 9587252 a8934a2
Victor Olaya 	2012-10-27

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-27

    partially fixed #6571
    added splitRGBbands algorithm

Radim Blazek 	2012-10-27

    invert raster colors better

Merge: 34f677a 9fb1c11
Larry Shaffer 	2012-10-27

    Merge pull request #303 from slarosa/master

    [FEATURE] - Split-pane entry and output for PyQGIS console

Merge: 5c762ef 779e166
Victor Olaya 	2012-10-27

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-27

    applied path for #6574
    applied patch for multiple grass sessions
    added points in polygon weighted

Salvatore Larosa 	2012-10-27

    Follow up f15b4e1
    - add contextual menu to output area (copy and enter selected entry)
    - auto-entered for entry in import class menu
    - cleaning code
    - more info see http://hub.qgis.org/issues/6558

Merge: f15b4e1 6870cff
Salvatore Larosa 	2012-10-26

    Merge pull request #2 from dakcarto/console-nosplitter_1

    No splitter, mellower colors

Larry Shaffer 	2012-10-26

    No splitter, mellower colors

Radim Blazek 	2012-10-26

    make attribute table and identify consistent with map canvas

Marco Hugentobler 	2012-10-26

    Fix case where several WMS layers have the same feature info alias

D'Hont René-Luc 	2012-10-26

    Add mapserver qgsspatialfilter

D'Hont René-Luc 	2012-10-26

    #6535 Support WFS Post GetFeature Request in QGIS-Server

Salvatore Larosa 	2012-10-26

    [FEATURE] - Split-pane entry and output for PyQGIS console

Larry Shaffer 	2012-10-25

    Add cmake option WITH_PY_COMPILE (OFF by default)

    - Byte-compiles staged and intalled plugins/modules

Marco Hugentobler 	2012-10-26

    Add osg include dir for globe compilation

Marco Hugentobler 	2012-10-26

    Implement bag of properties for SIA2045 feature info output

Marco Hugentobler 	2012-10-25

    Move sia2045 xml conversion from request handler to wms server class

Marco Hugentobler 	2012-10-25

    Remove empty wms keyword list from project properties

Marco Hugentobler 	2012-10-25

    Support elements KeywordList, Fees, AccesConstraints in QGIS server capabilities

Larry Shaffer 	2012-10-25

    Redo of 3ce27d6, hard-link to Mac embedded app bundle binary

Merge: 558245c f391d99
Magnus Homann 	2012-10-25

    Merge pull request #301 from homann/trans_sv

    Trans sv

Magnus Homann 	2012-10-25

    Added lots of translations from Victor Axbom, through Qt phrase book. Thanks!

Magnus Homann 	2012-10-13

    4119 översättningar

Radim Blazek 	2012-10-25

    count features in legend for rule based renderer, fixes #5768

Alexander Bruy 	2012-10-25

    fix SEXTANTE things broken by 6ca7ea987d

Alexander Bruy 	2012-10-25

    missed metadata.txt for fTools

Alexander Bruy 	2012-10-25

    temporarily switch back to using subprocess module (addresses #6543)

Alexander Bruy 	2012-10-25

    use lowercase letters for menu (fix #5436)

Alexander Bruy 	2012-10-25

    add metadata.txt to all core plugins

Marco Hugentobler 	2012-10-25

    Fix typo

Alexander Bruy 	2012-10-25

    add category metadata to SEXTANTE plugin

Sandro Santilli 	2012-10-25

    Allow running sextante plugin from build dir

    See http://hub.qgis.org/issues/5879

Sandro Santilli 	2012-10-25

    Rename script files to avoid spaces in filenames

    This makes life easier with PLUGIN_INSTALL.
    I did try to make PLUGIN_INSTALL better but couldn't find a way
    to have both "(" and " " quoted at once...

Sandro Santilli 	2012-10-25

    PLUGIN_INSTALL: quote filenames

    Fixes use with filenames having shell-dangerous chars like "(".
    NOTE: sextante help files have frequent such occurrences

Larry Shaffer 	2012-10-25

    Hard-link to Mac embedded app bundle binary

    - Allows QGIS to be run directly from build directory
    - Link made at /output/bin/QGIS

Larry Shaffer 	2012-10-25

    Update to e31fb3c

    - Add comments about issue
    - Set pkgDataPath to empty QString for fix

Marco Hugentobler 	2012-10-25

    Possibility to set url for a feature info schema

Larry Shaffer 	2012-10-25

    Additional fix for # 5879, handle .ui files for python utilities

    - Built off of pull request 299 by Salvatore Larosa

Larry Shaffer 	2012-10-25

    Additional fix for # 5879

    - Adjust QgsApplication::pkgDataPath temporarily for restoring core plugins when running from build directory

Larry Shaffer 	2012-10-25

    Adv labeling, turn off excessive debug output

Radim Blazek 	2012-10-24

    invert color fix

Radim Blazek 	2012-10-24

    warnings fix

Merge: e210a57 e837a96
Werner Macho 	2012-10-24

    Merge pull request #300 from gioman/master

    New PT_PT translations, courtesy of Nelson Silva

Vânia Neves 	2012-10-24

    New PT_PT translations, courtesy of Nelson Silva

Radim Blazek 	2012-10-24

    QgsError for better error propagation to user, started using for rasters

Werner Macho 	2012-10-24

    added machine readable license

Larry Shaffer 	2012-10-23

    Revert "Do not setPkgDataPath to source dir when running from build dir"

    This reverts commit 227401d434d2a611715873bc1107d938b76740bd.

    Otherwise, crssync fails when setting up db for running tests

Larry Shaffer 	2012-10-23

    Fix PLUGIN_INSTALL build error

Sandro Santilli 	2012-10-23

    Allow running osm plugin from build dir

    See http://hub.qgis.org/issues/5879

Sandro Santilli 	2012-10-23

    Allow running mapserver_export plugin from build dir

    See http://hub.qgis.org/issues/5879

Sandro Santilli 	2012-10-23

    Allow running GdalTools plugin from build dir

    See http://hub.qgis.org/issues/5879

Sandro Santilli 	2012-10-22

    Allow running fTools plugin from build dir

    See http://hub.qgis.org/issues/5879

Sandro Santilli 	2012-10-23

    Do not setPkgDataPath to source dir when running from build dir

    We want to use the output/ dir for that !
    Fixes load of fTools from build tree (coming next)

Larry Shaffer 	2012-10-22

    Adv labeling, add multi-line spacing and alignment

Larry Shaffer 	2012-10-23

    Updates to Mac install notes

    - Add section on debug output and running tests

Larry Shaffer 	2012-10-17

    Add CMake finds for QScintilla2 and Qsci module

    - Needs testing on Windows platform
    - Add QScintilla2 library version info to About dialog
    - Add Mac bundling support for Qwt 6 framework and QScintilla2
    - Fallback to sys or custom site-pkgs when looking for PyQt4 modules to Mac bundle

Larry Shaffer 	2012-10-22

    Fix #6505, set typedef for Mac size_t in bindings

Merge: a45b759 a29ccbf5
Giuseppe Sucameli 	2012-10-22

    Merge pull request #298 from slarosa/master

    Enable non-ascii chars in Python Console

Salvatore Larosa 	2012-10-22

    Enable non-ascii chars in Python Console
    fixes issue http://hub.qgis.org/issues/6548

Alexander Bruy 	2012-10-20

    [FEATURE] TauDEM provider for SEXTANTE

Merge: dbab4a2 feec5f0
Marco Hugentobler 	2012-10-22

    Merge branch for sia2045 GetFeatureInfo output

Marco Hugentobler 	2012-10-22

    Possibility to manually enter a project property to have WMS feature info in sia2045 format

Marco Hugentobler 	2012-10-22

    Drop invalid characters from xml element names

Juergen E. Fischer 	2012-10-21

    update QgsVectorLayer bindings (fixes #6550)

Martin Dobias 	2012-10-21

    Enabled delimitedtext provider again

Martin Dobias 	2012-10-20

    Skip rendering of features without geometry

Martin Dobias 	2012-10-20

    Store attributes and fields in vectors instead of maps

Sandro Santilli 	2012-10-20

    Allow running plugin_installer plugin from build dir

    See http://hub.qgis.org/issues/5879

Merge: 6546d74 2765220
Victor Olaya 	2012-10-20

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-20

    Added patch for #6545
    Fixed bug in SAGA extent calculation (there was a half cellsize offset)

Giuseppe Sucameli 	2012-10-20

    fix build

Merge: 8ca2236 3fecd44
Giuseppe Sucameli 	2012-10-19

    Merge pull request #297 from slarosa/master

    [FEATURE] - Choose Fontfamily and API files for Python Console

Merge: ca20be1 8ca2236
Salvatore Larosa 	2012-10-20

    Merge branch master of https://github.com/qgis/Quantum-GIS

Sandro Santilli 	2012-10-20

    Add a PLUGIN_INSTALL cmake macro and use it from db_manager plugin

    One step forward toward closing http://hub.qgis.org/issues/5879
    Next all pugins should be converted to use of the macro...

Marco Hugentobler 	2012-10-20

    Add const

Marco Hugentobler 	2012-10-20

    Oversampling parameter is now in resample filter

Marco Hugentobler 	2012-10-20

    Fix image format conversion (used e.g. for WMS client) and two memory leaks

Salvatore Larosa 	2012-10-14

    [FEATURE] - Choose Fontfamily and API files for Python Console
    - update Italian translation
    - added Settings icon for toolbar
    - update Italian translation fro console_help

Sandro Santilli 	2012-10-13

    Allow loading plugins from output dir

    See http://hub.qgis.org/issues/5879

    Still needs to find plugins under output/ dir for them to be
    loaded ...

Juergen E. Fischer 	2012-10-19

    skip views without pk candidate

Radim Blazek 	2012-10-19

    apply user no data to identify

Radim Blazek 	2012-10-19

    identify context only if not projected on server

Marco Hugentobler 	2012-10-19

    Simplify server config parser by using layer information (alias, excluded attributes) directly

Radim Blazek 	2012-10-19

    identify expand/collaps tools

Radim Blazek 	2012-10-19

    identify context only if not projected

Marco Hugentobler 	2012-10-19

    Consider attribute aliases and hidden attributes in GetProjectSettings. Don't show WFS layers in GetCapabilities

Marco Hugentobler 	2012-10-19

    Simplify code for excluding attributes from WMS server. Works now also with embedded layers

Pirmin Kalberer 	2012-10-19

    Optional use of external osgEarthQt

Pirmin Kalberer 	2012-10-16

    Unload globe viewer

Pirmin Kalberer 	2012-10-16

    Globe sync button disabled

Pirmin Kalberer 	2012-10-16

    Use ViewerWidget and Controls from OsgEarth instead of backports

Pirmin Kalberer 	2012-10-08

    Add sky to globe

Pirmin Kalberer 	2012-10-08

    Globe zoomout button size fixed

Martin Dobias 	2012-10-19

    QgsFeature: use a vector of attributes instead of a map (for faster access)

Giuseppe Sucameli 	2012-10-18

    fix crash double-clicking to the Connect button in add PG layer dialog

Giuseppe Sucameli 	2012-10-18

    fix crash adding features without geometry to a geometry layer

Giuseppe Sucameli 	2012-10-18

    update feature id of added features (fix #6534)

Juergen E. Fischer 	2012-10-18

    fix of by one in d62cf513

Radim Blazek 	2012-10-18

    raster identify sip fix

Juergen E. Fischer 	2012-10-18

    german translation update

Sandro Santilli 	2012-10-17

    Reword "only look in geometry_columns" to "only look in layers registry"

    Fixes #4533

Juergen E. Fischer 	2012-10-18

    fix warnings

Juergen E. Fischer 	2012-10-18

    cleanup topology lookup

Sandro Santilli 	2012-10-14

    Lookup TopoGeometry columns metadata in topology.layer

    Closes #4532

Radim Blazek 	2012-10-18

    WMS identify fixes

Alexander Bruy 	2012-10-18

    add layer with its own CRS when possible (fix #6539)

Alexander Bruy 	2012-10-18

    fix #6530

Alexander Bruy 	2012-10-18

    fix SEXTANTE crash on load caused by c4c3fecf17

Marco Hugentobler 	2012-10-18

    Fix build

Giuseppe Sucameli 	2012-10-13

    set focus to python console when shown even if in a tabbed dockwidget

Giuseppe Sucameli 	2012-10-11

    sextanteexampleprovider: move import into classFactory function

D'Hont René-Luc 	2012-10-18

    #6533 QGIS WFS Server Transaction Request

Juergen E. Fischer 	2012-10-18

    fix warnings

Juergen E. Fischer 	2012-10-17

    german translation update

Juergen E. Fischer 	2012-10-17

    fix windows build

Merge: c4c3fec fa84588
Victor Olaya 	2012-10-17

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-17

    Several patches contributed by Rado Guzinski:
    -New OTB descriptions an help
    -Update OTB descriptions
    -More responsive MultipleInputPanel.py
    -Minor bug fixes

pcav 	2012-10-17

    Microfix for IT GUI

Merge: df85492 bacf0bd
Marco Hugentobler 	2012-10-17

    Merge branch 'ows_attribute_exclude'

Marco Hugentobler 	2012-10-17

    Improve ows gui

Radim Blazek 	2012-10-17

    raster identify context, QVariant values, enables wcs caching and makes wms more robust

Marco Hugentobler 	2012-10-17

    Implement attribute restrictions in wms/wfs servers

Marco Hugentobler 	2012-10-17

    [FEATURE]: possibility to exclude vector attributes from WMS and WFS publication

Merge: 5a6401c 0478d3b
Marco Hugentobler 	2012-10-16

    Merge branch 'wms_selective_publish'

Marco Hugentobler 	2012-10-16

    Consider embedded groups for restricted WMS layers / groups

Marco Hugentobler 	2012-10-16

    Use collapsible group boxes for wms options to save space

Marco Hugentobler 	2012-10-16

    Optionally show embedded layers/groups in selection dialog

Marco Hugentobler 	2012-10-16

    Improve layer/group selection dialog

Radim Blazek 	2012-10-16

    VSI/CPLMalloc/Free replaced by QgsMalloc/Free where feasible

Radim Blazek 	2012-10-16

    undersampling if possible in QgsRasterDataProvider, multicolor widget loadMinMax fix

Marco Hugentobler 	2012-10-16

    Load/Save restricted layers for WMS server

Marco Hugentobler 	2012-10-16

    Add gui for WMS layer restriction

Larry Shaffer 	2012-10-15

    Turn off failing PAL engine test, until redesigned

Werner Macho 	2012-10-16

    forgot png files, thanks Larry

Werner Macho 	2012-10-16

    translation update: gl_ES by XAN and sr_Latn by Goran, also added sr_Cyrl as requested, renamed sr_CS-* to sr_*

Merge: 4b76e69 4f98420
Victor Olaya 	2012-10-16

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-16

    put modeler parameters panel in a scroll widget

Alexander Bruy 	2012-10-15

    add new plugin installer icons to CMakeLists.txt

Radim Blazek 	2012-10-15

    #6504 fix - raster reprojection crash

Marco Hugentobler 	2012-10-15

    [FEATURE]: Possibility to restrict layers / groups from WMS publication

Merge: cdb9abd d06203b
Victor Olaya 	2012-10-14

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-14

    Minor fix in ModelerParametersDialog.py.

Larry Shaffer 	2012-10-14

    Initialize default font in labeling engine

Juergen E. Fischer 	2012-10-14

    postgres provider: fix quoting

Juergen E. Fischer 	2012-10-14

    fix #6502

Juergen E. Fischer 	2012-10-14

    fix visibility tracking of tile scale widget

Merge: fbca157 83cb4ef
Victor Olaya 	2012-10-14

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-14

    fixed problem with new modeler parameters dialog when algs have vector layers (just removed worng pasted code from normal parameters dialog)

Larry Shaffer 	2012-10-12

    Initial test for PAL engine

    - Includes small custom test font based of off Gnu Free Sans
    - Test if font can be stored and loaded
    - Test if layer can have PAL engine set
    - Test render comparison for output of vector line layer

Merge: e576d93 30c08cb
Jürgen Fischer 	2012-10-13

    Merge pull request #291 from strk/topogeom_and_geometry

    Find topogeometry fields in tables with a geometry/geography field

Juergen E. Fischer 	2012-10-14

    fix windows build

Sandro Santilli 	2012-10-14

    Find topogeometry fields in tables with a geometry/geography field

    Closes bug #6510

Alexander Bruy 	2012-10-13

    missed import in SEXTANTE modeller

Martin Dobias 	2012-10-13

    Removed unused QgsFeature::isDirty() and QgsFeature::clean()

Martin Dobias 	2012-10-13

    Removed unused QgsFeature::typeName() and QgsFeature::setTypeName()

Juergen E. Fischer 	2012-10-12

    german translation update

Merge: 0e2f92f 036d844
Victor Olaya 	2012-10-12

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-12

    Updated model parameters window
    fixed #6417

Larry Shaffer 	2012-09-24

    Fix #6373, adv labeling data defined font size not affected by layer font size setting

    - Label QFontMetricsF for data and layer defined options now stored in QgsPalGeometry
    - Fix expression in rotate label tool

Juergen E. Fischer 	2012-10-12

    fix warnings

Marco Hugentobler 	2012-10-12

    [FEATURE] QGIS server: possibility to restrict published composers

Merge: f230f51 12ddac6
mhugent 	2012-10-11

    Merge pull request #288 from Oslandia/atlas

    Clean up atlas pdf generation code and fix a bug on windows

Larry Shaffer 	2012-10-11

    Remove extraneous Mac browser app aliases

    - Should handle Finder pref set to hide extensions (e.g. missing .app)

Alexander Bruy 	2012-10-11

    fix sip bindings

Alexander Bruy 	2012-10-11

    fix warnings and identation update

Merge: 0c4846b def6486
Alexander Bruy 	2012-10-11

    Merge remote-tracking branch 'upstream/master'

Merge: 9ad9f8c 78a9bd7
Martin Dobias 	2012-10-11

    Merge pull request #220 from tecoholic/style-docs

    UI improvements in symbol layer widgets

Alexander Bruy 	2012-10-10

    remove obsolete code

Alexander Bruy 	2012-10-10

    [FEATURE] reproject layer tool for SEXTANTE

Radim Blazek 	2012-10-11

    fixed #6496 - wrong GDAL exact stats

Radim Blazek 	2012-10-11

    debug output

Hugo Mercier 	2012-10-11

    Clean up atlas pdf generation code and fix a bug on windows

Radim Blazek 	2012-10-11

    + QgsRasterBlock

Werner Macho 	2012-10-11

    another few licenses added

Nathan Woodrow 	2012-10-11

    Switch to listbox for edit types. Fix #6495

Merge: a587cb6 936f4aa
Nathan Woodrow 	2012-10-11

    Merge pull request #287 from tecoholic/3275

    Fix for issue #3275

Arunmozhi 	2012-10-11

    change symbols for selected ranges using changeBtn; retains colors

Werner Macho 	2012-10-11

    add licenses in gps directory (LGPL for NMEA Library)

Arunmozhi 	2012-10-11

    change symbols for selected categories; retains colors

Arunmozhi 	2012-10-11

    ability to delete multiple categories using Ctrl selection

Merge: 1ff42b2 7140e52
Magnus Homann 	2012-10-10

    Merge branch 'trans_sv'

Magnus Homann 	2012-10-10

    4039 översättningar

Merge: 552703a 3c50290
Giuseppe Sucameli 	2012-10-10

    Merge pull request #284 from slarosa/master

    improvement for detection language in console_help

Salvatore Larosa 	2012-10-10

    improvement for detection language in console_help

Tim Sutton 	2012-10-10

    Removed pycharm project files from python tests dir

Tim Sutton 	2012-10-10

    Added test and sample wkt to replicate issue 4189

Merge: 2be41ab b1ac946
mhugent 	2012-10-10

    Merge pull request #283 from alexbruy/datasourceuri_sip

    expose encodedUri() method in bindings

Alexander Bruy 	2012-10-10

    expose encodedUri() method in bindings

Alexander Bruy 	2012-10-10

    Russian help for python console

Larry Shaffer 	2012-10-09

    [FEATURE] Fix #6482, options for showing upside-down labels

    - Adv Labeling option to 'Show upside-down labels': never, when rotation defined, or always
    - 'Never' (default) option is same as before, labels with 90 <= angle < 270 are turned so their text is always upright
    - 'When rotation defined' option shows upside-down labels if their rotation is layer- or data-defined (dynamic labels are turned upright)
    - 'Always' option shows upside-down labels at layer- or data-defined rotations and for dynamic labels

Martin Dobias 	2012-10-09

    Fixes after rebase

Alexander Bruy 	2012-10-09

    make Larry happy: larger icons in plugin installer

D'Hont René-Luc 	2012-10-09

    Set QGIS WFS Server GML valid

Giuseppe Sucameli 	2012-10-09

    refresh the canvas at the end of the process,
    handle unicode strings,
    escape sql ids and strings,
    fix minor errors

Merge: 1796178 cb2230e
Giuseppe Sucameli 	2012-10-09

    Merge pull request #281 from strk/db_manager_addlayer

    dbmananger topoviewer: addlayer instead of creating a new project

Merge: aa25448 2581b3f
Magnus Homann 	2012-10-09

    Merged some swedish translations

Giuseppe Sucameli 	2012-10-09

    dbmanager: delete auto-generated files

Magnus Homann 	2012-10-09

    3801 översättningar

Merge: 6d75d20 eee37cb
Werner Macho 	2012-10-09

    Merge pull request #282 from Oslandia/i18n

    Fix some french GUI translations

Radim Blazek 	2012-10-09

    core raster files moved to core/raster

Hugo Mercier 	2012-10-09

    Fix some FR translations: use "emprise" rather than "étendue"

Radim Blazek 	2012-10-09

    QgsMalloc, QgsCalloc, QgsFree

Marco Hugentobler 	2012-10-09

    Fix cleanup of map composition. Fixes ticket #6440

Werner Macho 	2012-10-09

    translation update: sv by Victor

Merge: f4dd8a0 eae008e
Marco Hugentobler 	2012-10-09

    QGIS server: merge get_project_settings branch

Sandro Santilli 	2012-10-08

    Install style templates

Merge: dc522e0 a28157c
Giuseppe Sucameli 	2012-10-08

    Merge pull request #277 from slarosa/master

    add key event (del) to prevent removing of the prompt when selected,
    rename helpConsole to console_help

Marco Hugentobler 	2012-10-08

    Keep composition in GetCapabilities to keep compatibility with older versions

Martin Dobias 	2012-07-21

    [API] added QgsFeatureIterator, changed QgsVectorProvider API

    Vector data provider now has getFeatures() method to access features.
    select(), nextFeature(), featureAtId(), rewind() were removed resp. moved to provider's feature iterator implementations.

    Providers that currently do not implement the new API were disabled.

Merge: 13a6fd9 c0e779f
mhugent 	2012-10-08

    Merge pull request #280 from Oslandia/atlas

    Fix a bug in atlas generation GUI.

Martin Dobias 	2012-06-26

    Further tweaks to QgsFeatureRequest API, support featureAtId

Martin Dobias 	2012-05-13

    Allow access to feature attributes by name

Martin Dobias 	2012-05-12

    Added select() variant with QgsFeatureRequest for simpler construction of requests

Hugo Mercier 	2012-10-08

    Fix a bug in atlas generation GUI.
    The 'print' and 'exportAsImages' actions were generating atlas even when not enabled

Larry Shaffer 	2012-10-08

    Fix for older compilers, like on stock Mac OS X

Sandro Santilli 	2012-10-08

    Add topoview layers to existing project

Werner Macho 	2012-10-08

    translation update: es by Diana

Merge: 3f412e4 6c652a0
mhugent 	2012-10-08

    Merge pull request #278 from Oslandia/atlas

    Fix atlas parameter loading when loading from a template composer

Alexander Bruy 	2012-10-08

    yet another fix for plugin installer

Hugo Mercier 	2012-10-08

    Atlas gui: use coverge map's name rather than its id

Hugo Mercier 	2012-10-08

    Fix some FR translations: s/caneva/canevas/

Alexander Bruy 	2012-10-08

    fix plugins installation

Hugo Mercier 	2012-10-08

    Fix atlas parameter loading when loading from a template composer

Juergen E. Fischer 	2012-10-08

    another copyright update

Pirmin Kalberer 	2012-10-07

    CMake variable for additional plugins to build (Usage: ccmake .. -DCUSTOM_PLUGINS:STRING=myplugin)

Merge: 53fb95c fccf9ac
Pirmin Kalberer 	2012-10-07

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Pirmin Kalberer 	2012-10-07

    Reuse closed globe window

Alexander Bruy 	2012-10-07

    mark experimental plugins in installer (fix #5980)

Juergen E. Fischer 	2012-10-07

    doxygen update:
    - include core/diagram and gui/symbology-ng
    - enable dynamic sections

Salvatore Larosa 	2012-10-07

    minor fixes and changes
    - rename helpConsole to console_help
    - add key event (del) to prevent removing of the prompt when selected

Juergen E. Fischer 	2012-10-07

    move 'open recent project' above separator

Arunmozhi 	2012-10-07

    auto updating of categorized rendrer symbols

Arunmozhi 	2012-10-07

    fixed the change symbol button bug in graduated renderer

Giuseppe Sucameli 	2012-10-07

    python console: fix key events and text selection,
    do not allow to move cursor out of the edition zone (except for selection),
    cleanup (remove unused functions and vars)

Giuseppe Sucameli 	2012-10-07

    make the python console working as standalone application (useful for testing)

Giuseppe Sucameli 	2012-10-06

    align metadata names between __init__.py and metadata.txt:

    deprecate authorName function in __init__ (but kept for compatibility), use author function instead

Giuseppe Sucameli 	2012-10-06

    display selected feature count in attribute table when docked,
    do not select rows two times when the attribute table view is created

Merge: 52de721 42672c1
Giuseppe Sucameli 	2012-10-06

    Merge pull request #275 from slarosa/master

    fix mouse event in python console,
    update italian translation

Salvatore Larosa 	2012-10-07

    update Italian translation

Werner Macho 	2012-10-07

    fixed typo in script and licenseadd

Salvatore Larosa 	2012-10-06

    another fix to mouse event:
    - prevents paste text if cursor is not in edition zone

Werner Macho 	2012-10-06

    translatoin update; nl by Raymond

Arunmozhi 	2012-10-06

    fixed change symbol button bug in categorized renderer

Juergen E. Fischer 	2012-10-06

    [FEATURE] open layer properties from identify results

Merge: 9f0d858 5d84cd3
mhugent 	2012-10-06

    Merge pull request #276 from cmoe/bug_snapping_options

    tried to fix problem with snapping options on adding a new layer to the ...

cmoe 	2012-10-06

    tried to fix problem with snapping options on adding a new layer to the project

Salvatore Larosa 	2012-10-06

    fix mouse event in console

Merge: 0d4b6f6 9135226
mhugent 	2012-10-06

    Merge pull request #274 from Oslandia/atlas_integration

    Add access to the atlas layer in the expression builder GUI for labels.

Marco Hugentobler 	2012-10-06

    Fix composer scalebar test

Marco Hugentobler 	2012-10-06

    Fix composerhtml tests

Alexander Bruy 	2012-10-06

    fix SIP bindings after atlas merge

Juergen E. Fischer 	2012-10-06

    fix project properties ows tab taborder

Juergen E. Fischer 	2012-10-06

    add more copyrights

Hugo Mercier 	2012-10-06

    Add access to the atlas' layer in the expression builder GUI for labels.
    QgsAtlasComposition is now held by QgsComposition

Merge: f1c9955 e54e917
Marco Hugentobler 	2012-10-06

    Merge atlas branch

Marco Hugentobler 	2012-10-06

    Remove signal which is not used anymore

Marco Hugentobler 	2012-10-06

    Fix python composermap test

Juergen E. Fischer 	2012-10-06

    sip updates

Arunmozhi 	2012-09-16

    fix for #6273

Marco Hugentobler 	2012-10-06

    Fix for white stripes between raster tiles

Werner Macho 	2012-10-06

    connect slider to spinbox for opacity

Juergen E. Fischer 	2012-10-05

    german translation fix

Merge: 94bc415 c212e91
Giuseppe Sucameli 	2012-10-05

    Merge pull request #272 from slarosa/master

    Fix #6458

Tim Sutton 	2012-10-05

    Added simple point test used in demo at hackfest in Essen

Werner Macho 	2012-10-05

    adjust license to be readable by licensechecker

Merge: 7ee4a5c 7218bd3
Hugo Mercier 	2012-10-05

    Merge branch 'atlas_integration' of https://github.com/Oslandia/Quantum-GIS into atlas

Hugo Mercier 	2012-10-05

    Get rid of the unneeded vector of QgsFeature in atlas generation

Merge: 1905b61 9c104b3
Pirmin Kalberer 	2012-10-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Pirmin Kalberer 	2012-10-05

    Worldwind elevation model cache removed

Salvatore Larosa 	2012-10-05

    typo in console_sci

Hugo Mercier 	2012-10-05

    Get rid of the unneeded vector of QgsExpression in atlas generation

Salvatore Larosa 	2012-10-05

    Fix #6458
    - added new icon in resources
    - added tools to import QtCore,QtGui class
    - update help and locale

Juergen E. Fischer 	2012-10-05

    add more sextante copyright headers

Merge: c5e2257 b3e2eb2
Pirmin Kalberer 	2012-10-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-10-05

    fix language detection in console_help and german translation update

Merge: 88cd943 4a90e73
Pirmin Kalberer 	2012-10-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: d9c5a68 680db77
Giuseppe Sucameli 	2012-10-05

    Merge pull request #271 from slarosa/master

    minor fixes for help in console

Radim Blazek 	2012-10-05

    pseudocolor renderer GUI min/max support

Salvatore Larosa 	2012-10-05

    minor fixes for help (Python Console)

Merge: 1a1370f 4513ada
Giuseppe Sucameli 	2012-10-05

    Merge pull request #270 from slarosa/master

    Fix 6459

Salvatore Larosa 	2012-10-05

    Fix 6459
    - update Italian translate
    - renamed help console to console_help.py
    - renamed Deutsch properties file (help translation)
    - added MouseEvent (midbutton) to Python Console

Pirmin Kalberer 	2012-10-05

    Default elevation layer for globe

Juergen E. Fischer 	2012-10-05

    indentation update (and minor cleanuppps ;))

cmoe 	2012-10-05

    Enable snapping on intersection introduced

Juergen E. Fischer 	2012-10-05

    python fixes:
    - update sip bindings (including QgsRasterPipe and QgsOWSSourceSelect)
    - helpConsole: show icons from resources

Alexander Bruy 	2012-10-05

    fix #5269

Merge: 7ed05a2 372e520
Juergen E. Fischer 	2012-10-05

    Merge branch 'mapserverexport' of https://github.com/rduivenvoorde/Quantum-GIS

Juergen E. Fischer 	2012-10-05

    indentation update

Merge: 189b066 603f35c
Juergen E. Fischer 	2012-10-05

    Merge branch 'master' of https://github.com/rouault/Quantum-GIS

Juergen E. Fischer 	2012-10-05

    german console help translation

Juergen E. Fischer 	2012-10-05

    debian packaging update - also moved python console files and icons

Merge: e3536e4 eae523d
Hugo Mercier 	2012-10-05

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into atlas

Hugo Mercier 	2012-10-05

    Fix atlas segfaults

Hugo Mercier 	2012-10-05

    Update of QgsAtlasComposition SIP (with Python unit tests as well)

Hugo Mercier 	2012-10-05

    Update atlas.
    * Store every parameters and expose operations in a new QgsAtlasComposition class
    * Restructure the GUI part. The atlas configuration panel is now independant

Juergen E. Fischer 	2012-10-05

    partly revert 14cad93b

Alexander Bruy 	2012-10-05

    enclose field names in double quotes to prevent possible conflicts with
    reserved words

pcav 	2012-10-05

    Fix #6457 (v.centroids in GRASS)

Marco Hugentobler 	2012-10-05

    Add unit test for composermap zebra style

Marco Hugentobler 	2012-10-05

    Fix reading of snapping dialog in dock state

Tim Sutton 	2012-10-05

    Revision and refactor of python unit tests: Pep8 and 257 formatting. Use helper to import unittest so that unittest2 and unittest are seemless. 3 tests currently fail - will review those tomorrow.

Larry Shaffer 	2012-10-04

    Remove extraneous Mac browser app aliases from failed builds

Richard Duivenvoorde 	2012-10-05

    minor mapserverexport plugin fix

    making it work on ms6 work out of the box again

Merge: 064c0c0 acaa969
Tim Sutton 	2012-10-04

    Merge pull request #261 from slarosa/master

    Removed jquery from helpConsole/js

Larry Shaffer 	2012-10-03

    PyQScintilla api files setup for local compiling of pap file

    - Update and concatenate sip-built api files into PyQGIS.api
    - Move python/qgis/api to python/qsci_apis for future api selection and compiling module
    - Add base version api files for python components

Juergen E. Fischer 	2012-10-04

    german translation update

Juergen E. Fischer 	2012-10-04

    indentation update

Juergen E. Fischer 	2012-10-04

    put future back to the top

Marco Hugentobler 	2012-10-04

    Change height calculation in composer html

Juergen E. Fischer 	2012-10-04

    add copyright notices

Giuseppe Sucameli 	2012-10-04

    add select/unselect buttons in project properties->OWS server->WFS layers (fix #5865)

Giuseppe Sucameli 	2012-10-04

    fix GUI stuff in project properties dialog:

    add scrollbar to General tab (to be visible also in small screens),
    increase the WFS layers list's height (OWS server tab)

Radim Blazek 	2012-10-04

    wcs select dialog cleanup

Matthias Kuhn 	2012-09-27

    Merge pull request from Matthias Kuhn to remove old diagram GUI

Marco Hugentobler 	2012-10-04

    wfsprovider: remove statement which is always true (QGis::WKBNoGeometry)

Jeremy Palmer 	2012-08-27

    Support plain tables from WFS sources

Radim Blazek 	2012-10-04

    auto set alpha band

Juergen E. Fischer 	2012-10-04

    fix #6240

Hugo Mercier 	2012-10-04

    Add function helps for $page, $numpages, $feature and $numfeatures

Werner Macho 	2012-10-04

    translation update: the Hackfest Essen update strings commit

Radim Blazek 	2012-10-04

    raster save as image transparency fix

Juergen E. Fischer 	2012-10-04

    fix #5883

Juergen E. Fischer 	2012-10-04

    apply #6281

Juergen E. Fischer 	2012-10-04

    setup sip dependencies

Merge: 3e8e697 c9c0209
Werner Macho 	2012-10-04

    Merge pull request #262 from gioman/master

    Update to pt_PT translation, courtesy of Nelson Silva

Hugo Mercier 	2012-10-04

    Update atlas unit tests (fix the overview map frame style)

Alexander Bruy 	2012-10-04

    add license headers to some fTools files

Tim Sutton 	2012-10-04

    Annotate core module members properly.

Tim Sutton 	2012-10-04

    Mark qgsmultibandcolorrenderer as part of core module

Vânia Neves 	2012-10-04

    Update to PT_PT translation, courtesy of Nelson Silva

Alexander Bruy 	2012-10-04

    add license headers to some tests

Alexander Bruy 	2012-10-03

    review buffer tools

Alexander Bruy 	2012-10-03

    review Polygon from layer extent tool and sync it with master code

Alexander Bruy 	2012-10-03

    review Select by location tool

Alexander Bruy 	2012-10-03

    review Random selection and Random selection within subsets

Alexander Bruy 	2012-10-03

    [FEATURE] add Densify geometries tool to SEXTANTE

Alexander Bruy 	2012-10-03

    review Extract nodes tool

Alexander Bruy 	2012-10-03

    review Lines to polygons and Polygons to lines tools

Alexander Bruy 	2012-10-03

    review Multi to single and Single to multi tools

Alexander Bruy 	2012-10-01

    review Simplify geometries tool

Alexander Bruy 	2012-10-01

    review Voronoi tool

Alexander Bruy 	2012-10-01

    review Delaunay tool

Alexander Bruy 	2012-10-01

    review Polygon centroids tool

Alexander Bruy 	2012-10-01

    review Export geometry info tool, sync with master

Alexander Bruy 	2012-09-28

    refactor basic statistics tool

Alexander Bruy 	2012-09-28

    review Nearest neighbour tool

Alexander Bruy 	2012-09-28

    review and fix unique values tool

Alexander Bruy 	2012-09-28

    review Line intersections tool

Alexander Bruy 	2012-09-28

    review Distance matrix tool

Alexander Bruy 	2012-09-28

    review Mean coordinates tool

Alexander Bruy 	2012-09-27

    review Point in polygons tool

Alexander Bruy 	2012-09-27

    fix encoding related bugs in writer class
    review Sum Line Length tool, add number of lines to output (implement #4712)

Alexander Bruy 	2012-09-26

    fix authors file

Alexander Bruy 	2012-09-18

    more translatable strings and cleanup

Alexander Bruy 	2012-09-18

    use QDesktopServices to open help files

Alexander Bruy 	2012-09-18

    use resource file for images

Alexander Bruy 	2012-09-18

    adjust metadata.txt and __init__.py files
    initial i18n support

Merge: b5f736a 371efa0
Hugo Mercier 	2012-10-04

    Merge branch 'atlas' into atlas2

    Conflicts:
python/core/composer/qgscomposition.sip
tests/src/python/CMakeLists.txt

Hugo Mercier 	2012-10-04

    Revert "Resolved merge conflicts when reverting 686f632"

    This reverts commit a654e274a352ef29354de0bcb13e96444868c806.

Hugo Mercier 	2012-10-04

    Revert "Revert "Merge pull request #245 from Oslandia/atlas_integration""

    This reverts commit 8a1953b9e710ea25dac502b32eab9e0e8d652b10.

Hugo Mercier 	2012-10-04

    Add synchronization between canvas layers addition / removal and atlas GUI

Etienne Tourigny 	2012-10-04

    replace QgsRasterLayer::thumbnailAsPixmap() with previewAsPixmap() : return QPixmap and add size and background color parameters ; remove QgsRasterLayer::thumbnailAsImage() as it's not used

Etienne Tourigny 	2012-10-04

    do not use fitted curve in histogram - fixes rending problem with low-count bins (thanks to Radim for pointing out)

Larry Shaffer 	2012-09-26

    [FEATURE] Choose font family for app

    - Define app font family (or Qt default) in app options
    - App font choices in options are now temporary unless saved
    - Refactor to more general stylesheet methods (for later use)
    - Add QgisAppInterface and sip methods for setting app font and family

Larry Shaffer 	2012-10-03

    Update for issue #5692

    - Qt font dialog on Mac inherits app font if app is in ancestry (make dialog parentless)

Juergen E. Fischer 	2012-10-04

    debian packaging update

Juergen E. Fischer 	2012-10-04

    fix globe warnings

Giuseppe Sucameli 	2012-10-04

    unify the QGis behavior opening project files (fix #6406) and cleanup

Radim Blazek 	2012-10-04

    raster renderers clone fix - fixes saves with transparency

Tim Sutton 	2012-10-04

    Work around for issue migrating 0.9.2 qml files to 0.10.0

Tim Sutton 	2012-10-03

    Don't show the layer order checkbox on legend, only on layer order panel. Greetings from QGIS Hackfest in Essen

Tim Sutton 	2012-10-03

    Added substitution support for :%H$ (e.g. //revision :%H$) so that when we do a release using git archive, SHA1 values can be written to released files.

Radim Blazek 	2012-10-03

    wcs capabilities cache, fix extent verification

Magnus Homann 	2012-10-03

    3717 översättnignar, mer än hälften!!!

Juergen E. Fischer 	2012-10-03

    and fix building of globe plugin on linux - because the last commit broke it

Salvatore Larosa 	2012-10-03

    Removed jquery from helpConsole/js (Python Console)

Juergen E. Fischer 	2012-10-03

    fix building of globe plugin on windows

Alexander Bruy 	2012-10-03

    change window title depending on action

Alexander Bruy 	2012-10-03

    follow up e8061c7fea

Merge: 5a0feb3 35a4f88
Tim Sutton 	2012-10-03

    Merge pull request #257 from slarosa/master

    Added i18n for help (Python Console)

Tim Sutton 	2012-10-03

    Fixes for QgsSpatialIndex python test

Giuseppe Sucameli 	2012-10-03

    fix #6446

Giuseppe Sucameli 	2012-10-03

    db_manager: get fields' size from formatted type string (fix #6402)

Giuseppe Sucameli 	2012-10-02

    gdaltools: add cubic interpolation to Build overviews tool (fix #6301)

Merge: 88e3e34 6369196
Pirmin Kalberer 	2012-10-03

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Pirmin Kalberer 	2012-10-03

    Backported osgEarth::QtGui::ViewerWidget and osgEarth::Util::Controls for compatibilty with news OSG and QT version

Merge: 6548e2e 8a1ad57
Victor Olaya 	2012-10-03

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-10-03

    fixed #6362 (should check that does not break other things and model executes correctly)

Magnus Homann 	2012-10-02

    3507 översättningar

Magnus Homann 	2012-10-01

    3401 översättningar

Magnus Homann 	2012-09-29

    3300 versttningar

Magnus Homann 	2012-09-27

    3102 översättningar

Radim Blazek 	2012-10-02

    wcs 1.1 axis switch fix

Juergen E. Fischer 	2012-10-02

    indentation cleanup

Hugo Mercier 	2012-10-02

    Add Python unit tests for atlas rendering

Hugo Mercier 	2012-10-02

    Add/Fix SIP for QgsComposition, QgsComposerMap and QgsAtlasRendering

Hugo Mercier 	2012-10-02

    Fix QgsComposerLabel unit test

Hugo Mercier 	2012-10-02

    Add CORE_EXPORT to QgsAtlasRendering

endmax 	2012-10-02

    - QgsSymbolLayerV2 descendants missing from sip.
      QgsSymbolLayerV2 class has been modified to convert into SubClass as needed
    - A test is provided for check subclasses binding and behaviour
    - A fix has been done for src\core\symbology-ng\qgsellipsesymbollayerv2.cpp because of an error in createFromSld about fillColor

    Signed-off-by: endmax 

Radim Blazek 	2012-10-02

    GDAL overviews bug fix conditional < 1.9.2

Marco Hugentobler 	2012-09-17

    Fix bug in quantisation code. 8Bit has now a very good visual quality

Marco Hugentobler 	2012-09-17

    Don't do color box calculations if there are enough colors in the palette

Marco Hugentobler 	2012-09-17

    First working version of color quantization. Not optimized yet

Marco Hugentobler 	2012-09-17

    Fix bug in quantisation code

Marco Hugentobler 	2012-09-16

    More color quantisation

Marco Hugentobler 	2012-09-16

    More color quantisation

Marco Hugentobler 	2012-09-15

    Start coding of 8bit png conversion

Victor Olaya 	2012-10-02

    fixed #6376
    partially fixed #6374

Salvatore Larosa 	2012-10-02

    Moved jquery directory under resources/jQuery (Python Console)

Giuseppe Sucameli 	2012-10-02

    compute the correct number of categories using Pretty Breaks mode (fix #3330)

Marco Hugentobler 	2012-10-01

    List published WFS layers in GetProjectSettings result

Giuseppe Sucameli 	2012-08-20

    fix transparency saving on QML file (follow 74ba70aa):
    do not store the same transparency value twice (for both SimpleFill symbol and its layers)

Merge: 86a56b6 74ba70a
Giuseppe Sucameli 	2012-10-01

    Merge branch 'master' of git://github.com/rugginoso/Quantum-GIS into rugginoso-master

Juergen E. Fischer 	2012-10-01

    indentation update

Tim Sutton 	2012-10-01

    Revert "Merge pull request #245 from Oslandia/atlas_integration"

    This reverts commit fe8385e7f5735507adf1acfcce81a399fa6bc6f5, reversing
    changes made to 23352ce0d66855a4a9c403a81feaa1884415e45c.

Tim Sutton 	2012-10-01

    Resolved merge conflicts when reverting 686f632

Tim Sutton 	2012-10-01

    Revert "indentation update"

    This reverts commit 7dd58aa8f62022e710e03af78cfd7d7ce08e83f5.

Lorenzo Masini 	2012-10-01

    Added fine transparency settings for vectors.

    Now the user can specify the alpha channel for outlines, border and
    fill colors of polygons and markers.
    The overall layer alpha channel is used as multiplier for these
    values.
    Selections are not affected.

    Work done for Regione Toscana-SITA.

Juergen E. Fischer 	2012-09-30

    and more sip fixes

Salvatore Larosa 	2012-09-30

    typo (Python Console)

Salvatore Larosa 	2012-09-30

    Added i18n for help (Python Console)

Juergen E. Fischer 	2012-09-29

    just skip the tests that require unittest2 if it's not available

Juergen E. Fischer 	2012-09-29

    adapt test result for better coordinates (0c29b4bef51)

Juergen E. Fischer 	2012-09-29

    german translation update

Juergen E. Fischer 	2012-09-29

    indentation update

Juergen E. Fischer 	2012-09-29

    sip fixes

Juergen E. Fischer 	2012-09-29

    fix destruction of private members in atlas and add sip bindings (also adds
    CORE_EXPORT)

Even Rouault 	2012-09-29

    Fix Valgrind warnings about use of initialized memory. Caused by member variables
    not initialized in the constructor.

D'Hont René-Luc 	2012-09-29

    Better writing of coordinate (WKT, GeoJSON, GML2) and using of searchRect

Merge: 23352ce 80eb345
Tim Sutton 	2012-09-28

    Merge pull request #245 from Oslandia/atlas_integration

    [FEATURE] Support for creation of map atlasses in print composer - Atlas integration

Merge: aaa5040 82a22f0
Tim Sutton 	2012-09-28

    Merge pull request #255 from rouault/master

    Fix errors in the usage of setlocale() and CPLGetConfigOption()

Even Rouault 	2012-09-28

    The return value of CPLGetConfigOption() is volatile, and can be
    invalidated by a following call to CPLSetConfigOption(). Thus it needs
    to be duplicated.

Even Rouault 	2012-09-28

    Return value of setlocale() is allocated in static storage and is thus volatile.

    This commit fixes the following Valgrind error :
    ==17204== Invalid read of size 1
    ==17204==    at 0x4C29F34: __GI_strchr (mc_replace_strmem.c:219)
    ==17204==    by 0xBF5E14C: _nl_load_locale_from_archive (loadarchive.c:170)
    ==17204==    by 0xBF5D60A: _nl_find_locale (findlocale.c:107)
    ==17204==    by 0xBF5CB8B: setlocale (setlocale.c:379)
    ==17204==    by 0x808B776: QgsCoordinateReferenceSystem::setProj4String(QString) (in /home/even/qgis-git/Quantum-GIS/build/install/lib/libqgis_core.so.1.9.0)
    ==17204==    by 0x808A401: QgsCoordinateReferenceSystem::createFromProj4(QString) (in /home/even/qgis-git/Quantum-GIS/build/install/lib/libqgis_core.so.1.9.0)
    ==17204==    by 0x7FC2F68: QgsDistanceArea::setEllipsoid(QString const&) (in /home/even/qgis-git/Quantum-GIS/build/install/lib/libqgis_core.so.1.9.0)
    ==17204==    by 0x6D23A3: QgsMeasureDialog::updateSettings() (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x6D200D: QgsMeasureDialog::QgsMeasureDialog(QgsMeasureTool*, QFlags) (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x6D5777: QgsMeasureTool::QgsMeasureTool(QgsMapCanvas*, bool) (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x553E4B: QgisApp::createCanvasTools() (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x544411: QgisApp::QgisApp(QSplashScreen*, bool, QWidget*, QFlags) (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==  Address 0x2aec57b1 is 1 bytes inside a block of size 11 free'd
    ==17204==    at 0x4C287BE: free (vg_replace_malloc.c:446)
    ==17204==    by 0xBF5CC34: setlocale (setlocale.c:173)
    ==17204==    by 0x808B6A0: QgsCoordinateReferenceSystem::setProj4String(QString) (in /home/even/qgis-git/Quantum-GIS/build/install/lib/libqgis_core.so.1.9.0)
    ==17204==    by 0x808A401: QgsCoordinateReferenceSystem::createFromProj4(QString) (in /home/even/qgis-git/Quantum-GIS/build/install/lib/libqgis_core.so.1.9.0)
    ==17204==    by 0x7FC2F68: QgsDistanceArea::setEllipsoid(QString const&) (in /home/even/qgis-git/Quantum-GIS/build/install/lib/libqgis_core.so.1.9.0)
    ==17204==    by 0x6D23A3: QgsMeasureDialog::updateSettings() (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x6D200D: QgsMeasureDialog::QgsMeasureDialog(QgsMeasureTool*, QFlags) (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x6D5777: QgsMeasureTool::QgsMeasureTool(QgsMapCanvas*, bool) (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x553E4B: QgisApp::createCanvasTools() (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x544411: QgisApp::QgisApp(QSplashScreen*, bool, QWidget*, QFlags) (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==    by 0x53DFF5: main (in /home/even/qgis-git/Quantum-GIS/build/install/bin/qgis)
    ==17204==

Marco Hugentobler 	2012-09-28

    Remove expectedFailure for composition test

Merge: 500a953 3c1a778
Tim Sutton 	2012-09-28

    Merge pull request #254 from lynxlynxlynx/master

    test&doc friday

Hugo Mercier 	2012-09-28

    Add missing control images for Atlas unit test

Jaka Kranjc 	2012-09-28

    added function help for the logarithm functions

Jaka Kranjc 	2012-09-28

    added a few more log expression tests

Jaka Kranjc 	2012-09-28

    INSTALL: mention pyqscintilla as required (hard dependency of the console)

Merge: c85ad5a 500a953
Hugo Mercier 	2012-09-28

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into atlas

    Conflicts:
src/core/composer/qgscomposition.cpp

Hugo Mercier 	2012-09-28

    Add a test for Atlas generation when the coverage layer is hidden

Merge: f2f1426 32deee7
Tim Sutton 	2012-09-28

    Merge pull request #253 from slarosa/master

    New style for the toolbar icons (Python Console)

Salvatore Larosa 	2012-09-28

    New style for the toolbar icons
    - update the help.htm

Marco Hugentobler 	2012-09-27

    Catch xml import error for composition

Marco Hugentobler 	2012-09-28

    Escape xml characters in composer template string replacement

Hugo Mercier 	2012-09-28

    Fix QgsComposerMap constructor

Juergen E. Fischer 	2012-09-28

    add qscintilla to INSTALL

Giuseppe Sucameli 	2012-09-28

    fix failed assertion when sld import fails

Juergen E. Fischer 	2012-09-28

    fix ogr provider's createEmptyDataSource()

Merge: 28fc9d0 630a021
Tim Sutton 	2012-09-27

    Merge pull request #248 from slarosa/master

    Several fixes and added for python console

Merge: 2dfa77c 885bd2e
Jürgen Fischer 	2012-09-27

    Merge pull request #251 from sdikiy/work

    fix windows build

Juergen E. Fischer 	2012-09-27

    german translation update

Serge Dikiy 	2012-09-27

    fix windows build

Radim Blazek 	2012-09-27

    Pyramids problem GDAL ticket

Radim Blazek 	2012-09-27

    building pyramids crash fix

Hugo Mercier 	2012-09-27

    Fix the composer label test unit

Hugo Mercier 	2012-09-27

    Add a test unit for Atlas generation

Salvatore Larosa 	2012-09-27

    Improved the console toolbar
    - added menu for class import
    - added menu for open/save script
    - update help and Italian translate

Hugo Mercier 	2012-09-27

    Robustify atlas generation

Tim Sutton 	2012-09-27

    Removed failure expectation from test

Radim Blazek 	2012-09-27

    wcs cache option

Juergen E. Fischer 	2012-09-27

    sip fixes: networkanalysis is a separate module

Hugo Mercier 	2012-09-27

    Fix single file checkbox reading in QgsComposerMapWidget

Hugo Mercier 	2012-09-27

    Add a comment

Hugo Mercier 	2012-09-27

    Fix QgsExpression SIP

Hugo Mercier 	2012-09-27

    Add a test unit for expressions in QgsComposerLabel

Radim Blazek 	2012-09-27

    compare wcs extent using significant digits

Merge: 504ed49 2d12bb8
Tim Sutton 	2012-09-27

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-09-27

    Added test to verify analysis lib can be loaded

Tim Sutton 	2012-09-27

    Fixed attribution for composition test

Merge: db7b26f 126b897
Tim Sutton 	2012-09-27

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-09-27

    Removed extraneous newline from test

Merge: 126b897 7ef9dbd
Magnus Homann 	2012-09-27

    Merge swedish translations

Salvatore Larosa 	2012-09-27

    Added keys binding to view the command history
    - added new command to clear completely the command history
    - fixed copy,cut command in keyPressEvent more minor problems
    - update for help
    - update for Italian translate

Magnus Homann 	2012-09-26

    3000 översättningar

Radim Blazek 	2012-09-26

    TestCase and expectedFailure must both come from the same unittest

Radim Blazek 	2012-09-26

    reverted raster reprojection matrix size, Magnus Homann wrote: Ooops, that wasn't supposed to go in the commit

Juergen E. Fischer 	2012-09-26

    more sip fixes

Juergen E. Fischer 	2012-09-26

    sip fixes

Merge: 4657c84 ee593e8
Hugo Mercier 	2012-09-26

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into atlas

    Conflicts:
python/core/qgsexpression.sip

    Add a missing function to QgsExpression

Merge: b95296a 6a1c280
Hugo Mercier 	2012-09-26

    Merge branch 'atlas_integration' of https://github.com/Oslandia/Quantum-GIS into atlas

Radim Blazek 	2012-09-26

    additional wcs test params

Hugo Mercier 	2012-09-26

    Add support for Atlas export to SVG and multipage PDF

Hugo Mercier 	2012-09-26

    Allow the use of expressions inside a composer label

Hugo Mercier 	2012-09-26

    Fix $CURRENT_DATE replacement in QgsComposerLabel

Hugo Mercier 	2012-09-25

    Update QgsExpression's SIP

Hugo Mercier 	2012-09-26

    Add test units for special columns in QgsExpression

Hugo Mercier 	2012-09-25

    Add support for user-defined special columns in expressions

Tim Sutton 	2012-09-26

    Added a test to verify that we can get a map to render in the template (python bindings)

Merge: 671cc98 dad7f98
Tim Sutton 	2012-09-26

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-09-26

    Added test which shows failure in composer substitution if passing in a QString containing a degree symbol. Test is marked as expected to fail for now.

Radim Blazek 	2012-09-26

    fixed missing vector,database and web menu in customization

Tim Sutton 	2012-09-26

    Initial work for composition test

Tim Sutton 	2012-09-26

    Reenable composer html test but disable segfaulting tests

Tim Sutton 	2012-09-26

    Added QGIS_PREFIX_PATH to app settings display

Juergen E. Fischer 	2012-09-26

    typo fixes and german function help update

Salvatore Larosa 	2012-09-26

    Update help for console
    - header icon changed
    - re-organized text

Larry Shaffer 	2012-09-25

    Fix for older compilers, like on stock Mac OS X (provided by Juergen)

Etienne Tourigny 	2012-09-25

    QgsCollapsibleGroupBox: rename mSaveState to mSaveCollapsedState and update saveState/restoreState, update raster save dialog

Etienne Tourigny 	2012-09-20

    set horizontal stretch for content in splitter widgets

Juergen E. Fischer 	2012-09-25

    [FEATURE] allow manual addition of browser favorite directories

Juergen E. Fischer 	2012-09-25

    fix doxygen warnings

Radim Blazek 	2012-09-25

    wcs extent verification

Radim Blazek 	2012-09-25

    wcs test timeout

Merge: ded943d a0566c7
Tim Sutton 	2012-09-25

    Merge pull request #247 from slarosa/master

    [FEATURE] Added support to save History in Python Console

Salvatore Larosa 	2012-09-25

    Cleaning the code

Salvatore Larosa 	2012-09-25

    Added support to save history in python console
    - edited console.py to save history on closeEvent
    - edited console_sci.py to add read, clear and write history methods
    - edited help file
    - update to Italian translate file

Juergen E. Fischer 	2012-09-25

    update bindings

Marco Hugentobler 	2012-09-25

    Possibility to ignore features in the avoid intersection function

Juergen E. Fischer 	2012-09-25

    fix windows build

Larry Shaffer 	2012-09-24

    Enable up/down arrow key navigation of browser application data layers

Larry Shaffer 	2012-09-24

    Add /Volumes to browser tree for Mac

Juergen E. Fischer 	2012-09-24

    enable more gui sip bindings

Tim Sutton 	2012-09-24

    Comment out composer tests for now.

Tim Sutton 	2012-09-24

    Comment out composer tests for now.

Juergen E. Fischer 	2012-09-24

    german translation update

Juergen E. Fischer 	2012-09-24

    more sip fixes

Juergen E. Fischer 	2012-09-24

    fix typos

Larry Shaffer 	2012-09-24

    Update to 4d9d16d, missing commit

Larry Shaffer 	2012-09-22

    Update PAL to OverPoint placement, fix for #6378

    - Label all parts of multipart is option is set
    - Data defined rotation and offset support moved into pal::Feature
    - Limit x/y-independent data defined rotation for layer and Rotate Label tool to OverPoint, until support for other placements (if any?) are added to pal::Feature.
    - Fix pinning where upside-down label caused position flipping

Larry Shaffer 	2012-09-22

    Labeling centroid calculation update (provided by Serge Dikiy)

Merge: 7824842 74fd0e4
Tim Sutton 	2012-09-24

    Fix compilation error caused by numeric_limits::quiet_NaN not being passed a type

Tim Sutton 	2012-09-24

    Transfer ownership of transparency

Juergen E. Fischer 	2012-09-24

    more sip fixes:
    - also move enum StyleEntity in QgsStyleV2
    - fix some warnings

Alexander Bruy 	2012-09-24

    fix SIP bindings

Merge: 1190eea 75452b8
Magnus Homann 	2012-09-24

    Merge pull request #246 from homann/CP-legal

    A fix for #6396.

Magnus Homann 	2012-09-24

    A fix for #6396

Werner Macho 	2012-09-24

    translation update: gl_ES by Xan

Juergen E. Fischer 	2012-09-24

    fix QgsSymbolLayerV2Metadata sip bindings

Tim Sutton 	2012-09-24

    Added sample template needed for tests

Tim Sutton 	2012-09-24

    Reinstate public qualifier for vector gradient colour ramp

Tim Sutton 	2012-09-24

    Added missing sys import

Tim Sutton 	2012-09-24

    Reinstate symbol layer registry sip stuff

Merge: 1dc9302 34f542e
Tim Sutton 	2012-09-24

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-09-24

    fix sip syntax error

Tim Sutton 	2012-09-24

    Mark composer html multiframe test as expected to fail for now

Merge: 719db73 04f9348
Tim Sutton 	2012-09-24

    Resolved merge conflicts with origin master

Hugo Mercier 	2012-09-24

    Clean up the last commit

Juergen E. Fischer 	2012-09-24

    add a missing file

Salvatore Larosa 	2012-09-24

    Translation into Italian for the console toolbar

Juergen E. Fischer 	2012-09-24

    SIP bindings update:
    - update methods of existing classes
    - add comment to methods missing in the sip bindings
    - split up collective sip files into single files and use
      same directory structure in python/ as in src/
    - add a lot of missing classes (some might not make sense because of
      missing python methods in those classes)
    - remove some non-existing methods from the header files
    - add scripts/sipdiff
    - replace some usages of std::vector and std::set with QVector/QSet

Merge: 58ba3f0 740eaf9
Tim Sutton 	2012-09-23

    Merge pull request #243 from slarosa/master

    Italian translation for python console

Salvatore Larosa 	2012-09-23

    adjustment to the translate file to get the Italian translation in python console

Merge: f7af2de 58ba3f0
Tim Sutton 	2012-09-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Larry Shaffer 	2012-09-22

    Update to QgsCollapsibleGroupBox

    - Saving/restoring checked state is off by default
      Restoring checked state caused many issues for groupboxes used in same window, but for different parent objects (e.g. labeling for different layers).
    - Saving/restoring checked state can be get/set via code
    - Add ability to get/set a QSettings group (instead of window obj name) for saving states.
      Allows for groupboxes to be used in multiple places/dialogs and maintain same states (e.g. adv labeling dialog).

Merge: d80d3cf 1b95cdc
Victor Olaya 	2012-09-22

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Victor Olaya 	2012-09-22

    fixed #6295
    did some cleaning in GrassAlgorithm.py

Merge: 2b1443f 1b95cdc
Tim Sutton 	2012-09-22

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 73fcb66 c5ff5ee
Tim Sutton 	2012-09-22

    Merge pull request #242 from slarosa/master

    improved python console paste action and minor bug fixes

Salvatore Larosa 	2012-09-22

    improved paste action and minor bug fixes

Salvatore Larosa 	2012-09-22

    cleaning and minor adjustments to the code for console

Magnus Homann 	2012-09-21

    Used QsgScaleComboBox in scale based visibility. Also fix #6213

Juergen E. Fischer 	2012-09-21

    indentation update

Juergen E. Fischer 	2012-09-21

    update QgsDiagramRendererV2 sip bindings

Juergen E. Fischer 	2012-09-21

    fix OGRSpatialReferenceH member declaration

Merge: 341935d d1c8884
Magnus Homann 	2012-09-21

    Merge pull request #240 from homann/test_scalecombobox

    Test and refactoring - qgsscalecombobox

Magnus Homann 	2012-09-21

    Added SIP, fixed qgisapp to use new setter and optimized a bit

Magnus Homann 	2012-09-21

    Added setting of scale programatially

Magnus Homann 	2012-09-20

    Added test for rounding

Magnus Homann 	2012-09-20

    Change in qgisapp and fixed a test

Magnus Homann 	2012-09-19

    Test of signals

Magnus Homann 	2012-09-19

    Simplified, and more test

Magnus Homann 	2012-09-19

    Added static helper functions and more tests

Magnus Homann 	2012-09-18

    First simple test

Merge: 003f833 719db73
Tim Sutton 	2012-09-21

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Merge: dd36727 8f155b9
Tim Sutton 	2012-09-21

    Merge pull request #239 from matthias-kuhn/diagram-numberformat

    Always show numbers in decimal format ( no e format )

Merge: 6ac8792 dd36727
Tim Sutton 	2012-09-21

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-09-21

    fix windows build

Matthias Kuhn 	2012-09-06

    Always show numbers in decimal format ( no e format )

Juergen E. Fischer 	2012-09-21

    add links to old api version to doxygen documentation

Merge: a220ef5 0133ed2
Hugo Mercier 	2012-09-21

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS into atlas

Tim Sutton 	2012-09-21

    Test new ComposerHtml accessor method and fixes for other tests.

Hugo Mercier 	2012-09-21

    Integration of Atlas into the core, first shot

Tim Sutton 	2012-09-21

    Fixes for fetching a CompositionHtml from a Composition

D'Hont René-Luc 	2012-09-21

    The parameter TYPENAME in the DescribeFeature request is now optional

Radim Blazek 	2012-09-21

    wcs test - improved report

Merge: 88ca822 5243423
Tim Sutton 	2012-09-21

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 05ae00d 88ca822
Tim Sutton 	2012-09-20

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Merge: 8fd7805 5243423
Tim Sutton 	2012-09-20

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: c5cc634 fed17aa
Etienne Tourigny 	2012-09-20

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-09-20

    raster save creation options validation:
    - move help and validation to gdal provider
    - validate options before saving
    - test for valid PREDICTOR option, depending raster properties

Tim Sutton 	2012-09-20

    Better test html table

Merge: 8489bd1 fed17aa
Tim Sutton 	2012-09-20

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2012-09-20

    wcs test - issues descriptions, GDAL WCS comparison

D'Hont René-Luc 	2012-09-20

    In addition to indicate the geometry type in the DescribeFeatureType request, this patch adds boundedBy to FeatureCollection and Feature element.

D'Hont René-Luc 	2012-09-20

    Revert "In addition to indicate the geometry type in the DescribeFeatureType request, this patch adds boundedBy to FeatureCollection and Feature element."

    This reverts commit 34175686a638e19edfa15e0324c2bce56f1468de.

D'Hont René-Luc 	2012-09-20

    In addition to indicate the geometry type in the DescribeFeatureType request, this patch adds boundedBy to FeatureCollection and Feature element.

Tim Sutton 	2012-09-20

    Further refactoring of composer html tests and fixes so that html elements consume all horizontal space

Alexander Bruy 	2012-09-20

    fix typo in OGC filter implementaion

Merge: 8fd7805 b1e00e9
Tim Sutton 	2012-09-20

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-09-19

    Added bindings for getting an item by id and a composerhtml instance that belongs to an item.

Radim Blazek 	2012-09-19

    wcs test - improved report, servers list in json

Merge: 78cb4e0 11dead9
Tim Sutton 	2012-09-19

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Tim Sutton 	2012-09-19

    In progress support for retrieval of html composer and items by id from map composition. Also refactoring python composer tests.

Radim Blazek 	2012-09-19

    nodata per band, src nodata optional

Merge: 0618a1f 35d869c
Magnus Homann 	2012-09-19

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Magnus Homann 	2012-09-19

    Changed comments only

Radim Blazek 	2012-09-19

    apply user nodata to all bands

Juergen E. Fischer 	2012-09-18

    german translation update

Juergen E. Fischer 	2012-09-18

    debian packaging update

Merge: 117e6f9 9c6ebdd
Tim Sutton 	2012-09-18

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2012-09-18

    fixes for QgsRasterInterface subclassing in Python

Magnus Homann 	2012-09-18

    Fixed restarting measurement with right-clicking.

Radim Blazek 	2012-09-18

    reimplemented user defined raster no data values

Larry Shaffer 	2012-09-17

    Fix to enable QgsCollapsibleGroupBox disclosure triangle if widget was previously disabled

Larry Shaffer 	2012-09-17

    Fix for compilers that do not cope with template argument

Merge: ca752ee af63afa
Tim Sutton 	2012-09-17

    Merge pull request #236 from matthias-kuhn/diagramtest

    Add diagram test files

Juergen E. Fischer 	2012-09-17

    fix a544133e46 - update measurement settings only on crs and options change

Juergen E. Fischer 	2012-09-17

    support non-squared svg symbols

Juergen E. Fischer 	2012-09-17

    debian packaging update

Merge: e671351 a25b1ec
Tim Sutton 	2012-09-17

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2012-09-17

    Example script in Python to download WCS layer

Radim Blazek 	2012-09-17

    raster saveas rendered with QgsSingleBandPseudoColorRenderer fix

Matthias Kuhn 	2012-09-17

    Add diagram test files

Juergen E. Fischer 	2012-09-17

    update measure dialog only when visible

Juergen E. Fischer 	2012-09-17

    add sip bindings to QgsCredentials

Juergen E. Fischer 	2012-09-17

    fix warnings

Juergen E. Fischer 	2012-09-17

    fix windows build

Werner Macho 	2012-09-17

    translation update: small fix for sv by Johan Nilsson

Etienne Tourigny 	2012-09-16

    remove unused constructor (also fix build error in mac osx)

Merge: d00c335 0138c47
Etienne Tourigny 	2012-09-16

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-09-16

    style manager : cosmetic changes (wider icons, splitter with save/restore, changed buttons appearance, add menu icon) and use menu instead of dialog to select new color ramp type

Juergen E. Fischer 	2012-09-17

    add more sip bindings:
    QgsCentroidFillSymbolLayerV2
    QgsImageFillSymbolLayer
    QgsLinePatternFillSymbolLayer
    QgsPointPatternFillSymbolLayer
    QgsSVGFillSymbolLayer
    QgsSimpleFillSymbolLayerV2

Merge: 44ef220 8898e6b
Tim Sutton 	2012-09-16

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-09-16

    Fixed comments only

Etienne Tourigny 	2012-09-16

    - various changes and bugfixes to QgsCptCityArchive and QgsCptCityColorRampV2

    UI changes:
     - view color ramps in separate list widgets, with qsplitter
     - draw stippled (check-board) background for ramps with transparency
     - save / restore geometry and layout
     - separate preview and info with tab widget

Etienne Tourigny 	2012-09-15

    add PROJ.4 version to about dialog

Juergen E. Fischer 	2012-09-16

    missed the new file

Juergen E. Fischer 	2012-09-16

    add sip bindings for QgsPalLabeling, QgsSimpleMarkerSymbolLayerV2,
    QgsSvgMarkerSymbolLayerV2, QgsFontMarkerSymbolLayerV2

Larry Shaffer 	2012-09-16

    Fixes for raster layer save as dialog

    - Initial show of very long CRS no longer makes combobox too wide
    - Remove min height for nodata groupbox, possible cause for not fully collapsing

Merge: cc63a1e d83b618
Magnus Homann 	2012-09-16

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Magnus Homann 	2012-09-16

    Fix stupid C++ error

Larry Shaffer 	2012-09-16

    Fixes for PAL labels to work with 8a347eb

    - Point/centroid label offset functions now work with independent data defined rotation
    - Rotate label tool now works with independent data defined rotation (always with Center/Half rotation point)

Larry Shaffer 	2012-09-16

    Fix for PAL label vertical offset

    - Corrected vertical alignment offset for all labels
    - Curved and parallel line labels also now register well for above/on/below

Merge: 3fb8093 802ab85
Magnus Homann 	2012-09-16

    Merge pull request #235 from homann/test_qgsclipper

    Fix stupid SIP error

Magnus Homann 	2012-09-16

    Fix stupid SIP error

Merge: 8a347eb 9629501
Magnus Homann 	2012-09-16

    Merge pull request #234 from homann/test_qgsclipper

    Test qgsclipper, improved testing and added constructor in QgsRectangle.

Magnus Homann 	2012-09-16

    Improved QgsClipper test, and ran prepare-commit

Magnus Homann 	2012-09-16

    Added conversion between QgsRectangle and QRectF. And tests.

Juergen E. Fischer 	2012-09-15

    [FEATURE] allow data defined rotation without data defined position

Juergen E. Fischer 	2012-09-15

    debian packaging update

Alexander Bruy 	2012-09-15

    change line endings to UNIX

Marco Hugentobler 	2012-09-15

    Process configuration also if the project has no own layers (there could be just embedded ones). Fixes ticket #6340

Marco Hugentobler 	2012-09-15

    Fix display of features in composer table if map is projected (ticket #6335)

Marco Hugentobler 	2012-09-15

    Fix scalebar alignment in composer (ticket #6317)

Larry Shaffer 	2012-09-14

    Label preview of adv labeling is collapsible

Larry Shaffer 	2012-09-14

    Fix QgsCollapsibleGroupBox signal and scrolling issue

    - Signal now passes pointer to custom widget; calling isCollapsed() now works in connected slot
    - Keep expanded group boxes in scroll areas from scrolling on first showing of dialog

Merge: c328539 3130719
Magnus Homann 	2012-09-14

    Merge pull request #233 from homann/test_qgsclipper

    Test Friday! QgsClipper test

Magnus Homann 	2012-09-15

    Test Friday! QgsClipper test

Merge: 7b80206 2a32eca
Alexander Bruy 	2012-09-14

    Merge branch 'master' into sextante-import

Alexander Bruy 	2012-09-14

    anomality images for stingray

Alexander Bruy 	2012-09-14

    fix coordinate transform python test
    fix typo in renderchecker

Merge: db59e1b 3a4d5e0
Etienne Tourigny 	2012-09-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-09-14

    debian packaging update:
    extra python-unittest2 dependency only necessary on squeeze, lucid and oneiric)

Etienne Tourigny 	2012-09-14

    automatically scroll parent QScrollArea when QgsCollapsibleGroupBox is expanded

Juergen E. Fischer 	2012-09-14

    debian packaging update

Etienne Tourigny 	2012-09-14

    set parent of QgsRasterLayerSaveAsDialog to inherit css

Etienne Tourigny 	2012-09-14

    honor flat property when set in designer or code before showEvent() (patch by Larry)

Etienne Tourigny 	2012-09-14

    fix alignment when using oxygen (kde) theme

Merge: 1080d97 799795a
Etienne Tourigny 	2012-09-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 8bf5cb2 799795a
Alexander Bruy 	2012-09-14

    Merge branch 'master' into sextante-import

Alexander Bruy 	2012-09-14

    [FEATURE] add SEXTANTE to core plugins
    Also add Victor to authors

Alexander Bruy 	2012-09-14

    create directories for scripts and models in user directory

Alexander Bruy 	2012-09-14

    add cmake stuff for SEXTANTE plugin

Alexander Bruy 	2012-09-14

    fix migration errors

Alexander Bruy 	2012-09-14

    fix another signal-slot connection in new console

Merge: 8241030 26a4340
Tim Sutton 	2012-09-14

    Merge pull request #232 from slarosa/master

    fix error in path for sextante icon

Salvatore Larosa 	2012-09-14

    fix path for icon

Merge: e1a1627 5b91b38
Magnus Homann 	2012-09-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Magnus Homann 	2012-09-14

    Reversed erroneous change

Merge: 396f363 89e75cf
Tim Sutton 	2012-09-13

    Merge pull request #230 from slarosa/master

    [New Python Console] - remember last used location for Open Tool

Salvatore Larosa 	2012-09-14

    added sextante icon for help

Salvatore Larosa 	2012-09-13

    added action to import sextante class

Larry Shaffer 	2012-09-13

    Remove hardcoded path for pyuic4 on Mac install

Merge: 24a047d e2e2792
Magnus Homann 	2012-09-13

    Merge pull request #231 from homann/memcpy_malloc_fixes

    Memcpy malloc fixes, should remove some out of mem crashes. Downside, it is still slow... Also fixed a warning about missing copy ctor.

Magnus Homann 	2012-09-13

    Removed warning about missing initalization of base class in copy constructor. I hope it is corect now?

Magnus Homann 	2012-09-13

    Changed from int to size_t in some places

Magnus Homann 	2012-09-13

    size_t is 8, int is 4 on amd64

Magnus Homann 	2012-09-12

    Added memory allocation failure tests

Salvatore Larosa 	2012-09-13

    cleaning up code

Salvatore Larosa 	2012-09-13

    improved icons and clean code

Radim Blazek 	2012-09-13

    raster sip fix for test unit

Radim Blazek 	2012-09-13

    raster sip fixes

Salvatore Larosa 	2012-09-13

    added remember last used dir for open tool in python console

Merge: 6af929a 94c2e1c
Hugo Mercier 	2012-09-13

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

Tim Sutton 	2012-09-12

    Transfer ownership of renderer to c++ in sip bindings when calling QgsRasterLayer.setRenderer and when passing shader to QgsSingleBandPseudoColorRenderer. Fixes crash experienced when using python bindings and replacing the shader or renderer of a raster.

Tim Sutton 	2012-09-12

    Regression test to similate crash that occurs when setting a raster layer renderer a second time

Tim Sutton 	2012-09-12

    Fix compiler warning about use of deprecated crs.epsg() call

Merge: 3cb4669 c1f37e8
Magnus Homann 	2012-09-12

    Merge pull request #229 from homann/issue5895

    Issue 5895 fix and testcase for projection errors. Hopefully, we can add on other projection errors to this test case. If there are any more...

Magnus Homann 	2012-09-12

    prepare-commit.sh

Magnus Homann 	2012-09-12

    Catch inverse transform failures in raster reprojector. Fix for #5895

Magnus Homann 	2012-09-12

    Changed to a much smaller raster file

Magnus Homann 	2012-09-11

    First little test case

Magnus Homann 	2012-09-10

    Fixed a divde-by-zero error

Radim Blazek 	2012-09-12

    WCS extent and save as fix

Alexander Bruy 	2012-09-12

    disable Toggle editing button when provider is not editable

Tim Sutton 	2012-09-12

    Support older version of python for expectedfail in rect tests

Tim Sutton 	2012-09-12

    Fix crash if colour for pallette is out of range

Radim Blazek 	2012-09-12

    rasters saveas data type conversion fix

Merge: 7ce99b8 e2fff49
Tim Sutton 	2012-09-12

    Merge pull request #228 from slarosa/master

    added support to paste code with multi-line text in console

Salvatore Larosa 	2012-09-12

    added support to paste multi-line text

Tim Sutton 	2012-09-11

    [FEATURE] Improved python console in QGIS based on PyScintilla. (This is a nominal commit to record the addition of this new feature)

Merge: 597e770 318dd7c
Tim Sutton 	2012-09-11

    Merge pull request #217 from endmax/master

    [FEATURE] The QgslegendInterface implementation updated to allow access to items and groups at all levels.

Radim Blazek 	2012-09-11

    WCS public servers test improved

Larry Shaffer 	2012-09-11

    Clean with prepare-commit

Larry Shaffer 	2012-09-11

    Increase padding for collapsed groupbox

Etienne Tourigny 	2012-09-10

    add save/load state and titleRect()

Etienne Tourigny 	2012-09-10

    add updateStyle() slot - to call when application style/style sheet changes

Etienne Tourigny 	2012-09-10

    allow to expand/collapse when clicking on title

Larry Shaffer 	2012-09-10

    Update adv labeling groupbox layout

Etienne Tourigny 	2012-09-10

    UI tweaks

Larry Shaffer 	2012-09-10

    Different approach, fixes several issues

    - Just set max height instead of hiding widgets
    - Default is to show expanded
    - Removed check in favor of just toggled signal
    - setCollapsed() now sets desired state for first show, if not visible
    - Added another test with Adv Labeling dialog (all grpbxs are now collapsible)
    - Wording cleanup

Larry Shaffer 	2012-09-10

    Move non-groupbox form widgets out of scroll area

Larry Shaffer 	2012-09-10

    Remove margin fix and tighten up spacing

Etienne Tourigny 	2012-09-10

    adapt raster save as dialog to changes in collapsible group box

Etienne Tourigny 	2012-09-09

    UI fixes to QgsCollapsibleGroupBox

Larry Shaffer 	2012-09-08

    Update collapsible groupbox with checkbox and styles

Alexander Bruy 	2012-09-11

    fix signals connection in console

Juergen E. Fischer 	2012-09-11

    also copy console_sci to build directory

Merge: 80c03e5 a090559
Tim Sutton 	2012-09-11

    Merge pull request #227 from slarosa/master

    [New Python Console] - added delete key for pressing event + other minor fixes

Salvatore Larosa 	2012-09-11

    added delete key in keyPressEvent

Tim Sutton 	2012-09-11

    Sorted names using vim

Tim Sutton 	2012-09-11

    Added Salvatore Larosa to contributors file

Tim Sutton 	2012-09-11

    Fix python console api installation

Salvatore Larosa 	2012-09-11

    Fix CMakeLists for building API

Salvatore Larosa 	2012-09-11

    check platform for font size

Merge: 02b6873 9db9ef8
Salvatore Larosa 	2012-09-11

    Merge pull request #1 from dakcarto/slarosa_pyqgisconsole

    Add support for prepared API file

Larry Shaffer 	2012-09-10

    Add support for prepared API file

    - Prepared API file supports Python 2.7, PyQGIS master, PyQt4.7.4, QScintilla2 2.4.5, osgeo 1.9.1
    - Set point size larger (should be setting in app)
    - Remove extra spacing between toolbar and console edit widget
    - Remove space from Qt object name
    - With many more API lines, autocompletion should start at least on second character, if not third

Salvatore Larosa 	2012-09-11

    fix issue with home key

Salvatore Larosa 	2012-09-10

    clear some command key and added shortcut ctrl+space

Salvatore Larosa 	2012-09-10

    clean up to code and added api directory

Salvatore Larosa 	2012-09-10

    New Python Console

Tim Sutton 	2012-09-10

    Mark qgsrectangle ctor test as known to fail.

Tim Sutton 	2012-09-10

    Added asWktPolygon method to QgsRectangle with a unit test. Discovered QgsRectangle tests were missing their main method causing them to not run. Then discovered that some of these tests fail, one of which remains unresolved.

Merge: 5eba984 83482fe
homann 	2012-09-10

    Merge pull request #226 from homann/issue2465_patch

    Issue2465 patch now included. Question if old pints-file now work directly.

Magnus Homann 	2012-09-10

    Added east/north clarification

Magnus Homann 	2012-09-06

    Compiles, but issues

Magnus Homann 	2012-09-06

    New files added

Magnus Homann 	2012-09-06

    Applied patch 2012-06-27 only

Etienne Tourigny 	2012-09-10

    adapt raster save as dialog to changes in collapsible group box

Etienne Tourigny 	2012-09-09

    UI fixes to QgsCollapsibleGroupBox

Tim Sutton 	2012-09-09

    Alphabetaised imports of qgsrasterlayerproperties.cpp

Larry Shaffer 	2012-09-08

    Update collapsible groupbox with checkbox and styles

Juergen E. Fischer 	2012-09-09

    doxygen & indentation fixes

Nathan Woodrow 	2012-09-09

    Fix Mac build

Juergen E. Fischer 	2012-09-08

    - make python tests runnable from build directory again
    - don't change testfiles in test runs

Juergen E. Fischer 	2012-09-08

    debian packaging update

Nathan Woodrow 	2012-09-08

    Use configpath for customization. Fix #6068

Larry Shaffer 	2012-09-07

    Fix for #6315, and keeps centroid calc. for whole feature in adv labeling

Merge: 09c3693 2e8d82f
Etienne Tourigny 	2012-09-07

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-09-07

    fix QgsCollapsibleGroupBox UI (arrows should render correctly)

Tim Sutton 	2012-09-07

    Added simple python vector layer test

Tim Sutton 	2012-08-27

    Added comment about origin of qgis path var

Merge: d686fbe 26dc406
Etienne Tourigny 	2012-09-07

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-09-07

    add cpt-city files to osgeo4w build

Alexander Bruy 	2012-09-07

    python tests for QgsRectangle and QgsSpatialIndex

Marco Hugentobler 	2012-09-07

    Return edit types as text

Marco Hugentobler 	2012-09-07

    Show display field in GetProjectSettings

Marco Hugentobler 	2012-09-07

    Show layer visibility in GetProjectSettings

Merge: 6e63f9f 3a4fa2f
Tim Sutton 	2012-09-07

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-09-07

    Added Jaka to contributors list - thanks \o/

Merge: c5763f9 89811ae
Tim Sutton 	2012-09-07

    Merge pull request #225 from lynxlynxlynx/master

    linking fix + coalesce tests + coalesce doc

Jaka Kranjc 	2012-09-07

    added english coalesce() function help

Jaka Kranjc 	2012-09-07

    tests: added coalesce coverage

Jaka Kranjc 	2012-09-07

    fixed building of qgis.g.info when nothing else passes the math link flag

Marco Hugentobler 	2012-09-07

    Show print information only in GetProjectSettings, not in caabilities. Better handling of layer order

Tim Sutton 	2012-09-07

    Removed added in 1.9 comment for qgsrectangle::scale

Tim Sutton 	2012-09-07

    Added version note for scale method in qgsrectangle

Tim Sutton 	2012-09-07

    Make linear interpolation default for pseudocolor raster renderer

Juergen E. Fischer 	2012-09-07

    german translation update and typo fixes

Juergen E. Fischer 	2012-09-07

    indentation update

Juergen E. Fischer 	2012-09-07

    fix windows build

Merge: 0d189ff ea86b93
Etienne Tourigny 	2012-09-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2012-09-06

    more raster Python bindings, raster write test in Python

Merge: 5b49c9e e690048
Etienne Tourigny 	2012-09-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-09-06

    add cpt-city files to debian builds

Marco Hugentobler 	2012-09-06

    Export layer drawing order to extended capabilities

Marco Hugentobler 	2012-09-06

    Add min/max scale denominator to capabilities output

Merge: d77973d ea2de72
Tim Sutton 	2012-09-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-09-06

    Revert "Fix from lynxlynxlynxlynxlynx for building grass on mac"

    This reverts commit 977518af3a669aac1045eebb5b00fce2b6d50680.

Marco Hugentobler 	2012-09-06

    [Feature]: Add GetProjectSettings request to QGIS server to have more specific information about the project than in GetCapabilities

Larry Shaffer 	2012-09-06

    Adjust wording about PAL engine

Tim Sutton 	2012-09-06

    Fix issue where layer order panel is restored in place of layers panel

Tim Sutton 	2012-09-06

    Fix from lynxlynxlynxlynxlynx for building grass on mac

Larry Shaffer 	2012-09-06

    Fix for #6309, add case-insensitive sort for vector provider encodings

Merge: 4d90320 6cd3d77
mhugent 	2012-09-06

    Merge pull request #224 from matthias-kuhn/diagram

    Minor diagram improvements

Marco Hugentobler 	2012-09-06

    Better reusage of composer functionality between server and desktop

Matthias Kuhn 	2012-09-06

    Double clicking an attribute item adds it to assigned items

Marco Hugentobler 	2012-09-06

    Fix item reading for GetPrint (project file format changed between 1.8 and 1.9)

Merge: e109101 0748867
homann 	2012-09-05

    Merge pull request #223 from homann/custom_ellipsoid

    Custom ellipsoid for measurement and corresponding UI changes

Magnus Homann 	2012-09-06

    Adjusted major/minor printout

Magnus Homann 	2012-09-06

    No divide by zero, thanks

Magnus Homann 	2012-09-05

    Removed unused functions and polished UI

Magnus Homann 	2012-09-05

    Changed UI for selecting ellipsoid, and added custom parameters for ellipsoids

Radim Blazek 	2012-09-05

    New QgsRasterChecker class for raster comparison in tests.

    New test for raster file writer.

Matthias Kuhn 	2012-09-05

    Fix warnings

Juergen E. Fischer 	2012-09-05

    fix windows build

Radim Blazek 	2012-09-05

    GRASS raster rendered by default as pseudo color, color table loaded from GRASS

Radim Blazek 	2012-09-05

    GRASS stats upgrade

Radim Blazek 	2012-05-24

    calc raster stats in grass module, time reduced to 20%, solves part of #4862

Merge: 9d5b16e 1e1cdb8
Marco Hugentobler 	2012-09-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2012-09-05

    Added Matthias to contributor list

Marco Hugentobler 	2012-09-05

    Fix printing of pie and text diagrams

Merge: cfa15ff aa31c8c
Marco Hugentobler 	2012-09-05

    [Feature]: Merge diagram improvements provided by Matthias Kuhn

pcav 	2012-09-05

    Fix #6105

Marco Hugentobler 	2012-09-05

    Add documentation for function QgsComposition::loadFromTemplate

Marco Hugentobler 	2012-09-04

    Allow text substitution for template loading

Marco Hugentobler 	2012-09-04

    Don't create undo action if loading template via gui

Marco Hugentobler 	2012-09-04

    Ensure item widgets are deleted if loading composer templates

Marco Hugentobler 	2012-09-04

    Add method QgsComposition::loadFromTemplate and python bindings

Larry Shaffer 	2012-09-04

    Clean up label engine dialog

Larry Shaffer 	2012-09-04

    Add 'show all labels' setting to individual PAL layers

    - Implements a version of #5874
    - Show-all labels are not obstacles for other PAL layer labels during collisions
    (i.e. they will overlap or underlie other labels depending upon render order)

Nathan Woodrow 	2012-09-05

    Add tests for expression scale function

Radim Blazek 	2012-09-04

    - QgsRenderChecker moved to core + Python bindings
    - raster transparency python test

Radim Blazek 	2012-09-04

    raster transparency test

Radim Blazek 	2012-09-04

    raster saveas: load nodata from layer transparency

Nathan Woodrow 	2012-09-04

    Add expression function help

Radim Blazek 	2012-09-04

    raster transparency floating point fix

Magnus Homann 	2012-09-03

    Fixed the rebasing-mess

Magnus Homann 	2012-09-01

    Started on ExpBuiWid

Magnus Homann 	2012-08-30

    Added DA to qgsattribute... Not sure if it works OK...

Magnus Homann 	2012-08-30

    Made qgsexpression be DA-aware

Merge: ad2ff90 0d1b1aa
homann 	2012-09-04

    Merge pull request #219 from homann/measure_cleanup

    Measure cleanup and fix #5156

Magnus Homann 	2012-09-03

    Changed to GEO_NONE, fixed a bug in test

Magnus Homann 	2012-08-30

    Change to using UnitTypes, part deux

Magnus Homann 	2012-08-30

    Change to using UnitTypes

Magnus Homann 	2012-08-29

    Scalebar uses preferred units now

Magnus Homann 	2012-08-29

    Small tidying up, replacing with GEO_NONE

Magnus Homann 	2012-08-28

    Fix for #5156

Magnus Homann 	2012-08-28

    Removed Ellipsoid button and added "NONE" as a selectable ellipsoid.

    All three measure dialog now work on the same global setting,
    using ellipsodial calculation only if CRS transformation is turned
    on in Project Settings, and if the chosen ellipsoid is != "NONE".
    An old bug made "NONE" not selectable!

Magnus Homann 	2012-08-27

    Changed angle measurement to behave same as the other

Magnus Homann 	2012-08-27

    Fix of type in header

Magnus Homann 	2012-08-27

    Cleaned up a bit, fixed area dialog also

Magnus Homann 	2012-08-27

    Looks good, but an extra line when finished is not so pretty. The total is constant, though

Magnus Homann 	2012-08-26

    Not working, but soon

Nathan Woodrow 	2012-09-04

     Add missing sip file

Nathan Woodrow 	2012-09-02

    Add python bindings message bar

Juergen E. Fischer 	2012-09-03

    fix sip error

Alexander Bruy 	2012-09-03

    fix loading vector metadata

Radim Blazek 	2012-09-03

    WMS transparency fix, issue #6276

Tim Sutton 	2012-09-03

    Added comment about introduction of srid to version 1.9 for data source id

Merge: 7cc62de 56c15dc
Tim Sutton 	2012-09-03

    Resolved merge conflicts

Merge: ff7b21d bb3d86b
Tim Sutton 	2012-09-03

    Merge pull request #222 from homann/test_DA

    Test of QgsDistanceArea + functionality addition

Magnus Homann 	2012-09-03

    Adedd .sip define

Magnus Homann 	2012-09-03

    Added simple text unit test

Magnus Homann 	2012-09-02

    Added possibility to set custom ellipsoid

Magnus Homann 	2012-09-02

    Added test of distance calculations and test data

Magnus Homann 	2012-09-01

    Basic test of QgsDistanceArea

Radim Blazek 	2012-09-03

    ECW identify() fix conditional for ECW driver and GDAL < 1.9.2

Larry Shaffer 	2012-09-03

    Fix for double point size in font named-style lookups

Merge: 70fc079 c322cd5
Nathan Woodrow 	2012-09-03

    Merge pull request #221 from szekerest/master

    Specify port 1433 for FreeTDS by default. Allow to specify server/database/uid/password when the driver setting is present

szekerest 	2012-09-03

    Specify port 1433 for FreeTDS by default. Allow to specify server/database/uid/password when the driver setting is present (fixes #6259, fixes #6263)

Matthias Kuhn 	2012-09-03

    sizePainterUnits: Calculate based on specified size instead of size in QgsDiagramSettings

Matthias Kuhn 	2012-09-03

    Calculate size for PAL correctly also if same attribute is used multiple times.

Matthias Kuhn 	2012-09-03

    Allow smaller numbers in size spin box

Matthias Kuhn 	2012-09-03

    Enable diagram size options based on sizeType selection

Matthias Kuhn 	2012-09-03

    Comments for documentation

Matthias Kuhn 	2012-09-03

    Selection mode for diagram attributes adjusted

Matthias Kuhn 	2012-09-03

    Add warning if no reference value for diagram scaling has been selected.

Matthias Kuhn 	2012-09-03

    Use QToolBox instead of QTabWidget in diagram properties

Werner Macho 	2012-09-03

    translation update: gl_EX by XAN

Larry Shaffer 	2012-08-31

    Add quadrant, offset, rotation for points/centroids in adv labeling

    - Possible fix for #4634, #5256, #6162
    - Uses GEOS to convert centroids to points before PAL solution

    - Implements #3492, #6285
    - Convert PAL layer types 'over point/centroid' to 'offset from point/centroid'
    - Add quadrant offsets (above/below/right, etc. like in old labeling)
    - Add x and y offset, in mm or map unit, in addition to quadrant
    - Default for offset is set to map units (mm scales oddly with zoom)

    - Implements #4517, #6118; updates fix for #4317
    - Rotation is independent of data defined columns
    - Rotation bounding box included in offset calculation
    - GUI spin box range set from -360 to +360 for initial dev testing

    - Keep from scaling letter/word spacing if set to 0

Nathan Woodrow 	2012-09-01

    expose layer to javacript

Nathan Woodrow 	2012-08-21

    Move expression text replace to QgsExpression

        - Update actions, html map tips, and annotations

Nathan Woodrow 	2012-08-12

    Add html annotations

Merge: b43ed34 df04771
Jürgen Fischer 	2012-09-01

    Merge pull request #200 from sdikiy/dirdebug

    Debugging of all files in a directory

Juergen E. Fischer 	2012-09-01

    fix warnings

Juergen E. Fischer 	2012-09-01

    only accept crs matches if there's only one (improved #5066)

Magnus Homann 	2012-08-31

    Svensk översättning

Larry Shaffer 	2012-08-30

    Add word and letter spacing to PAL layer of adv labeling

    - Caveat: does not work with curved line labels (yet)
    - Reorganize form widgets, moving mulit-line options to own groupbox
    - Character width option removed due to very erratic QFont::setStretch() bugs

Marco Hugentobler 	2012-08-28

    Fix diagram scaling for print

Matthias Kuhn 	2012-08-31

    Revert print scale fix.
    Use Marco Hugentobler's print scale fix. It's cleaner

Marco Hugentobler 	2012-08-31

    Improve scalebar default settings

Giuseppe Sucameli 	2012-08-31

    use 4 spaces for the indention, as per PEP8

Giuseppe Sucameli 	2012-08-30

    move QgsMessageBar class to GUI library, improve its doc

Giuseppe Sucameli 	2012-08-23

    add option to choose whether enable project macros

Giuseppe Sucameli 	2012-08-22

    add tooltip to message bar's close button

Larry Shaffer 	2012-08-21

    Changes to QgsMessageBar icons and Enable macros action

Giuseppe Sucameli 	2012-08-21

    Project macros: do not display the warning bar when there are no macros in the project, decrease warning bar message level for macros

Giuseppe Sucameli 	2012-08-21

    [FEATURE] Add support to user-defined python macros into project file:

    macros are executed when a project is loaded (openProject function), saved (saveProject function) or is closing (closeProject function),
    macros' python code is embedded in the project file (XML),
    a bar (non-blocking) is shown on the top of the canvas to ask to the user whether enable project macros.

    Work done for ARPA Piemonte

Marco Hugentobler 	2012-08-31

    Add test and control images for composer scalebar test

Magnus Homann 	2012-08-31

    Svensk översättning

Nathan Woodrow 	2012-08-31

    Add format_number function to QgsExpression.

        - Add locale-aware separator for thousand separator

Etienne Tourigny 	2012-08-31

    fix db handling when modifying existing color ramp (#6229)

Merge: ee16369 c928868
Marco Hugentobler 	2012-08-31

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2012-08-31

    Thousand separator for numeric scale bar style (depending on locale). Implements ticket #6287

Larry Shaffer 	2012-08-30

    Add Panels and Toolbars submenus to View menu in Composer

Nathan Woodrow 	2012-08-31

    initialize mScale to 0 in QgsExpression

Arunmozhi 	2012-08-30

    lot of UI improvements in symbol layer widgets

Marco Hugentobler 	2012-08-30

    Fix frames in html tests

Nathan Woodrow 	2012-08-30

    Add  function to QgsExpression

Alexander Bruy 	2012-08-30

    fix file permissions

Marco Hugentobler 	2012-08-30

    Test for multiframe html in python

Larry Shaffer 	2012-08-28

    Add capitalization support to PAL layer of adv labeling

    - Title case does not convert existing uppercase->lowercase, only lowercase->uppercase (Qt issue)
    - Didn't offer QFont::SmallCaps option as it does not work right with QPainterPath::addText()
      see https://bugreports.qt-project.org/browse/QTBUG-13965
    - Store and re-apply some QFont properties stripped when choosing new typeface
    - Move sample background color selector right of sample text

Magnus Homann 	2012-08-29

    Svensk översättning

Magnus Homann 	2012-08-29

    Small tidying up, replacing with GEO_NONE

Magnus Homann 	2012-08-28

    Fix for #5156

Magnus Homann 	2012-08-28

    Removed Ellipsoid button and added "NONE" as a selectable ellipsoid.

    All three measure dialog now work on the same global setting,
    using ellipsodial calculation only if CRS transformation is turned
    on in Project Settings, and if the chosen ellipsoid is != "NONE".
    An old bug made "NONE" not selectable!

Magnus Homann 	2012-08-27

    Changed angle measurement to behave same as the other

Magnus Homann 	2012-08-27

    Fix of type in header

Magnus Homann 	2012-08-27

    Cleaned up a bit, fixed area dialog also

Magnus Homann 	2012-08-27

    Looks good, but an extra line when finished is not so pretty. The total is constant, though

Magnus Homann 	2012-08-26

    Not working, but soon

Juergen E. Fischer 	2012-08-29

    fix build error

Juergen E. Fischer 	2012-08-29

    fix #5894

Marco Hugentobler 	2012-08-29

    Added python test for composer html

Marco Hugentobler 	2012-08-29

    Change composerhtml control images. Fix html test to have item frames

Juergen E. Fischer 	2012-08-29

    use qRound() fro round() (followup ad437bfdffd)

Juergen E. Fischer 	2012-08-29

    fix crash in #6276

Marco Hugentobler 	2012-08-29

    Upload images from python composer check to cdash, fix frame of python composer test

Matthias Kuhn 	2012-08-29

    Draw histogram diagrams in assigned space (no half-bar-width offset)

Merge: 4e914c6 244e7d1
Matthias Kuhn 	2012-08-29

    Merge branch 'print-diagram'

Matthias Kuhn 	2012-08-29

    Default width for histogram

Merge: 0eab969 dae596a
Matthias Kuhn 	2012-08-29

    Merge branch 'master' of https://github.com/matthias-kuhn/Quantum-GIS

    Conflicts:
src/app/qgsdiagramproperties.cpp

Merge: c8a3321 b97f2fc
Matthias Kuhn 	2012-08-29

    Merge branch 'diagram-additional-fix'

Matthias Kuhn 	2012-08-29

    Fix text diagram
    Assign userData properly to text diagram combobox item.
    Use id's instead of translated text for selected item identification in combobox.

Juergen E. Fischer 	2012-08-29

    use qRound() for round()

Juergen E. Fischer 	2012-08-29

    fix build error and a few warnings

Juergen E. Fischer 	2012-08-29

    german translation update

Juergen E. Fischer 	2012-08-28

    [FEATURE] add optional filter value to value relation edit widget
    and sync QgsVectorLayer sip bindings with C++ interface

Etienne Tourigny 	2012-08-28

    add raster stats to python bindings (many more functions missing)

Merge: 2a3d09c d2a18c2
Etienne Tourigny 	2012-08-28

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-08-28

    use meaningful names for new symbols and ramps

Marco Hugentobler 	2012-08-28

    Fix diagram scaling for print

Merge: 9226e84 2900646
Etienne Tourigny 	2012-08-28

    Merge branch 'style-docs' of https://github.com/tecoholic/Quantum-GIS

Arunmozhi 	2012-08-26

    added name checking to new colorramps as well

Alexander Bruy 	2012-08-28

    fix #6264

Alexander Bruy 	2012-08-28

    fix #6235

Merge: ec6b5a5 924e7eb
Etienne Tourigny 	2012-08-27

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-08-27

    reduce verbosity of QgsDataItem

Etienne Tourigny 	2012-08-27

    fix #6225

Nathan Woodrow 	2012-08-28

    Add startup python script support

endmax 	2012-08-27

    removed the limitation to top leve items for group indexing

Giuseppe Sucameli 	2012-08-13

    SLD support: fix conversion between dash style and dasharray, retrieve displacement offset

Giuseppe Sucameli 	2012-08-11

    SLD support: try to convert OGC Literal to number before using it as string, fix parser error check

Giuseppe Sucameli 	2012-08-11

    SLD support: convert SLD rotated lines back to line pattern fill (partially fix #6173)

Giuseppe Sucameli 	2012-08-27

    retrieve marker line interval from SLD, do not use default value when 0

Giuseppe Sucameli 	2012-08-27

    identifiers (schemas, tables, fields) added to DBManager sql windows completer list.

    Thanks Silvio Grosso for the sponsorship.

Juergen E. Fischer 	2012-08-27

    fix #6253

Alister 	2012-08-23

    minor fix and improvement to rendering of selected polygons

Larry Shaffer 	2012-08-26

    Revert most Mac hacks for testing in favor of 4cfc365

    - Cleanup of old .qml svg paths to matches other test data .qml

Etienne Tourigny 	2012-08-26

    implement pyramids in raster save dialog ; improve pyramids creation ; remove pyramid-related stuff from qgsrasterlayer

Juergen E. Fischer 	2012-08-26

    make tests runable without install

Merge: 31743cf 725275c
Tim Sutton 	2012-08-26

    Merge pull request #215 from homann/small_fixes_1969_2850

    Follow up commit for #1959 and #2850

Tim Sutton 	2012-08-26

    Typo fix

Tim Sutton 	2012-08-26

    Typo fix

Tim Sutton 	2012-08-26

    Added coordinate system python test and set cmake to copy qgis.db and srs.db into output dir so tests that rely on those can work

Tim Sutton 	2012-08-25

    Tidy up for py geometry tests

Tim Sutton 	2012-08-24

    In progress implementation of coordinate transform test

Tim Sutton 	2012-08-23

    Added python test for qgscoordinatetransform

Nathan Woodrow 	2012-08-26

    Add double to int rounding function

Nathan Woodrow 	2012-08-25

    Add round function to QgsExpression

Magnus Homann 	2012-08-25

    Re-added connect from Ellipsoid checkbox

Juergen E. Fischer 	2012-08-25

    typo fixes, translation string updates and german translation update

Merge: ae08961 5ba8422
Tim Sutton 	2012-08-25

    Merge pull request #212 from homann/issue2850

    Fix for issue 2850

Merge: ca7fa30 6862a94
Tim Sutton 	2012-08-24

    Merge pull request #208 from homann/issue1969

    Issue1969 - Improvements to use of measurement functionality

Tim Sutton 	2012-08-24

    In progress implementation of coordinate transform test

Tim Sutton 	2012-08-23

    Added python test for qgscoordinatetransform

Larry Shaffer 	2012-08-24

    Fix for app paths not found by test

Larry Shaffer 	2012-08-24

    Fix package data and svg paths for cmake and pyqgis tests on Mac

Marco Hugentobler 	2012-08-25

    Fix for bug #6245 (master crashes applying a composer template)

Etienne Tourigny 	2012-08-24

    fix style test

Etienne Tourigny 	2012-08-24

    restore qgscolorbrewerpalette.h

Merge: 3f8a467 c836d61
Etienne Tourigny 	2012-08-24

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into coloramp

Etienne Tourigny 	2012-08-24

    fix merge mistake

Merge: 9d96e76 f5c7753
Etienne Tourigny 	2012-08-24

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-08-24

    implement UI for pyramids in raster save dialog, ui tweaks and bugfixes

Merge: d0bf482 11ce55c
Tim Sutton 	2012-08-24

    Merge pull request #214 from slarosa/master

    Added tests to Geometry test

Tim Sutton 	2012-08-24

    Merged in upstream svn changes into sextante branch

Merge: 17f91e7 9f47d96
Tim Sutton 	2012-08-24

    Merge linfiniti2:/tmp/sextante into sextante-import

Marco Hugentobler 	2012-08-24

    Add accessor for individual frame to QgsComposerMultiFrame. Adapt unit tests because composer items without frames are now the default

Etienne Tourigny 	2012-08-24

    add qgscollapsiblegroupbox, use in raster save dialog

Salvatore Larosa 	2012-08-24

    Added other tests for PyQgsGeometry

Alexander Bruy 	2012-08-24

    fix warnings

Magnus Homann 	2012-08-24

    Small sizeof() fix

Radim Blazek 	2012-08-24

    API doc fix

Etienne Tourigny 	2012-08-23

    bugfixes to archive management

Merge: 69c3774 eaecf0c
Etienne Tourigny 	2012-08-23

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into coloramp

Etienne Tourigny 	2012-08-23

    offload parsing from cptcityarchive to cptcitydataitem members, minimize load times by reading dirs/files on demand

Etienne Tourigny 	2012-08-22

    change QgsCptCityCollection to QgsCptCityArchive, join with items and model in file qgscptcityarchive.h

Etienne Tourigny 	2012-08-22

    use selections from .xml files

Larry Shaffer 	2012-08-20

    Support for named typeface styles in adv. labeling engine

    - Support for named typeface styles (Hairline, Slanted, Bold Cond Italic, etc.)
    - Named style combobox selector and PAL layer setting
    - Named style assignment to preexisting PAL layer fonts
    - Underline and strikeout options outside of font selection dialog
    - Simple test and notification for missing fonts per layer
    - Add QSplitter between preview and label options
    - Large previews now viewable even on small screens
    - Label previews for map units can scale to 320 pixels
    - More accurate underline, strikeout and buffer previews

Radim Blazek 	2012-08-23

    raster save as optional nodata

Magnus Homann 	2012-08-23

    Added a signal from canvas when it has refreshed

Merge: 523b56f 8015c12
Etienne Tourigny 	2012-08-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-08-23

    implement collapsible groupbox items - needs feedback before implementing as a widget in qgis_gui

Radim Blazek 	2012-08-23

    faster grass raster nodata

Radim Blazek 	2012-08-23

    nodata rendered transparent

Merge: b145998 a8ca14b
Etienne Tourigny 	2012-08-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-08-23

    fix symbol and color ramp saving - issues #6222 and #6227

Merge: b6760ce 447c0d1
Etienne Tourigny 	2012-08-23

    Merge branch 'style-docs' of https://github.com/tecoholic/Quantum-GIS

Marco Hugentobler 	2012-08-23

    Disable frame on composer items per default

Marco Hugentobler 	2012-08-23

    Use map width instead of diagonal for scale bar calculation based on ellipsoid (because scale is often depending on direction)

Juergen E. Fischer 	2012-08-23

    fix typos and some warnings

Magnus Homann 	2012-08-23

    Removed unecessary .arg()

Magnus Homann 	2012-08-23

    Added translation to QgsMeasureDialog

Magnus Homann 	2012-08-22

    Added converters for QGis:UNitTypes

Magnus Homann 	2012-08-21

    Renamed one member and its funtcion, and undo last commit

Magnus Homann 	2012-08-21

    Fix for projection/ellipsoid

Magnus Homann 	2012-08-21

    Changed UI and added tool tip

Magnus Homann 	2012-08-20

    Moved convertMeasure to QgsDistanceArea

Magnus Homann 	2012-08-20

    Renamed accessor/mutator and deprecated old names

Magnus Homann 	2012-08-20

    Loads of debug output. Shouldn't affect functionality

Larry Shaffer 	2012-08-22

    Fix for #6234, data-defined strikeout not written

Radim Blazek 	2012-08-22

    gdal identify with 2x2 block, hopefully fix for #4594 (slow identify with ecw

Radim Blazek 	2012-08-22

    raster transparency single band ranges, no data in save as, pipe to file writer

Arunmozhi 	2012-08-22

    bug fix for issue #6229

Alexander Bruy 	2012-08-22

    smooth scrolling in message log
    fix file permissions

Arunmozhi 	2012-08-22

    added documentation to the QgsStyleV2 functions

Juergen E. Fischer 	2012-08-21

    postgres provider: cancel running geometry type query

Radim Blazek 	2012-08-21

    layer crs instead of provider crs in raster save dialog

Alexander Bruy 	2012-08-20

    fix #6223

volayaf@gmail.com 	2012-08-20

    fixed indentation error in single to multiparts alg

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@355 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-08-20

    fixed #6221 (single to multiparts)

    adapted SEXTANTE native algs to be able to handle all kinds of vector outputs

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@354 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-08-19

    fix some leaks and cleanup

cpolymeris@gmail.com 	2012-08-19

    Try to install R package rgdal if unavailable.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@353 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-08-19

    fixed #6221

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@352 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-08-19

    Adapt composerhtml test to new multiframe resize modes

Merge: bcbdd7c cb3a08e
Marco Hugentobler 	2012-08-19

    Merge branch 'multiframe_options'

Marco Hugentobler 	2012-08-19

    More resize mode fixes

Marco Hugentobler 	2012-08-19

    Fix multiframe resize behaviour

Juergen E. Fischer 	2012-08-19

    use QEXPECT_FAIL instead of disabling the test

Merge: 45cb47c c690f53
Tim Sutton 	2012-08-18

    Merge pull request #207 from homann/issue1591

    Added lat,long or east,north to some tooltips

Magnus Homann 	2012-08-18

    Added lat,long or east,north to some tooltips

Juergen E. Fischer 	2012-08-18

    fix #5931

Juergen E. Fischer 	2012-08-18

    handle min()/max() macros offending std::numeric_limits::min()/max() on MSVC in one spot

Alexander Bruy 	2012-08-18

    update columns list when attribute table updated

Etienne Tourigny 	2012-08-18

    colorramp: modify tests for builtin gradients, fix rendering

Etienne Tourigny 	2012-08-17

    create basidc cpt-city collection with colorbrewer and grass gradients

Etienne Tourigny 	2012-08-17

    rework collection handling, add builtin collection (just colorbrewer for now)

Etienne Tourigny 	2012-08-16

    check for valid items in qgscptcitybrowsermodel

Etienne Tourigny 	2012-08-13

    show license+description when directory is selected

Etienne Tourigny 	2012-08-12

    cpt-city dialog: implement as model/view

Juergen E. Fischer 	2012-08-18

    log network timeouts

Juergen E. Fischer 	2012-08-18

    - extend support for user defined network timeout to QgsNetworkAccessManager
    - support for user defined tile expiration time for WMTS/WMS-C tiles (fixes #5104)

Merge: 4b40c53 500c64a
Nathan Woodrow 	2012-08-18

    Merge pull request #206 from szekerest/master

    MSSQL: Fix for the parser when reading multipoint geometries (fixes #6190)

Juergen E. Fischer 	2012-08-18

    fix #5828

szekerest 	2012-08-18

    MSSQL: Fix for the parser when reading multipoint geometries (fixes #6190)

Merge: b42067e a18e396
Tim Sutton 	2012-08-17

    Merge pull request #205 from homann/issue1993

    Issue1993

Merge: 24e3559 ceea621
Nathan Woodrow 	2012-08-17

    Merge pull request #204 from szekerest/master

    Fix for the issue with mssql non-spatial views (#6217)

Juergen E. Fischer 	2012-08-18

    fix test crash on windows

Magnus Homann 	2012-08-18

    Fix extent to determine center point for angle calculation

Magnus Homann 	2012-08-18

    Changed TOL tests

Juergen E. Fischer 	2012-08-18

    fix tests on windows

Larry Shaffer 	2012-08-17

    Fix Mac path to resources and grass and sqlanywhere  provider frameworks for tests

    - Any test needing access to QGIS_DATA_SUBDIR (srs.db, svg, etc.) was looking for Resources in the bundled app instead
    - This included failure for any call to qgscoordinatereferencesystem.cpp using srs.db and when locating svg icons
    - Does not fix QGIS_DATA_SUBDIR in Python tests
    - Subtests that were failing, as above, within a given test are still not triggering a fail for the test
    - Symlink to grass and sqlanywhere frameworks created just for testing

szekerest 	2012-08-17

    Fix for the issue with non-spatial views (#6217)

Tim Sutton 	2012-08-17

    Added test for logger

Juergen E. Fischer 	2012-08-17

    use serif font in qgis_composerhtmltest

Juergen E. Fischer 	2012-08-17

    test fixes:
    - fix TestQgsRectangle build error
    - disable TestStyleV2::testSaveLoad() test while QgsStyleV2::save() is defunct
    - used temporary copy of testzip.zip in TestZipLayer so that original is not modified

Merge: b7e6e64 d05701f
Tim Sutton 	2012-08-17

    Merge pull request #203 from slarosa/master

    Added MultiGeometry tests

Salvatore Larosa 	2012-08-17

    Added MultiGeometries tests for test friday

Merge: b37a3b6 b5a59fd
Jürgen Fischer 	2012-08-17

    Merge pull request #202 from homann/issue6194

    Fix for #6194

Matthias Kuhn 	2012-08-17

    do not override pen alpha when a transparency is set

Matthias Kuhn 	2012-08-17

    piechart: draw circle if only one value > 0

Matthias Kuhn 	2012-08-17

    Do not apply diagram transparency to pen
    but instead save custom pen alpha value

Merge: ed98805 4839a2a
Alexander Bruy 	2012-08-17

    Merge branch 'test_memory'

Marco Hugentobler 	2012-08-17

    Implemented new resize modes for multiframe item (currently only html)

Alexander Bruy 	2012-08-17

    add python test for memory provider

Matthias Kuhn 	2012-08-17

    Fix compile problem: define variable

Magnus Homann 	2012-08-17

    Typo.

Matthias Kuhn 	2012-08-17

    Fix diagram printing
    When units are set to mm convert first to units that PAL expects for arrangement.

Magnus Homann 	2012-08-17

    Fixed SIP errors and reinstated expand() as depreceated.

Magnus Homann 	2012-08-17

    Fix for scale/extend issue #6194. Added test case.

Marco Hugentobler 	2012-08-17

    Add new composer multiframe resize methods ExtendToNextPage and RepeatUntilFinished

alexander.bruy@gmail.com 	2012-08-17

    use last used encoding if none specified

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@351 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

alexander.bruy@gmail.com 	2012-08-17

    add encoding support for output vector

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@350 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

alexander.bruy@gmail.com 	2012-08-17

    add wrapper vector writer class

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@349 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Larry Shaffer 	2012-08-16

    Fix for disappearing and inaccurate buffer previews in adv labeling

Juergen E. Fischer 	2012-08-16

    fix warnings

Juergen E. Fischer 	2012-08-16

    allow to ignore (OGR's interpretation of ) shape file encoding (might fix #5911)

Larry Shaffer 	2012-08-16

    Fix scale-dependent, data defined fields test against renderer's scale for accuracy

Larry Shaffer 	2012-08-14

    Add map units, join styles and transp. fill to buffer options in adv labeling

    - Preview now shows when interior of buffer is set to transparent
    - Text size in map units are now not reset to pts when choosing a font
    - Preview background is now saved with PAL settings per layer
    - Add groupbox title warning about missmatch of unit type between text and buffer
    - Preview now does not show buffer if it is in map units and the text is in pts
    - Preview now shows map units text/buffer visual ratio within reason (looks like map labels)
    - Preview can now be dynamically scaled between 8 and 152 pts size
    - Defaults for new setting methods set to match previous defaults (backwards compat.)

Matthias Kuhn 	2012-08-16

    Change diagram properties dialog dropdown to use id instead of translated text

Radim Blazek 	2012-08-16

    raster save as raw/image mode, pipe clone

Matthias Kuhn 	2012-08-16

    Diagram type not properly selected in properties dialog

Merge: 033bd79 d845a0a
Matthias Kuhn 	2012-08-16

    Merge diagram icons

    Conflicts:
src/app/qgsdiagramproperties.cpp

Matthias Kuhn 	2012-08-16

    Add icons to the diagram dropdown

Matthias Kuhn 	2012-08-16

    Identify selected items based on id's rather than translated text

Matthias Kuhn 	2012-08-16

    Identify selected items based on id's rather than translated text

Matthias Kuhn 	2012-08-16

    add icons to diagram dropdown

Matthias Kuhn 	2012-08-16

    Fix attribute list (transparent colors, disappearing items)

Juergen E. Fischer 	2012-08-16

    nightly build fixes:
    - QLineEdit::setPlaceholderText only available >= Qt 4.7
    - debian packaging for symbology-ng-style update

Radim Blazek 	2012-08-16

    raster save as dialog minor improvements

Radim Blazek 	2012-08-15

    raster save as crs and resolution

Matthias Kuhn 	2012-08-15

    Renamed "Engine settings" to "PAL engine settings"

Matthias Kuhn 	2012-08-15

    Add direct link to PAL engine settings to diagram tab

Matthias Kuhn 	2012-08-15

    PieDiagram: draw empty circle if all attribute values == 0

Matthias Kuhn 	2012-08-15

    Save scale method for graduated and categorized symbols

Matthias Kuhn 	2012-08-15

    Fixed scale method (area/diameter) for graduated and categorized markers

volayaf 	2012-08-15

    updated remaining ftools algorithms to new architecture

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@348 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Matthias Kuhn 	2012-08-15

    add transparency for diagrams

Alexander Bruy 	2012-08-15

    more cleanup in fTools menu creating code

Matthias Kuhn 	2012-08-15

    Fixed scale factor for histogram diagrams.

Matthias Kuhn 	2012-08-15

    Remove unused slot

Matthias Kuhn 	2012-08-15

    Use Q_UNUSED instead of self-assignment

Matthias Kuhn 	2012-08-15

    Fix wrong include

Juergen E. Fischer 	2012-08-15

    fix ui warning

Juergen E. Fischer 	2012-08-15

    translation string fixes and german translation update

Juergen E. Fischer 	2012-08-15

    indentation update

Martin Dobias 	2012-08-14

    Fixed compilation

Merge: da5609c d2f08ee
Martin Dobias 	2012-08-14

    [FEATURE] Reworked symbol selector/properties dialog, greatly improved style manager

    This is merge of Arun's GSoC 2012 work.

    Merge remote-tracking branch 'arun/gsoc'

    Conflicts:
src/gui/symbology-ng/qgssymbolv2selectordialog.cpp

Radim Blazek 	2012-08-14

    raster stats for providers without block size fixed

Marco Hugentobler 	2012-08-14

    Set xml declaration for QGIS server capabilities

Marco Hugentobler 	2012-08-14

    Disconnect itemChanged signal for composer scalebar if scalebar widget does the change

Matthias Kuhn 	2012-08-14

    Transparency test...

Marco Hugentobler 	2012-08-14

    Fix loading of composer scalebar (ticket #6195)

Matthias Kuhn 	2012-08-14

    - Fix default textdiagram => label placment option
    - Add warning if unknown diagram type is specified

Matthias Kuhn 	2012-08-14

    - Line options only shown when available
    - Default value for text diagram => label placment option
    -

Matthias Kuhn 	2012-08-14

    Fix histogram orientation bug (left <-> right exchanged)

Matthias Kuhn 	2012-08-14

    Major reorganisation and refactoring of diagram widget

Radim Blazek 	2012-08-14

    fix for multiband byte (regression992)

Radim Blazek 	2012-08-14

    default raster contrast enhancement by type

Larry Shaffer 	2012-08-14

    Add font and buffer transparency to adv labeling and data defined columns

    - Data defined transparency field integer values 0->100 = opaque->transparent

Alexander Bruy 	2012-08-14

    new shiny icon for RoadGraph plugin. Thanks Robert!

Alexander Bruy 	2012-08-14

    cleanup in fTools menu creation code

Marco Hugentobler 	2012-08-14

    Prefix joined field with layer name to make conflict between attributes with the same name less likely

Juergen E. Fischer 	2012-08-14

    use PUBLIC_HEADER only on mac (followup 55628dd81)

Juergen E. Fischer 	2012-08-14

    fix doxygen warnings

Juergen E. Fischer 	2012-08-13

    also update doxygen template (followup 22a4de4ea0)

Juergen E. Fischer 	2012-08-13

    add missing directories to api doc

cpolymeris@gmail.com 	2012-08-13

    Raise internal error if algorithm execution exception is not GeoAEE.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@347 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Arunmozhi 	2012-08-14

    removed project/recent symbol groups which aren't a part of style

Radim Blazek 	2012-08-13

    disabled writing WCS debug cache tmp file

Radim Blazek 	2012-08-13

    WCS GeoServer fixes

Matthias Kuhn 	2012-08-13

    Fix startup state of diagram option widgets

Juergen E. Fischer 	2012-08-13

    enable debug output for windows Debug and RelWithDebInfo builds (follow up 511e89ca3)

Matthias Kuhn 	2012-08-13

    Added possibility to scale a markers area. Up to now, only the diameter could be scaled.

Juergen E. Fischer 	2012-08-13

    fix #6191

Werner Macho 	2012-08-13

    translation update: gl_ES by Xan

Merge: 129dc0b 9a26650
Marco Hugentobler 	2012-08-13

    Merge branch 'scalebar_units'

Marco Hugentobler 	2012-08-13

    Fix crash if undoing / redoing scale bar unit changes

Marco Hugentobler 	2012-08-13

    [FEATURE]: possibility to have scale bar in meters also for maps in degrees (based on map diagonal)

Werner Macho 	2012-08-13

    translation update: pt_PT by Pedro .. added as new translator

Larry Shaffer 	2012-08-12

    Add min/max scale-based visibility to advanced labeling data defined columns

    - Layer-level options, if set, will override data defined values (correct behavior IMHO)
    - Spinboxes for min and max added to Change Label tool's dialog
    - Seems to still be a bug in renderer scale-to-value comparison, where equal scales are not always equal if user directly enters values in the map canvas scale combobox

Larry Shaffer 	2012-08-12

    Remove hide label function from pin/unpin label tool

    - More informative tool tips for labeling tools

Larry Shaffer 	2012-08-12

    Split off part of pin/unpin label tool's function to new show/hide label tool

    - Show/Hide Labels (uses new Show label data defined column)
    - Click or marquee on feature to show label
    - Hold Shift+click or marquee on label to hide it
    - Hide label function of pin/unpin label tool removed

Tim Sutton 	2012-08-12

    Added raster identfy test

Larry Shaffer 	2012-08-11

    Add Show Label to advanced labeling data defined columns

    - Allows label to be shown/hidden (1 or 0) without adjusting the mapped font size field
    - Current method of setting mapped font size field to 0 still works
    - Show label checkbox added to Change Label tool's dialog

Larry Shaffer 	2012-08-08

    Update to adv labeling dialog, also addresses #4385

    - Fix for resizing of dialog (#4385)
    - New label preview pane with custom text entry and background color (preview moved to Label settings tab)
    - Fix preview for labels using map units (standardized to 24 pt)
    - Preview layout accommodates up 150 pt fonts on larger screens
    - Set step increment for buffer to a more reasonable 0.1
    - New, fairly complete QFont properties added to GUI (some may not be able to be used until after derived PAL solution)
    - Transparency for buffering added to GUI
    - New data defined mappings in the GUI to match new layer-level options
    - New Show Label and Min/Max Scale mappings added to GUI
    - All new options and mappings that are not yet functional are greyed (all greyed with this commit)

Larry Shaffer 	2012-08-11

    Small refactoring to switch freeze/thaw to pin/unpin label tool

    - Thanks to Tim for the better metaphor for the tool
    - Freeze/thaw was a bit obtuse, pinning a label is a more ubiquitous mapping concept
    - New icons to represent switch

Marco Hugentobler 	2012-08-11

    Fix memory leaks in raster writer

Juergen E. Fischer 	2012-08-11

    german translation update

cpolymeris@gmail.com 	2012-08-10

    R script execution log information: commands and console output.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@346 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-08-10

    Correct non-sensical code in error behaviour.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@345 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-08-10

    Some more little tests for test friday.

volayaf 	2012-08-10

    solved problem with memory storage

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@344 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-08-10

    run python tests only when bindings are enabled

Juergen E. Fischer 	2012-08-10

    avoid gettimeofday

Merge: 2983ad7 8f3142e
Etienne Tourigny 	2012-08-10

    Merge branch 'cptcity' of ../qgis-etiennesky

Etienne Tourigny 	2012-08-10

    add author and license information ; UI tweaks ; add avg preview if available ( see QgsCptCityColorRampV2Dialog::eventFilter() )

Matthias Kuhn 	2012-08-10

    Add "scale area / scale diameter" radio buttons to scale menu

volayaf 	2012-08-10

    Added support for non-file-based output channels
    Changed GUI elements accordingly
    Only Ftools's Convex hull algorithm has been changed to support this. All other native algorithms have to be adapted

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@343 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Matthias Kuhn 	2012-08-10

    Save scale by area/diameter setting

Matthias Kuhn 	2012-08-10

    Add option to scale by area/scale by diameter for PieChart and Text Diagram

Matthias Kuhn 	2012-08-10

    Diagram option page reloaded, pt. 1

Matthias Kuhn 	2012-08-10

    Let scale value for pie diagrams denote diameter rather than area

cpolymeris@gmail.com 	2012-08-10

    Less obtrusive "missing parameter" error message in Algorithm Execution Dialog. c.f #5381


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@342 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-08-10

    Display execution dialog log in unthreaded mode if "keep open" option is activated. Also make algorithm error messages non-modal, less obtrusive.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@341 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Matthias Kuhn 	2012-08-10

    Diagram width was not correctly calculated

Matthias Kuhn 	2012-08-10

    Diagram size correction (important for placement with PAL)

Matthias Kuhn 	2012-08-10

    Adjust include paths for diagrams

Matthias Kuhn 	2012-08-10

    Adjust include path of diagram files

Matthias Kuhn 	2012-08-10

    Adjust file header information

Juergen E. Fischer 	2012-08-09

    fix build on mac (take II)

Juergen E. Fischer 	2012-08-09

    fix build on mac

Marco Hugentobler 	2012-08-09

    Read / write map annotation format to xml

Marco Hugentobler 	2012-08-09

    Add GUI elements to change composer map grid annotation format

Marco Hugentobler 	2012-08-09

    Disable degree / minute / second format if map units are not degrees

Marco Hugentobler 	2012-08-09

    [FEATURE]: possibility to show composer map grid coordinates in degree/minute/seconds

Matthias Kuhn 	2012-08-09

    remove unsplit diagram files

Matthias Kuhn 	2012-08-09

    split diagram code into seperate files

Matthias Kuhn 	2012-08-09

    draw smaller diagrams on top

Merge: 8b2b601 cceb1fb
Matthias Kuhn 	2012-08-09

    draw smaller diagrams on top

Matthias Kuhn 	2012-08-09

    insert default bar width

Matthias Kuhn 	2012-08-09

    area accuracy for circular diagrams

Matthias Kuhn 	2012-08-09

    let diagrams decide how much space they need themselves

Matthias Kuhn 	2012-08-08

    Make bar width configurable

Matthias Kuhn 	2012-08-08

    Add histogram

Matthias Kuhn 	2012-08-08

    revert bad patch (placement)

Matthias Kuhn 	2012-08-07

    Place pie charts on point

Matthias Kuhn 	2012-08-07

    Save settings for scaling small diagrams

Matthias Kuhn 	2012-08-07

    Add minimum size option for diagrams. (Will be scaled if smaller)

Matthias Kuhn 	2012-08-07

    Add .project file to .gitignore (eclipse)

Matthias Kuhn 	2012-08-06

    Text diagrams: new label placement method (x-height)

Matthias Kuhn 	2012-08-06

    Change vertical alignment

    Use x-height for vertical offset rather than font-height/2

Matthias Kuhn 	2012-08-08

    Make bar width configurable

Matthias Kuhn 	2012-08-08

    Add histogram

Matthias Kuhn 	2012-08-08

    revert bad patch (placement)

Matthias Kuhn 	2012-08-07

    Place pie charts on point

Matthias Kuhn 	2012-08-07

    Save settings for scaling small diagrams

Matthias Kuhn 	2012-08-07

    Add minimum size option for diagrams. (Will be scaled if smaller)

Matthias Kuhn 	2012-08-07

    Add .project file to .gitignore (eclipse)

Matthias Kuhn 	2012-08-06

    Text diagrams: new label placement method (x-height)

Matthias Kuhn 	2012-08-06

    Change vertical alignment

    Use x-height for vertical offset rather than font-height/2

Marco Hugentobler 	2012-08-09

    Keep checkbox in sync if enableBackbuffer option not yet used

Matthias Kuhn 	2012-08-09

    Remove unneede variable

Matthias Kuhn 	2012-08-09

    Enable backbuffering / incremental drawing features only on supported platforms
    Correct typo

Matthias Kuhn 	2012-08-07

    Diabled backbuffering choice on any other system than X11

Matthias Kuhn 	2012-08-07

    Remove merge conflict

Matthias Kuhn 	2012-08-07

    Remove merge conflict

Matthias Kuhn 	2012-08-07

    Remove merge conflict

Marco Hugentobler 	2012-08-09

    Add python bindings for composerhtml

Marco Hugentobler 	2012-08-09

    Add python composition checker and composermap test

Arunmozhi 	2012-08-09

    fixed the filename as groupname in import dialog

Arunmozhi 	2012-08-09

    fixed a number of bugs in stylemgr, importdlg and symbolslistwdgt

Larry Shaffer 	2012-08-07

    Option to preserve existing rotation values during freeze/thaw label operations

    - PAL layer setting for preserving existing rotation values
    - Clean up field-mapping checks

Juergen E. Fischer 	2012-08-09

    reintroduce PUBLIC_HEADERS removed in af502953

Juergen E. Fischer 	2012-08-09

    recalculate vector layer extent only when necessary (fixes #6172)

Juergen E. Fischer 	2012-08-09

    fix warnings

Juergen E. Fischer 	2012-08-09

    only install 'copy OS X content' on OS X

Juergen E. Fischer 	2012-08-08

    fix #6170

Marco Hugentobler 	2012-08-08

    Add export macros to classes and fix warning

Merge: 954bec4 12f521e
Marco Hugentobler 	2012-08-08

    Fix merge conflict

Marco Hugentobler 	2012-08-08

    Fix html test

Marco Hugentobler 	2012-08-08

    More cleanup changes

Marco Hugentobler 	2012-08-08

    Avoid crash in html item test

Marco Hugentobler 	2012-08-08

    Move adding the first html frame out of QgsComposerHtml

Marco Hugentobler 	2012-08-08

    More undo/redo improvements

Marco Hugentobler 	2012-08-08

    More multiframe undo improvements

Marco Hugentobler 	2012-08-08

    Show progress dialog for raster save

Juergen E. Fischer 	2012-08-08

    crssync: skip crs known to fail

Arunmozhi 	2012-08-08

    fixed new group name for import dialog

Marco Hugentobler 	2012-08-08

    Further changes to undo-mechanism. Currently not working

Radim Blazek 	2012-08-08

    WCS public servers test

Alexander Bruy 	2012-08-08

    fix typo in expression builder widget

Juergen E. Fischer 	2012-08-08

    fix wcs test on windows

Juergen E. Fischer 	2012-08-08

    fix build w/o QGISDEBUG

Juergen E. Fischer 	2012-08-08

    debian packaging update

cpolymeris@gmail.com 	2012-08-07

    Make recent algorithm list persistent between sessions.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@340 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-08-07

    Log console output (SAGA; OTB; GRASS).


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@339 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-08-07

    More modeler algorithm debug info.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@338 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-08-07

    VSILFILE missing in GDAL < 1.8

Serge Dikiy 	2012-08-07

    QGIS_DEBUG_FILE - debugging of all files in a directory

Serge Dikiy 	2012-08-07

    duplicate lines

Juergen E. Fischer 	2012-08-07

    translation string fixes and german translation update

Juergen E. Fischer 	2012-08-07

    [FEATURE] add new labeling to vector layer properties
    - add 'deprecated' label to old labeling in vector layer properties

Juergen E. Fischer 	2012-08-07

    - remove CMAKE_BUILD_TYPE from osgeo4w nightly configuration
    - rename 'our' astyle to qgisstyle

Radim Blazek 	2012-08-07

    singlebandgray double

Marco Hugentobler 	2012-08-07

    Avoid undo commands from multiframe classes

Marco Hugentobler 	2012-08-07

    Test for multiframe html item

Juergen E. Fischer 	2012-08-07

    fix windows build

Merge: 829f672 0fc62dd
Radim Blazek 	2012-08-07

    WCS native

Merge: e9afc7b 829f672
Radim Blazek 	2012-08-07

    Merge remote branch 'origin/master' into wcs2

Radim Blazek 	2012-08-07

    WCS time support

Marco Hugentobler 	2012-08-07

    Add composer html test

Arunmozhi 	2012-08-07

    fixed things in style manager and import dialog

Marco Hugentobler 	2012-08-07

    Add html icon to composer

Marco Hugentobler 	2012-08-07

    Webkit seems to assume a standard dpi of 96

Larry Shaffer 	2012-08-07

    Fix for odd alignment attribute bug

Marco Hugentobler 	2012-08-07

    Fix positioning of new frames

Larry Shaffer 	2012-08-07

    Update to vector layer options dialog Display tab

Werner Macho 	2012-08-07

    translation update: gl_ES by Xan

Etienne Tourigny 	2012-08-06

    add preview icon to all items

Etienne Tourigny 	2012-08-06

    integrate with Color Ramp Manager plugin to download cpt-city files

cpolymeris@gmail.com 	2012-08-06

    Option to toggle showing debug and commands in execution dialog's log panel.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@337 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-08-06

    Some formatting in parameters dialog log. Plus "debug" info for modeler algorithms.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@336 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 6861078 2752f66
Etienne Tourigny 	2012-08-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-08-06

    add a few cpt-city svg files to tests

Etienne Tourigny 	2012-08-06

    fix cpt-city svg parsing and display

Larry Shaffer 	2012-08-06

    SVG icons for freeze/thaw label tools for default and GIS themes

Arunmozhi 	2012-08-06

    fixed the menu and grid in the style manager

cpolymeris@gmail.com 	2012-08-06

    OTB and GRASS commandline to log.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@335 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 53da893 3b3f674
Radim Blazek 	2012-08-06

    master merge

volayaf 	2012-08-06

    added field pyculator algorithm
    fixed minor issues in algorithm execution and logging
    added support for multiline strings
    updated credits in about html page

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@334 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-08-06

    remove CMAKE_BUILD_TYPE dependency on windows

Nathan Woodrow 	2012-08-02

    Add html support in map tips

     - Add new display tab to edit html text

Larry Shaffer 	2012-08-04

    Updated Mac build notes and INSTALL

    - Added ccache optional setup to Mac notes
    - Added cmake options to handle external libspatialindex
    - Fixed some Mac notes typos
    - Rebuilt INSTALL and INSTALL.html, which were outdated

Tim Sutton 	2012-08-04

    Moved sextante exampled provider to plugins.

Tim Sutton 	2012-08-04

    Moved sextante into python plugins. Note sextant was brought in at revision 333 from svn

Tim Sutton 	2012-08-04

    Moved sextante into python plugins. Note sextant was brought in at revision 333 from svn

Giuseppe Sucameli 	2012-08-04

    sld support: use Title tag (instead of Abstract) exporting styles to SLD (fix #6152)

Arunmozhi 	2012-08-04

    tweaks for symbolslist widget filtering

Merge: 3305ccd d4a316a
Tim Sutton 	2012-08-04

    Merge linfiniti2:/tmp/sextante-clone into sextante-import

Arunmozhi 	2012-08-04

    fixed the empty group issue in symbol filter

Arunmozhi 	2012-08-04

    added groups support to symbolslist widget

cpolymeris@gmail.com 	2012-08-03

    Fix bug in algo execution dialog that prevented loading results.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@333 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Alexander Bruy 	2012-08-03

    fix #6151

Juergen E. Fischer 	2012-08-03

    add title() expression test row

Merge: 8761bc7 84706ae
Tim Sutton 	2012-08-03

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-08-03

    Added from wkbPoint and Polyline tests to python geometry tests

Marco Hugentobler 	2012-08-03

    Add command class for multiframe changes

Juergen E. Fischer 	2012-08-03

    fix windows build

Marco Hugentobler 	2012-08-03

    Add dpi parameters for umn and geoserver also to GetMap request

Werner Macho 	2012-08-03

    translation update: gl_ES by Xan

Juergen E. Fischer 	2012-08-03

    add 'foreach' to astyle and re-run indentation

cpolymeris@gmail.com 	2012-08-03

    Log only for threaded algorithm execution


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@332 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: de5f95b e39c216
Etienne Tourigny 	2012-08-02

    Merge branch 'coloramp' of ../qgis-etiennesky

Etienne Tourigny 	2012-08-02

    add tests for cpt-city color ramps

Etienne Tourigny 	2012-07-31

    create cpt-city color ramp and dialog

Juergen E. Fischer 	2012-08-03

    [FEATURE] implement title() expression

Juergen E. Fischer 	2012-08-02

    [FEATURE] allow adding of sql queries with SelectAtId=false
    - sync sip bindings of QGis, QgsApplication, QgsDataSourceURI and QgsPoint with
      C++

cpolymeris@gmail.com 	2012-08-02

    SAGA commandline to algorithm execution dialog log


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@331 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-08-02

    fix #6142

Marco Hugentobler 	2012-08-02

    Improved multiframe command handling

Merge: d8e918d 28b8ab0
Tim Sutton 	2012-08-02

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-08-02

    Renamed app test with py prefix and added simple geometry test case

Etienne Tourigny 	2012-08-01

    add support for color ramps to raster layers

Etienne Tourigny 	2012-08-01

    add tests for styles - just for color ramp for now

Juergen E. Fischer 	2012-08-02

    fix #6120

alexander.bruy@gmail.com 	2012-08-02

    fix missed module name

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@330 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Arunmozhi 	2012-08-02

    [bugfix] fixed a bug that called populateSymbols multiple times

volayaf 	2012-08-02

    fixed #6141

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@329 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Arunmozhi 	2012-08-02

    support for online import of style XML files added

volayaf 	2012-08-02

    fixed #6140

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@328 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Alexander Bruy 	2012-08-02

    fix warning

Larry Shaffer 	2012-07-28

    Fix and update to Freeze/Thaw, Move, and Rotate Label tools

    Updates
    - Move tool now preserves calculated x, y offset for upside-down labels, when initially moved and data-defined fields have no previous data.
    - Move tool now stores the label's PAL solution for rotation on initial move, if rotation is data-defined with no previous data.
    - Freeze/Thaw and Move tools now support all variations of previously data-defined halign and valign options on initial freeze.
    - Freeze/Thaw tool has updated key modifiers that should work across major platforms.
    - Tests for whether layer labels support data-defined rotation moved to base QgsMapToolLabel class.
    Fixes
    - Fix bug where labels defined in map units causing font to show as pointsize of same integer at small map scales.
    - Half of a fix for rotation point of labels with data-defined size of map units actually being based off of point size.
      (still references the layer-defined font size somewhere in the rotation point calculation)
    - Valign settings of Base and Half now more accurately key off of inverse of font ascent (instead of descent). No discernible shift occurs now on initial freeze.

Werner Macho 	2012-08-02

    translation update: gl_ES by Xan

Larry Shaffer 	2012-08-01

    Keep QGIS Browser alias on Mac from duplicating

cpolymeris@gmail.com 	2012-08-01

    Basic logging widgets.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@327 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-08-01

    implement #6128

Juergen E. Fischer 	2012-08-01

    german translation update

Juergen E. Fischer 	2012-08-01

    [FEATURE][API] allow display in degrees, decimal minutes
    - store degree format setting in project file
    - [API] drop degree formats in unit type

Juergen E. Fischer 	2012-08-01

    fix more warnings
    (layers might be miscounted in qgsowsdataitems.cpp)

Larry Shaffer 	2012-08-01

    Visual test for SVG upscaling

    - Changed mActionPanToSelected.svg to 24x24 to test QSvgIconEngine upscaling

Larry Shaffer 	2012-08-01

    Add QSvgIconEngine plugin to Mac bundles

Juergen E. Fischer 	2012-08-01

    fix #6116

volayaf 	2012-08-01

    added patch for #6137

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@326 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-07-31

    fix windows build and a couple of warnings

volayaf 	2012-08-01

    fixed #6127

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@325 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-08-01

    - GEOSInterpolate only available in GEOS>=3.2
    - sync QgsGeometry sip bindings with C++

Marco Hugentobler 	2012-08-01

    Fix warning

Larry Shaffer 	2012-07-31

    Test for cross-platform SVG icon scaling

    - Several PNG icons are switch out with SVG counterparts to test Qt scaling on different platforms
    - Default theme has added SVG icons that are comprised of the regular PNG embedded within
    - GIS theme has added mostly SVG 24x24 icons and one at 48x48 (also for touch interfaces)
    - This commit's changes will probably be reverted after testing

alexander.bruy@gmail.com 	2012-07-31

    fix plugin loading error caused by wrong usage of list comprehensions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@324 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-31

    Add/Remove command for composer multipage

volayaf 	2012-07-31

    fixed rpoblem when selecting extent from canvas

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@323 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-07-31

    refixed 5949. fixed 5925

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@322 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-07-31

    fixed #6123

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@321 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-07-31

    fix warnings

Merge: ec87f7f dbad873
Marco Hugentobler 	2012-07-31

    Merge branch 'wms_address'

Marco Hugentobler 	2012-07-31

    [FEATURE]: possibility to overwrite wms url for capabilities document in project properties

volayaf 	2012-07-30

    fixed #5949

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@320 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Giuseppe Sucameli 	2012-07-30

    ogr provider: use FROM8 macro getting name from layer definition

Marco Hugentobler 	2012-07-30

    Update frame widgets if the multiframe object has changed

Marco Hugentobler 	2012-07-30

    Load / save html item and multi frames

volayaf 	2012-07-30

    fixed #6112


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@319 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-07-30

    changed region mechanism in grass. Now it is set in each execution, using an extent parameter. This is a more flexible mechanism, with more possibilities

    ExtentPanel now can be set to the min covering extent of input values. This is the default value, when the text box is blank, except when it is not possible to do so.

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@318 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-30

    Save html multiframe

Radim Blazek 	2012-07-29

    fixed gdal stats approx for large rasters

Merge: f457ece 52eed92
Larry Shaffer 	2012-07-29

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Larry Shaffer 	2012-07-29

    Fix for crash on scale combobox popup

    - Fixes undocumented crash on clicking scale combobox, when it shows 'Invalid scale' (also in 1.8.0)
    - 'Invalid scale' shows up on initial launch, but apparently not on New Project

Jaka Kranjc 	2012-07-29

    revert platform case

Larry Shaffer 	2012-07-29

    Fix for Mac sed error in prepare script

Radim Blazek 	2012-07-29

    wcs - enabled histogram

Merge: 5a5928e 1eeb537
Radim Blazek 	2012-07-29

    master merge

Larry Shaffer 	2012-07-29

    Fix to keep defined custom symbol paths from being added to first of new global scales.

Merge: 5b44fbf 26a4f80
Larry Shaffer 	2012-07-29

    Merge pull request #192 from dakcarto/update-rulebasestyles-gui-2

    Update to usability of rule-based styles widgets.

Larry Shaffer 	2012-07-29

    Somewhat vain first direct commit

Juergen E. Fischer 	2012-07-29

    allow crs without projection entries (fixes #6117)

Juergen E. Fischer 	2012-07-29

    fix debug output

Radim Blazek 	2012-07-29

    typo

Radim Blazek 	2012-07-29

    raster cumulative cut optional limits

Nathan Woodrow 	2012-07-29

    Add interoplate to QgsGeometry

Radim Blazek 	2012-07-29

    cumulative cut tools, raster stretching moved from qgisapp to raster layer, unfortunately one control image has also be changed because stretching changed from GDALComputeRasterMinMax which gives for tests/testdata/landsat.tif 3. band min/max 57/157 to GDALComputeRasterStatistics which gives 51/172

Alexander Bruy 	2012-07-29

    allow create grid without specifying base layer (fix #6109)

Arunmozhi 	2012-07-29

    import and export of styles done

Radim Blazek 	2012-07-28

    continues removing of stats from raster layer

Juergen E. Fischer 	2012-07-28

    fix attribute dialog (iterate layer attributes, not feature attributes)

volayaf 	2012-07-28

    Modeler can now have hard-coded layer paths
    Added "hidden" property to parameters

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@317 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-07-28

    new widget for raster min/max load

Giuseppe Sucameli 	2012-07-27

    import vector layer: do not change attribute map of the source feature,
    do not copy values of un-mapped attributes forward to the destination layer:

    avoid features with dirty attribute maps being added to the buffer

Giuseppe Sucameli 	2012-07-27

    spatialite provider: fix segfault looking for nonexistent field

volayaf 	2012-07-27

    fixed #6103

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@316 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-27

    Remove multi frame once the last frame is deleted

Werner Macho 	2012-07-27

    translation update: bg by Zahari

Marco Hugentobler 	2012-07-27

    Fix update of html frames

Marco Hugentobler 	2012-07-27

    Delete composer frames from list

Radim Blazek 	2012-07-27

    Stats/histogram removed from raster layer

Arunmozhi 	2012-07-27

    improvements to style manager; tag&group support for colorramps

Juergen E. Fischer 	2012-07-27

    postgres provider: fix signess of 64 bit fields

Juergen E. Fischer 	2012-07-27

    german translation update

Juergen E. Fischer 	2012-07-27

    fix vector save as

Juergen E. Fischer 	2012-07-26

    fix doxygen warnings and add copyright headers

Radim Blazek 	2012-07-26

    raster histograms separated from stats, generic implementation (used by GRASS,WCS), more histogram and stats options (extent, sample size), stats and histograms cached in providers

Radim Blazek 	2012-07-25

    new raster histogram

Marco Hugentobler 	2012-07-26

    Connect signal slots for html dialog

volayaf 	2012-07-26

    uncommented try block

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@315 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-07-26

    also sync non-EPSG crs

volayaf 	2012-07-26

    fixed 6048 and 5952

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@314 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-07-26

    fix warning

Juergen E. Fischer 	2012-07-26

    fix 9e21b1752 (actually use the value of VERSION_INT as symbol postfix)

Juergen E. Fischer 	2012-07-26

    german translation fix

alexander.bruy@gmail.com 	2012-07-26

    cosmetic fixes


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@313 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

alexander.bruy@gmail.com 	2012-07-26

    fTools: add Distance Matrix tool


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@312 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-07-26

    debian packaging update

volayaf 	2012-07-26

    added grass region definition from layer
    fixed problem with grass algorithms requiring an explicit region

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@311 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

alexander.bruy@gmail.com 	2012-07-26

    reorganize imports
    add List Unique Values tool


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@310 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-26

    Add signal / slot for adding composer html

Marco Hugentobler 	2012-07-26

    Extend content to next pages if resize mode is extend

Arunmozhi 	2012-07-26

    symbol DB updated to support groups,tags for colorramp

Merge: d8fd81b ee4ac59
Tim Sutton 	2012-07-26

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-07-26

    Added missing core devs to AUTHORS file

Juergen E. Fischer 	2012-07-25

    fix one more warning

Juergen E. Fischer 	2012-07-25

    run python tests from build directory

Juergen E. Fischer 	2012-07-25

    fix build errors and warnings on windows (interface apparently is a keyword in VC++)

Juergen E. Fischer 	2012-07-25

    indentation update with a few fixed warnings

volayaf 	2012-07-25

    fixed #5954 anad #6087

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@309 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: f2c4f53 d039c3f
Hugo Mercier 	2012-07-25

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

    Conflicts:
src/core/symbology-ng/qgsrulebasedrendererv2.cpp

Merge: d039c3f 1bcd947
Marco Hugentobler 	2012-07-25

    Merge branch 'raster-pipes-2'

Marco Hugentobler 	2012-07-25

    Test multiple frame html rendering

Marco Hugentobler 	2012-07-25

    Recalculate content if one of the frames changes size

Marco Hugentobler 	2012-07-25

    Scaling for html multi frame

Marco Hugentobler 	2012-07-25

    Add sizeChanged signal for composer item

Marco Hugentobler 	2012-07-25

    Add composer frame class

Marco Hugentobler 	2012-07-25

    Render method for composer html

Etienne Tourigny 	2012-07-24

    fix qwt version check

Etienne Tourigny 	2012-07-24

    qwt fix for histogram

Radim Blazek 	2012-07-24

    fixed rendering algorithms applied twice

Etienne Tourigny 	2012-07-24

    ui tweaks to make dialog more compact, add right-click action to swap options ui

Marco Hugentobler 	2012-07-24

    Add QWebPage to composer html, link core to webkit

Marco Hugentobler 	2012-07-24

    Add composer html class

Marco Hugentobler 	2012-07-24

    Add QgsComposerMultiFrame as base class for multi-frame composer content

Etienne Tourigny 	2012-07-24

    use QgsRasterFormatSaveOptionsWidget in gdaltools merge widget

Etienne Tourigny 	2012-07-24

    add qgsrasterformatsaveoptionswidget to sip and cleanup names ; better hack for mOptionsLabel click

Merge: 4018ca6 c9f17ed
Tim Sutton 	2012-07-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-07-23

    Wrap content in label editor widget

Juergen E. Fischer 	2012-07-23

    fix build error

Etienne Tourigny 	2012-07-23

    use QgsDialog ; formatting cleanup

Etienne Tourigny 	2012-07-23

    add qdsdialog widget - generic dialog with layout and button box

Arunmozhi 	2012-07-23

    smart groups implemented

Marco Hugentobler 	2012-07-23

    Add spin box to set composer item background transparence numerically

Juergen E. Fischer 	2012-07-23

    more function help improvements

Juergen E. Fischer 	2012-07-23

    improve CRS GDAL synchronization (fixes #6071, #4337 and #2777)

Etienne Tourigny 	2012-07-22

    re-implement QgisApp::removeDockWidget to remove dock widget action from panel menu when plugins are disabled (#4796)

Merge: b702d3c 68bf5ec
Tim Sutton 	2012-07-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-07-23

    Initial test framework for running python tests as part of the CTest suite.

William Kyngesburye 	2012-07-22

    browser needs providers and other resources

Etienne Tourigny 	2012-07-22

    add profiles and validate and help buttons

volayaf@gmail.com 	2012-07-22

    fixed #6015

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@308 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

William Kyngesburye 	2012-07-22

    Give QGIS Browser icon and info.plist to make it a complete app, other Mac build updates

Juergen E. Fischer 	2012-07-22

    implement #6080

Juergen E. Fischer 	2012-07-22

    function help fixes and german translation update

Nathan Woodrow 	2012-07-22

    Add left,right,rpad,lpad string functions - Fix #6079

        - With tests :)

Nathan Woodrow 	2012-07-22

    Add data and time function help

cpolymeris@gmail.com 	2012-07-22

    History dialog signals: item change instead of click.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@307 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-22

    Further unification of execution dialogs.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@306 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-22

    Fake statusbar for tests.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@305 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Nathan Woodrow 	2012-07-22

    Add CASE and CASE ELSE to expression builder groups

     - Use readAll() for function help to preserve html

Merge: c517a90 2599bf4
William Kyngesburye 	2012-07-21

    Merge pull request #196 from dakcarto/fix_mac-build-libs

    Fix bundled libs linking

volayaf 	2012-07-21

    fixed #6076
    Improved parametertablefield with datatype options

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@304 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-21

    Test data providers loading, finally :)


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@303 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Etienne Tourigny 	2012-07-21

    basic raster format option widget

Etienne Tourigny 	2012-07-20

    add basic driver create options - simple line edit in save dialog and in gdal driver options

Merge: 47b8d60 c517a90
Radim Blazek 	2012-07-20

    master merge

Radim Blazek 	2012-07-20

    raster single band gray cumulative pixel count cut

Juergen E. Fischer 	2012-07-20

    german translation update

thomas 	2012-06-22

    apply #4819: use QPainterPath instead of QPolygonF for highlighting

Merge: d4a26cb 23ba58d
Tim Sutton 	2012-07-20

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-07-20

    Added basic notes on Jenkins setup

Merge: ecb7b24 28021ef
Nathan Woodrow 	2012-07-20

    Merge pull request #195 from dakcarto/feature_freeze-thaw-labels_6

    Update to freeze/thaw label tool

Larry Shaffer 	2012-07-20

    Update to freeze/thaw label tool

    Added ability to hide label(s), i.e. set font size to 0, by holding Ctl (Cmd on Mac) modifier key.
    This is a temporary convenience function, until there is a specifically mapped field for showing/hiding a label.
    Silently fails if no font size field is mapped.

    Dropped What's This? text in favor of concise tool tip for freeze/thaw tool.

    Added self to CONTRIBUTORS. Stripped trailing whitespace from that file.

Tim Sutton 	2012-07-20

    Added xslt for transforming CTest results to Junit for Jenkins. Source: https://gist.github.com/2358656

Merge: 814ea09 b6380b7
Tim Sutton 	2012-07-20

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Werner Macho 	2012-07-20

    translation update: bunch of updates and new names

Larry Shaffer 	2012-07-19

    Fix for Mac source builds.

    Builds were not portable (i.e. Snow Leopard to Lion, dev Mac to client) because libs were still referencing dev Mac's libs and were not being updated on bundle frameworks.

Merge: d6c0c6d 5f9f76e
Tim Sutton 	2012-07-19

    Merge pull request #190 from dakcarto/fix-comp-label-edit

    Additional fix for #5862 fix.

Merge: 62a51e8 7d469db
Tim Sutton 	2012-07-19

    Merge pull request #186 from lynxlynxlynx/master

    two small usability improvements to the plugin manager & installer

Tim Sutton 	2012-07-19

    Added anomaly files for jenkins server

Juergen E. Fischer 	2012-07-19

    fix some warnings

Radim Blazek 	2012-07-19

    Automatically enable OTF projection if layers have different CRS

Marco Hugentobler 	2012-07-19

    Allow non-square pixels for raster formats with exact resolution

Marco Hugentobler 	2012-07-19

    Save as raster access from right click menu

Marco Hugentobler 	2012-07-19

    Allow overwriting of existing raster datasets

Marco Hugentobler 	2012-07-19

    Show GeoTiff in format combo box, fix wrong loop index

Merge: 78bbb65 3af7ef3
Tim Sutton 	2012-07-19

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2012-07-19

    WCS test server instructions

Radim Blazek 	2012-07-19

    WCS URI description, fixes

Marco Hugentobler 	2012-07-19

    Adapt compositionchecker for multi pages

Marco Hugentobler 	2012-07-19

    Add test for unique composermap ids

Marco Hugentobler 	2012-07-19

    Fix for ticket #6062, unique composer map id in copy / paste

Tim Sutton 	2012-07-19

    Added docs on setting up the wcs test server

Radim Blazek 	2012-07-19

    better wcs mapfile mimetypes

Merge: 8e66f2c 0c62390
Nathan Woodrow 	2012-07-18

    Merge pull request #194 from dakcarto/binding_labelsWithinRect

    sip binding for QgsLabelingEngineInterface::labelsWithinRect()

Etienne Tourigny 	2012-07-18

    use project template folder and "New project from template" action

Larry Shaffer 	2012-07-18

    sip binding for QgsLabelingEngineInterface::labelsWithinRect()

    qgis.utils.iface.mapCanvas().mapRenderer().labelingEngine().labelsWithinRect(some_extent) can now return all labels shown within the canvas (if that's the extent given).

Merge: cb1e7d3 83764a6
Tim Sutton 	2012-07-18

    Merge pull request #193 from dakcarto/feature_freeze-thaw-labels_4

    [Feature] Freeze-thaw labeling tool, with on-the-fly transformation support.

Radim Blazek 	2012-07-18

    wcs test unit data

Juergen E. Fischer 	2012-07-18

    fix #6060

Marco Hugentobler 	2012-07-18

    Fix off-by-one in average resampler (may occure in rare cases because of rounding)

Radim Blazek 	2012-07-18

    wcs test unit

Marco Hugentobler 	2012-07-18

    Use composition printing methods also in server

Marco Hugentobler 	2012-07-18

    Print only requested pages

Arunmozhi 	2012-07-18

    tags included in symbol searching

Marco Hugentobler 	2012-07-18

    Python bindings for printing

Marco Hugentobler 	2012-07-18

    Move non-gui part of printing functionality to composition

Merge: aea41ee f5dce33
Alexander Bruy 	2012-07-18

    Merge branch 'project_scale'

Alexander Bruy 	2012-07-16

    scales import/export

Alexander Bruy 	2012-07-07

    [FEATURE] project scale list (if used - overrides global predefined scales)

Alexander Bruy 	2012-07-07

    reload scales list only when necessary

Alexander Bruy 	2012-07-05

    [FEATURE] editable global scales list

Merge: 0cfe094 74021a4
Juergen E. Fischer 	2012-07-18

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-07-18

    move HAVE_TOUCH to qgsconfig.h - fixes vtable of QgsMapCanvas/QgsMapTool for plugins

Larry Shaffer 	2012-07-17

    [Feature] Freeze-thaw labeling tool, with on-the-fly transformation support.

Etienne Tourigny 	2012-07-17

    don't fail histogram test when images differ - too many different possible renderings depending on machine config.

Etienne Tourigny 	2012-07-17

    save default template to /.qgis/default.qgs

Etienne Tourigny 	2012-06-24

    add New Blank Project action that creates a blank project, regardless of template settings

Etienne Tourigny 	2012-06-12

    add optional default project file which is loaded when fileNew() is called

Etienne Tourigny 	2012-07-17

    add transparency slider ; ui tweaks

Arunmozhi 	2012-07-17

    added context menu grouping and regrouping

Etienne Tourigny 	2012-06-12

    add project defaults for layer symbology

Merge: 03b0526 19d6499
Marco Hugentobler 	2012-07-17

    Merge branch 'composer_multi_pages'

Marco Hugentobler 	2012-07-17

    Adapt zoom to composer extent for multipage

Radim Blazek 	2012-07-17

    disabled checkboxes in raster pipes tab

Radim Blazek 	2012-07-17

    insert raster resampler to pipe

Marco Hugentobler 	2012-07-17

    Python bindings for multipage composer

Marco Hugentobler 	2012-07-17

    Fix page resize

Marco Hugentobler 	2012-07-17

    Fix resolution in image export

Juergen E. Fischer 	2012-07-17

    fix windows build and some deprecation warnings

Marco Hugentobler 	2012-07-17

    Consider multi pages in snap to grid function

Juergen E. Fischer 	2012-07-17

    fix #6053

Juergen E. Fischer 	2012-07-17

    fix doxygen warning

Juergen E. Fischer 	2012-07-17

    update grass provider after 008592b0

Merge: b58b827 d1b7e8b
Etienne Tourigny 	2012-07-16

    Merge branch 'histogramwidget' of ../qgis-etiennesky

Etienne Tourigny 	2012-07-16

    add raster histogram tests

Etienne Tourigny 	2012-07-16

    move raster histogram widget to separate class, fix paletted+pseudo

Etienne Tourigny 	2012-07-16

    fix raster render tests - disable .aux.xml files

Etienne Tourigny 	2012-07-16

    move getThemeIcon() and getThemePixmap() to QgsApplication

Marco Hugentobler 	2012-07-16

    More changes for multipage print

Juergen E. Fischer 	2012-07-16

    fix sip bindings to QgsVectorLayer signals attributeValueChanged/geometryChanged

Juergen E. Fischer 	2012-07-16

    fix windows build

Giuseppe Sucameli 	2012-07-16

    fix build (follow beb70d317)

Marco Hugentobler 	2012-07-16

    Consider multipages in print

Marco Hugentobler 	2012-07-16

    Update overview map list

Giuseppe Sucameli 	2012-07-16

    move delimitedtext plugin functionality to the provider (fix #6013):

    allow GUI and provider to use the same splitLine method.

Giuseppe Sucameli 	2012-07-16

    do a case-insensitive check looking for SL tables into geometry_columns

Giuseppe Sucameli 	2012-07-15

    fix data type check displaying PG table data

Giuseppe Sucameli 	2012-07-15

    fix segfaults due to off-by-one error checking bands (band numbers start from 1)

Etienne Tourigny 	2012-07-15

    histogram: qwt6 and file export fixes

cpolymeris@gmail.com 	2012-07-15

    Base class for dialogs. WIP


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@302 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-07-15

    fixed #6029

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@301 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Arunmozhi 	2012-07-15

    some more fixups for colorramp

Arunmozhi 	2012-07-15

    fixed a number of colo ramp bugs

Juergen E. Fischer 	2012-07-15

    fix build with Qwt6

Martin Dobias 	2012-07-15

    [API] removed QgsSearchString - QgsExpression should be used instead

Merge: 87bdff9 f84d965
Alexander Bruy 	2012-07-15

    Merge branch 'raster_fixes'

Alexander Bruy 	2012-07-15

    show band names instead of numbers in transparency tab
    don't add empty row when loading default transparency values

Alexander Bruy 	2012-07-15

    make band names consistent

Etienne Tourigny 	2012-07-14

    sort QgsRasterRendererRegistry entity names in a logical order, for use in raster properties dialog

Etienne Tourigny 	2012-06-13

    GDAL driver selection: show driver extension, flags and long name

Etienne Tourigny 	2012-07-14

    tidy up tests/testdata dir

Etienne Tourigny 	2012-07-14

    fix histogram and stats compute (set bapprox=false) for gdal provider ; fix histogram display for non-Byte data

Etienne Tourigny 	2012-07-13

    histogram: ui tweaks; re-organize actions and add custom stddev action

Etienne Tourigny 	2012-07-12

    make multiband color raster widget more compact

Etienne Tourigny 	2012-07-12

    don't use color interpretation band names when band count > 1

Etienne Tourigny 	2012-07-12

    fix after master rebase

Etienne Tourigny 	2012-06-18

    prevent double refresh of histogram tab (#4132)

Etienne Tourigny 	2012-06-18

    verify that raster has cached histogram, compute on demand

Etienne Tourigny 	2012-06-18

    add histogram zoom in/out

Etienne Tourigny 	2012-06-17

    add UI to pick min/max band values in histogram

cpolymeris@gmail.com 	2012-07-13

    Dedup Sextante.runalg and Sextante.runandload


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@300 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-13

    Merge ParametersDialog & Ui_ParametersDialog. (Remnant from QT Designer?)


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@299 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-13

    More multipage changes

Marco Hugentobler 	2012-07-13

    [FEATURE]: Multipage compositions

Marco Hugentobler 	2012-07-13

    Code cleanup

Marco Hugentobler 	2012-07-13

    Implement saving for non-argb types (still needs cleanout of spaghetti code)

Arunmozhi 	2012-07-13

    removed everything related to QgsSymbolV2PropertiesDialog

Arunmozhi 	2012-07-13

    added context menu to the groupTree to +/- groups

Merge: c840ce1 b70a0c6
Radim Blazek 	2012-07-12

    Merge remote branch 'origin/master' into wcs2

Radim Blazek 	2012-07-12

    wcs - enabled invert/ignore axis

Radim Blazek 	2012-07-12

    wcs exceptions, simplified xml parsing

Arunmozhi 	2012-07-12

    fixed the symbol +/-/edit/rename issues in style manager

Marco Hugentobler 	2012-07-12

    Move expected output from composermap tests into subdir

Marco Hugentobler 	2012-07-12

    Test for composer overview map

Marco Hugentobler 	2012-07-12

    Write results of compositionchecker to dash

Tim Sutton 	2012-07-12

    Added another anomaly check for osx/hawkeye host

Marco Hugentobler 	2012-07-12

    Fix loading of composer map preview states after template read. Ticket #5961

Arunmozhi 	2012-07-12

    fixed the groupTree bugs

Tim Sutton 	2012-07-12

    More anomaly images for hawkeye host failures

Radim Blazek 	2012-07-11

    common QgsGdalProviderBase for GDAL and WCS, get native CRS, size if possible

volayaf@gmail.com 	2012-07-11

    fixed #5987

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@298 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-11

    Move descriptive label

Merge: c372772 ea2f74a
Marco Hugentobler 	2012-07-11

    Merge branch 'composer_overview_map'

Marco Hugentobler 	2012-07-11

    Fix display of overview marker symbol

Marco Hugentobler 	2012-07-11

    Better default style for overview frame box

Marco Hugentobler 	2012-07-11

    Load and save overview symbol

Etienne Tourigny 	2012-07-11

    add me (Etienne) to AUTHORS

Marco Hugentobler 	2012-07-11

    Use symbolv2selectordialog to set style of overview map frame

cpolymeris@gmail.com 	2012-07-11

    Load real provider.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@297 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-11

    Remove hardcoded crs in raster writer

cpolymeris@gmail.com 	2012-07-11

    Add provider to test model.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@296 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-11

    Enable WMS saving

Marco Hugentobler 	2012-07-11

    Possibility to set maximum tile width / height in raster iterator

Marco Hugentobler 	2012-07-11

    Changes to raster iterator

Arunmozhi 	2012-07-11

    fixed the symbol editor tweaks"
    "

Tim Sutton 	2012-07-11

    Added more windows anomalies

Marco Hugentobler 	2012-06-12

    Enable ok button even always if hideOutput is selected

Marco Hugentobler 	2012-07-11

    Small tweaks

Marco Hugentobler 	2012-07-11

    Possibility to hide elements in save as raster dialog

Marco Hugentobler 	2012-06-06

    Option to choose output extent for save as raster

Juergen E. Fischer 	2012-07-11

    sync description of EPSG:102067 with GDAL (fixes #4945 again)

Marco Hugentobler 	2012-07-11

    Small dialog tweak

Marco Hugentobler 	2012-06-05

    Wire in QgsRasterLayerSaveAsDialog in QgisApp

Marco Hugentobler 	2012-05-31

    Initialize raster save as dialog

Marco Hugentobler 	2012-05-30

    Delete wrong dialog file

Marco Hugentobler 	2012-05-30

    Save as raster dialog

Marco Hugentobler 	2012-07-11

    Modify provider registry to also return invalid providers

Marco Hugentobler 	2012-07-11

    Write operation for raster providers

Marco Hugentobler 	2012-05-21

    Set crs to created gdal dataset

Marco Hugentobler 	2012-05-20

    Add create/remove methods to raster provider baseclass

Juergen E. Fischer 	2012-07-11

    Fix #4945

cpolymeris@gmail.com 	2012-07-10

    runalg accepts algorithm parameter.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@295 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-10

    Model test changes.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@294 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-07-10

    wcs preferred version, identify

Marco Hugentobler 	2012-07-10

    Allow selection of a polygon symbol for the overview frame

Radim Blazek 	2012-07-10

    wcs 1.1 - describe coverage, get multipart response

Nathan Woodrow 	2012-07-10

    Pass feature object to layer init function - fixes #5596

Marco Hugentobler 	2012-07-10

    Python bindings for overview map frame

Marco Hugentobler 	2012-07-10

    Improve overview map frame in composer map

Arunmozhi 	2012-07-09

    fixed a button issues in widgets

Arunmozhi 	2012-07-07

    tagging/detagging of symbols in Style Manager done

Arunmozhi 	2012-07-05

    added tagging,detagging functions to qgsstylev2

Arunmozhi 	2012-06-29

    incremental wild card searching done

Arunmozhi 	2012-06-29

    added a function in qgsstyle for wild card searching

Arunmozhi 	2012-06-28

    fixed the layer +/- button enabling

Arunmozhi 	2012-06-28

    UI Tweaks to make the symbol selector better

Arunmozhi 	2012-06-26

    [fixup] update the tree preview when a sub symbol is loaded

Arunmozhi 	2012-06-26

    Merged the symbol editing with the symbol selector dialog

Arunmozhi 	2012-06-22

    Midway commit; implements symbols listing/changing in symbol selector

Arunmozhi 	2012-06-20

    copy pasted a lot of code required for the widget from symbol selector; status - Compiles

Arunmozhi 	2012-06-19

    added widget file for listing symbols

Arunmozhi 	2012-06-18

    mapped symbollayer properties widgets to layer selection changes

Arunmozhi 	2012-06-17

    Working tree in Symbol properties dialog, Widgets NOT yet mapped

Arunmozhi 	2012-06-13

    Added ability to group and ungroup symbols

Arunmozhi 	2012-06-10

    Added support for creating nested symbol XML and save symbol to DB

Arunmozhi 	2012-06-09

    Adding and removing of groups using style manager done

Arunmozhi 	2012-06-08

    added tags support, now lists Smart Groups in style manager

Arunmozhi 	2012-06-08

    Converted symbology style from XML to SQlite
    - Adds a python script, and the resulting default .db file
    - Cannot SAVE new symbols into the DB still
    Added the Grouping of symbols in Style Manager
    - Can read groups from the DB and load them
    - Limited to read-only operations

Arunmozhi 	2012-05-22

    Added tooltip, icon and custom name to the svg groups tree

    .

    .

Arunmozhi 	2012-05-06

    implemented SVG symbol grouping

    Group tree implemented for SVG Marker symbols

    implemented grouping for SVG Fill symbol widget

Marco Hugentobler 	2012-07-09

    Improve resize behaviour of rotated labels and shapes

Juergen E. Fischer 	2012-07-09

    german translation update

Juergen E. Fischer 	2012-07-09

    fix #5976

cpolymeris@gmail.com 	2012-07-09

    Model testing and command line arguments for test suite.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@293 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-07-09

    Forgot to add control image for composer grid test

Marco Hugentobler 	2012-07-09

    Added raster file writer

Larry Shaffer 	2012-07-08

    Update to usability of rule-based styles widgets.

    Rule-based tree widget:
    * Label and expression header sections have a larger initial width of 200, with new minimum width of 100 for all sections.
    * Resizing of first 3 sections are saved to/restored from QSettings. Last section stretches, so is not saved/restored.
    * All items now have tool tips of their content (good for small screens).

    Rule editing dialog:
    * Expanded width for initial form fields
    * Added tool tips for expression and description fields.

Juergen E. Fischer 	2012-07-08

    add clear text password warning (fixes #5959)

cpolymeris@gmail.com 	2012-07-08

    Fix bug in error dialog for threaded executor


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@292 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-08

    Parameter Dialog tests -- output check missing


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@291 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-07-07

    apply #5970

Marco Hugentobler 	2012-07-07

    Use drawer and iterator to render maps

Marco Hugentobler 	2012-07-07

    Added class QgsRasterIterator

Werner Macho 	2012-07-07

    translation update: gl by Xan

Marco Hugentobler 	2012-07-06

    [FEATURE]: display rectangle of another composer map (overview map)

Merge: aa8cccb bc18adb
Marco Hugentobler 	2012-07-06

    Merge branch 'composer_test'

Marco Hugentobler 	2012-07-06

    Generate diff images in composer tests

Marco Hugentobler 	2012-07-06

    Tolerance for wrong pixels, better cleanup

Marco Hugentobler 	2012-07-06

    Add test for composer grid

Marco Hugentobler 	2012-07-06

    Add unit test for composer map

volayaf@gmail.com 	2012-07-06

    added tooltips to toolbox

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@290 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Larry Shaffer 	2012-07-05

    Additional fix for #5862 fix.
    Editing text for composer label in text edit widget caused label to emit itemChanged(), which caused cyclical update of gui elements and the cursor to jump to end of text edit's text.
    Tested update of label via Python and #5862 fix still works, i.e. text edit updates as well.

Juergen E. Fischer 	2012-07-05

    sip fix

Juergen E. Fischer 	2012-07-05

    refactor QgsPaintEngineHack into core and add python bindings

volayaf@gmail.com 	2012-07-05

    removed r.colors

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@289 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-07-05

    Better default for r.slope.aspect


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@288 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-07-05

    changed adddfield and fieldscalculator algorithms (outputs are not hidden now)
    Fixed problem with logging in unthreaded execution

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@287 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-07-05

    Better default for r.slope


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@286 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-07-05

    Better default for v.random GRASS module


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@285 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-07-05

    Splitted r.contour, following GRASS plugin (to be completed)


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@284 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: b4d8b9a ba0f5da
Marco Hugentobler 	2012-07-05

    Merge branch 'raster_transparency'

Marco Hugentobler 	2012-07-05

    More fixes for raster transparency

Werner Macho 	2012-07-05

    translation update: de

Merge: ddd8028 72d7a23
Werner Macho 	2012-07-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-07-04

    spatialite provider:
    - fix #4569
    - select newly added spatialite database

Alexander Bruy 	2012-07-04

    use band numbers in transparency tab if color interpretation is undefined

Merge: 3cd360c 9d3b505
Marco Hugentobler 	2012-07-04

    Merge branch 'zebra_style'

Marco Hugentobler 	2012-07-04

    Set correct frame style in composermap widget, update python bindings

Marco Hugentobler 	2012-07-04

    [FEATURE]: Zebra style for composer grid (black/white pattern at borders)

Juergen E. Fischer 	2012-07-04

    osgeo4w: fix browser batchfile

Marco Hugentobler 	2012-07-04

    Also update enum in python bindings of composer map

Merge: 040b046 5a7cb21
Marco Hugentobler 	2012-07-04

    Merge branch 'graticule_labels'

Marco Hugentobler 	2012-07-04

    Remove legacy methods in composer map

Marco Hugentobler 	2012-07-04

    Project file conversion for composer grid annotation position and direction

cpolymeris@gmail.com 	2012-07-04

    Some colors in test the understand what's going on.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@283 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-04

    Fix for bug #5930


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@282 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-07-04

    Test cases for threaded & unthread algorithms. Check outputs exist.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@281 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-07-04

    add translator

Radim Blazek 	2012-07-03

    wcs null values, enabled statistics

Marco Hugentobler 	2012-07-03

    [FEATURE]: possibility to change grid annotation position and direction indidually for left/right/top/bottom

Radim Blazek 	2012-07-03

    wcs 1.0.0 partialy working

cpolymeris@gmail.com 	2012-07-03

    Some basic algorithm running tests.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@280 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-07-03

    translation update: zh_TW by Lin Nung-yao

Werner Macho 	2012-07-03

    translation update: galician by Xan

Radim Blazek 	2012-07-02

    native wcs request

Radim Blazek 	2012-07-02

    native wcs - initial work, useful pieces extracted from gdal and wms

Nathan Woodrow 	2012-07-02

    Add string position function to expression engine

Marco Hugentobler 	2012-07-01

    Delete old renderer widgets

Marco Hugentobler 	2012-07-01

    Fix picking of transparent pixels

Radim Blazek 	2012-07-01

    checkable interfaces in pipe

Radim Blazek 	2012-07-01

    on/off rasterinterface switch

Radim Blazek 	2012-07-01

    use QgsRasterInterface::DataType enum instead of int; in raster interfaces check in setInput if input is compatible;

Merge: 2fdd82f fab2fe1
Radim Blazek 	2012-07-01

    Merge remote branch 'origin/master' into raster-pipes-2

Juergen E. Fischer 	2012-07-01

    fix windows build

Radim Blazek 	2012-07-01

    raster interfaces stats fixes

volayaf 	2012-07-01

    added optional logging for SAGA and GRASS

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@278 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-06-30

    interface time stats improvements

Radim Blazek 	2012-06-30

    master rebase fixes

Radim Blazek 	2012-06-30

    raster projector fixes

Radim Blazek 	2012-06-30

    filter names replaced by interface

Radim Blazek 	2012-06-29

    removing interfaces from raster pipe

Radim Blazek 	2012-06-29

    Role removed from QgsRasterInterface, the logic moved to QgsRasterPipe

Radim Blazek 	2012-06-29

    re enabled resampling, clean up

Radim Blazek 	2012-06-28

    pipe in properties dialog

Radim Blazek 	2012-06-27

    QgsRasterPipe

Radim Blazek 	2012-06-26

    more methods from provider to interface, renderer shortcuts

Radim Blazek 	2012-06-19

    QgsRasterFace renamed to QgsRasterInterface, some singlebandgray cleanup

Radim Blazek 	2012-06-18

    sip modified for raster pipes

Radim Blazek 	2012-06-18

    rasterprojector in pipe

Radim Blazek 	2012-06-18

    resampler separated, reenabled transparency in renderers

Radim Blazek 	2012-06-18

    preliminary raster pipes support

cpolymeris@gmail.com 	2012-07-01

    History algorithm execution progress & cancel button.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@277 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-07-01

    check interval type

Marco Hugentobler 	2012-06-30

    Implement populateTransparencyTab also for three band

Marco Hugentobler 	2012-06-30

    Add method to query used bands to renderer, use it in raster properties dialog

Nathan Woodrow 	2012-06-30

    Add expression functions for handling date/time:

        - year,month,day,hour,minute,second extraction
        - new QgsInterval objects - handles time amounts
        - age() function returns the difference between two  datetimes
        - $now returns the current date and time
        - support for datetime - interval = new datetime
        - tointerval, todate, totime functions
        - tests ;)

Werner Macho 	2012-06-30

    translation update: galician by Xan

Juergen E. Fischer 	2012-06-30

    implement #3337

cpolymeris@gmail.com 	2012-06-30

    Basic test suite.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@276 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-30

    More AlgExecutor logging


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@275 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-29

    fix #5905

volayaf 	2012-06-29

    fixed minor issue when executing algorithms from the toolbox

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@274 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-06-29

    Outcomment debug code

Merge: 53dd796 663f5ad
Marco Hugentobler 	2012-06-29

    Merge branch 'label_rotation'

volayaf 	2012-06-29

    reimplemented unthreaded executino (threads are not still fully stable). Running algs in a thread is now optional

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@273 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-06-29

    Add undo/redo for item move with cursor. Prevent item command merge for different items

Marco Hugentobler 	2012-06-29

    Improved label rotation

volayaf 	2012-06-29

    fixed minor problem in model saving

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@272 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-29

    fixed #5721

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@271 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-06-29

    translation update: et_EE by Veiko

volayaf 	2012-06-29

    fixed #5852

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@270 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-28

    added unicode support in modeler

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@269 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-28

    added threading to execution from console

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@268 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Denis Rouzaud 	2012-06-28

    [FEATURE] add multiple selection option in value relations

Juergen E. Fischer 	2012-06-28

    mark legacy raster function deprecated

Juergen E. Fischer 	2012-06-28

    fix runtime warning

Marco Hugentobler 	2012-06-28

    [FEATURE]: Initial support for rotation in composer label

Juergen E. Fischer 	2012-06-28

    osgeo4w: make creation of desktop and menulinks optional

Juergen E. Fischer 	2012-06-28

    fix build with HAVE_TOUCH

Marco Hugentobler 	2012-06-27

    Fix for bug #5877

volayaf 	2012-06-27

    added a quick fix for the unicode problem in log (now exceptions are catched and ignored). this fixes #5882

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@267 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-27

    removed conflictive help files
    moved imports to classfactory method in __init__.py

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@266 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-06-26

    Bugfix by Radim: prevent extra multiplication if alpha is 1

Merge: 91862c3 94a1210
Tim Sutton 	2012-06-26

    Merge pull request #181 from etiennesky/decorationgrid

    [FEATURE] Added Decoration grid

Merge: 1e7e763 e27ce7c
alexbruy 	2012-06-26

    Merge pull request #188 from slarosa/master

    Fix #5861

Nathan Woodrow 	2012-06-26

    Add bindings for touch map tool

     - Also expose via QgisInterface like other actions

Marco Hugentobler 	2012-06-26

    Update composer widget after text change. Ticket #5862

Etienne Tourigny 	2012-06-25

    implement calculating offset from raster layer, change interval and offset spin boxes to line edit widgets for precision issues

Marco Hugentobler 	2012-06-25

    Transparency for WMS rendering

Marco Hugentobler 	2012-06-25

    Fix reprojected single band color drawing

Etienne Tourigny 	2012-06-25

    remove cross grid type and set default marker to cross; remove annotation position option

Salvatore Larosa 	2012-06-25

    fix #5861

Juergen E. Fischer 	2012-06-25

    osgeo4w: enable touch support

Merge: a2d857f 6b4a27a
Nathan Woodrow 	2012-06-25

    Merge pull request #187 from mbernasocchi/android

    Android: make QGIS settings go to .qgis

Nathan Woodrow 	2012-05-22

    Set the default format as INI when using custom settings path

Marco Bernasocchi 	2012-06-25

    make QGIS settings go to the same place

Marco Bernasocchi 	2012-06-25

    make QGIS settings go to .qgis

Merge: 48e42c5 6a7ab64
Marco Hugentobler 	2012-06-25

    Merge branch 'raster_renderer_default'

Marco Hugentobler 	2012-06-25

    Fix for transparent values in singleband gray renderer

Alexander Bruy 	2012-06-25

    fix typo in option name

Jaka Kranjc 	2012-06-24

    plugin manager: use a case insensitive sort (fixes #5845)

Marco Hugentobler 	2012-06-24

    Fix load/save of raster renderer transparency, ticket #5853

Marco Hugentobler 	2012-06-24

    Don't save raster options from properties dialog

Jaka Kranjc 	2012-06-24

    plugin installer: split the description tooltip into multiple lines as needed

    some plugins have so long descriptions, a single line tooltip doesn't fit
     on my 1366px screen. Would be even worse on mobile devices if they had
     the notion of mouse over tooltips. :I Example: MultiEdit

Jaka Kranjc 	2012-06-24

    plugin manager: use a case insensitive sort #5845

Etienne Tourigny 	2012-06-23

    partial fix for label size + label tweaks

Etienne Tourigny 	2012-06-23

    set default interval to approx. 1/5 of map extent ; add option to set interval from raster layer ; disable grid when map units change ; reset grid (and disable) when project changes

Etienne Tourigny 	2012-06-21

    UI tweaks + selectively enable line/cross width/marker picker

Merge: 52158fb 9a88de8
Werner Macho 	2012-06-23

    Merge pull request #185 from lynxlynxlynx/master

    i18n: slovenian translation update

Jaka Kranjc 	2012-06-23

    i18n: slovenian translation update

    added all the missing plural strings and some various touchups

Marco Hugentobler 	2012-06-23

    Fix transparency table and histogram

volayaf 	2012-06-23

    added line break in button text

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@265 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-23

    updated help

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@264 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-23

    fixed bug in grass description loading

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@263 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-23

    fix #5490 again

Merge: b6ad69d 2238fc1
Nathan Woodrow 	2012-06-23

    Merge pull request #184 from mbernasocchi/android

    fixing bool QgsMapTool::gestureEvent( QGestureEvent *e )

Marco Bernasocchi 	2012-06-23

    fixing bool QgsMapTool::gestureEvent( QGestureEvent *e ) must return a value build (ms vc) error

Alexander Bruy 	2012-06-23

    show 'unkonwn'instead of '-1' in sublayers dialog (addresses #5844)

Merge: 3599700 5445178
Jürgen Fischer 	2012-06-22

    Merge pull request #183 from mbernasocchi/android

    Android small patch

Marco Bernasocchi 	2012-06-23

    activate 1000ms update in qtlocationconnection

Marco Bernasocchi 	2012-06-23

    fix unusable WITH_TOUCH cmake switch

Marco Bernasocchi 	2012-04-25

    added update interval of 1000ms  to limit the ammount of positions send

cpolymeris@gmail.com 	2012-06-22

    Catch all errors in the worker thread and print msg.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@261 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-22

    OTB ROI: apply to vectors


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@260 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-22

    OTB ROI: support multiple input rasters


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@259 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-22

    [FEATURE] implement coalesce and concat function expressions (implements #4551)

Marco Hugentobler 	2012-06-22

    Remove symbology related member variables and functions from raster layer

volayaf 	2012-06-22

    fixed bug with unfound recent algs
    improved model algorithms edition

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@258 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-06-22

    Clean QgsRasterLayer

Marco Hugentobler 	2012-06-22

    Implement default renderer creation in raster renderer registry

Werner Macho 	2012-06-21

    translation update: adding more danish translations and a new maintainer

Merge: fcb86cf 3df1c4e
Tim Sutton 	2012-06-21

    Merge pull request #182 from dakcarto/fix-unittests-mac

    Fix to get unit tests working again on Mac.

Larry Shaffer 	2012-06-21

    Fix to get unit tests working again on Mac.
    make 'check', 'test' and 'Experimental' work from build directory to run tests.

    Current caveats:
    - Build will not install. Re-build with ENABLE_TESTS=FALSE to produce a build a functioning bundled .app.
    - Temp QGIS.app in build/output/bin directory will start, but also needs a different symlink for finding providers. Even then, the app doesn' work right. It appears to be unnecessary for running tests, so there is no advantage to running it from the build directory.

volayaf 	2012-06-21

    fixed #5822

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@257 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-21

    fix doxygen warning

Juergen E. Fischer 	2012-06-21

    transpose raster property resampling widgets

Juergen E. Fischer 	2012-06-21

    german translation fix

Juergen E. Fischer 	2012-06-21

    run TestZipLayer::testTarItemSubfolder() only on GDAL>=1.8

Merge: 02b1324 de6f642
Tim Sutton 	2012-06-21

    Merge branch 'fix-menu-ordering-2' of https://github.com/dakcarto/Quantum-GIS into 5753

Juergen E. Fischer 	2012-06-20

    add version notes to qgscoordinatereferencesystem.h

Juergen E. Fischer 	2012-06-20

    fix #5809

Etienne Tourigny 	2012-06-20

    add missing files

Tim Sutton 	2012-06-20

    Lyon splash added

Marco Hugentobler 	2012-06-20

    Add comments for new functions

Merge: b86498a 6188322
Marco Hugentobler 	2012-06-20

    Merge branch 'snap_interface'

Marco Hugentobler 	2012-06-20

    Add checkbox for invert color to raster symbol dialog

Marco Hugentobler 	2012-06-20

    Convenient access functions also for topological editing

Marco Hugentobler 	2012-06-20

    Update QGIS snapping dialog if settings changed via QgsProject

Marco Hugentobler 	2012-06-19

    Add option to set min/max values to stdDev in singleband gray and multiband color widgets

Giuseppe Sucameli 	2012-06-19

    fix check for extension saving style (follow 88187f1e4c)

Giuseppe Sucameli 	2012-06-19

    swap names for lessOrEqual and greaterOrEqual binary operators converting expressions to ogc filters

volayaf 	2012-06-19

    improvement in saga and grass algorithms loading

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@256 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-19

    add missing core headers

Marco Hugentobler 	2012-06-19

    New test image for regression992 test

Alexander Bruy 	2012-06-19

    fix Define current projection when identical CRSes selected

Marco Hugentobler 	2012-06-19

    Write snap settings for a layer in a convenient way

Marco Hugentobler 	2012-06-19

    Implement QgsProject::snapSettingsForLayer as a convenient way to access snap properties for a layer

Giuseppe Sucameli 	2012-06-19

    display a menu to choose the output format saving vector styles (fix #5136)

Giuseppe Sucameli 	2012-06-19

    fix export from Graduated renderingV2 to SLD, generate valid SLD docs (fix #5795):

    Description tag must have a child tag,
    OnlineResource tag and its child Format tag must have SE namespace,
    Filter tag created and never appended to the Rule element exporting from a Graduated rendering,
    fix convertion between PropertyIsBetween tag and QgsExpression

Juergen E. Fischer 	2012-06-19

    german translation update

Etienne Tourigny 	2012-06-18

    fixes

    fixes

Juergen E. Fischer 	2012-06-19

    osgeo4w: move desktop and browser executable to main bin

cpolymeris@gmail.com 	2012-06-19

    OTB helper commands log.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@255 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-19

    OTB extents. Test implementation.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@254 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-19

    runalg arguments by name


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@253 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-18

    Fix #5821


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@252 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-18

    determine geometry types of GEOMETRY in geometry_columns (related to #5813)

Juergen E. Fischer 	2012-06-18

    fix #4969

Juergen E. Fischer 	2012-06-18

    fix identify with 64bit fids

Etienne Tourigny 	2012-05-14

    use symbologyv2 for lines and add marker symbols (in addition to Cross)

Etienne Tourigny 	2012-05-13

    create QgsDecorationItem class for all decoration items and render in a specific order (grid before others so it's on bottom

Etienne Tourigny 	2012-05-13

    add decoration grid, based on composer grid (code copied, not reused)

    add missing qgssymbollayerv2utils.h include

volayaf@gmail.com 	2012-06-18

    fixed bad imports in lidar package
    fixed problem with non-ascii filenames
    (both patches supplied by Alexander Bruy)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@250 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-18

    move QGIS_PREFIX_PATH support to QgsApplication

Marco Hugentobler 	2012-06-18

    Replace contents of pseudoColor test with raster renderer code that generates the same result

Marco Hugentobler 	2012-06-18

    Add QML in new format for landsat875 test

Marco Hugentobler 	2012-06-18

    Add backward compatibility code to rasterlayer and fix render checker. Landsat basic passes now

Marco Hugentobler 	2012-06-18

    Small useability improvement: disable autocompletion in scale combo

Werner Macho 	2012-06-18

    translation update: first danish strings by Preben

Werner Macho 	2012-06-18

    translation update: ko_KR by BJ

Juergen E. Fischer 	2012-06-17

    nsis fixes

Marco Hugentobler 	2012-06-17

    Applied fix for #4453 from Leyan Ouyang

Merge: f55c13f ac45351
mhugent 	2012-06-17

    Merge pull request #179 from sdikiy/master

    quick fix for http://hub.qgis.org/issues/4514

Serge Dikiy 	2012-06-17

    quick fix for http://hub.qgis.org/issues/4514

Juergen E. Fischer 	2012-06-17

    osgeo4w nsis: recreate shortcuts for desktop and browser

Juergen E. Fischer 	2012-06-17

    fix nightly osgeo4w

Etienne Tourigny 	2012-06-15

    user layerName() when adding raster from browser (#5636)

Etienne Tourigny 	2012-06-08

    add zip item layer dialog to open .zip and .tar files with many files ; fix gdal sublayer names

Etienne Tourigny 	2012-06-08

    add support for .tar/.tgz files and relevant tests ; delay scan of .tgz files and large .zip files until requested

Etienne Tourigny 	2012-06-07

    remove Passthru option and change storage of options scanZipInBrowser and scanItemsInBrowser

Juergen E. Fischer 	2012-06-16

    forward port osgeo4w stuff from 1.7

cpolymeris@gmail.com 	2012-06-16

    otb: region of interest.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@249 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-16

    Cancelation terminates thread.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@248 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-16

    fix osgeo4w postinstall

Juergen E. Fischer 	2012-06-16

    fix windows build

Juergen E. Fischer 	2012-06-16

    osgeo4w packaging update

Juergen E. Fischer 	2012-06-16

    fix #5494

Juergen E. Fischer 	2012-06-16

    fix #5543

Larry Shaffer 	2012-06-15

    Fix for #5753, for all platforms.

    This fix takes a different approach to dynamically building standard plugin category menus, by putting them after or before the Raster menu, which is already in /src/ui/qgisapp.ui.

    If third-party plugins use firstRightStandardMenu() as a key for placing their plugin menus before it, this fix should now keep the menubar properly ordered, with dynamically added/removed standard plugin category menus, as such:

    File, Edit, View, Layer, Settings, Plugins, [Vector], Raster, [Database], [Web], [Plugin-added-menus], Window (on Mac), Help

Merge: a240f44 dceefca
alexbruy 	2012-06-15

    Merge pull request #175 from coyotte508/master

    Improved Dissolve speed for some use cases

Etienne Tourigny 	2012-06-15

    fix #4434

Juergen E. Fischer 	2012-06-14

    fix warnings and indentation

Juergen E. Fischer 	2012-06-15

    run crssync from output directory

coyotte508 	2012-06-15

    Improved dissolve per field-value

Radim Blazek 	2012-06-15

    typo

Nathan Woodrow 	2012-06-16

    Hide sample buttons in expression builder on load

Marco Hugentobler 	2012-06-15

    Forgot to add license header

Marco Hugentobler 	2012-06-15

    Use band number as text in raster renderer widgets if color interpretation is undefined. Fix for ticket #5799

Merge: 11b23d5 70b68be
Radim Blazek 	2012-06-15

    WCS

cpolymeris@gmail.com 	2012-06-15

    Set user style sheet in parameter dialog help.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@247 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-06-15

    updated help

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@246 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-06-15

    added saga help files (still have to fix the code to use the custom css)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@245 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-14

    fix tile scale widget state tracking

cpolymeris@gmail.com 	2012-06-14

    More information in saga help files + stylesheet.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@244 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-06-14

    to open raster layer properly, more data must be read from project file, temporary fix to get old WMS layers working

volayaf@gmail.com 	2012-06-14

    fixed bugs in lidar tools

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@243 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Alexander Bruy 	2012-06-14

    fix Python bindings for raster renderer and resampler

Merge: f3f1c43 9a006e4
Tim Sutton 	2012-06-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2012-06-14

    Forgot to add sip files

Radim Blazek 	2012-06-14

    some crashes on loading project fixed

Radim Blazek 	2012-06-14

    Generic QgsDataSourceURI, WMS provider adapted to QgsDataSourceURI, enabled WMS drag-and-drop from browser

Juergen E. Fischer 	2012-06-14

    missed one...

Juergen E. Fischer 	2012-06-14

    fix warnings and link errors on windows

Marco Hugentobler 	2012-06-14

    Make project file transform for rasters between 1.8 and 1.9

Merge: dba6ba4 966c5c1
Tim Sutton 	2012-06-14

    Resolved merge conflicts

Juergen E. Fischer 	2012-06-14

    update master version

Marco Hugentobler 	2012-06-14

    Fix typo

Merge: adca9d3 efb54ea
Marco Hugentobler 	2012-06-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2012-06-14

    Adapt project file transform to changed release schedule

volayaf@gmail.com 	2012-06-14

    reorganized lidar tools

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@242 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: ff87dee fd0a46a
Marco Hugentobler 	2012-06-14

    Merge raster resampler branch

Merge: b33ea42 efb54ea
Tim Sutton 	2012-06-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-06-14

    Updated version number, splash icon, for master

Juergen E. Fischer 	2012-06-14

    fix nightly builds for Qt <4.7

Nathan Woodrow 	2012-06-02

    Expression builder widget UI tweaks

    - remove open,save button
    - add Load All | Load Sample values buttons
    - remove search label and show inside lineedit

Juergen E. Fischer 	2012-06-13

    german translation update

Werner Macho 	2012-06-13

    fix typo: one ' too much

Werner Macho 	2012-06-13

    fix spelled QGIS not Qgis

Werner Macho 	2012-06-13

    fix typo in nl translation

Radim Blazek 	2012-06-13

    missing QHash

Merge: 5ebdbe3 f276fde
Juergen E. Fischer 	2012-06-13

    [FEATURE] Add WMTS support

Merge: 3713511 e85d9b8
Tim Sutton 	2012-06-12

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-06-12

    Unembedded 1.8 from icon and added another 1.8 labeled icon rather (non default)

Tim Sutton 	2012-06-12

    Embedded version 1.8 in icon

Tim Sutton 	2012-06-12

    Remove rc from splash

Merge: ef60f81 e85d9b8
Juergen E. Fischer 	2012-06-12

    Merge remote-tracking branch 'origin/master' into wmts

Werner Macho 	2012-06-12

    fixed some typos in NEWS

Tim Sutton 	2012-06-12

    Added more anomaly files for sid i386

Werner Macho 	2012-06-12

    update tsstat with new translators

Werner Macho 	2012-06-12

    prepare for 1.8: update ChangeLog file

Tim Sutton 	2012-06-12

    Manually applied pull request #169 - patch to update French translator list

Werner Macho 	2012-06-12

    translation update: ko_KR by BJ Jang

Juergen E. Fischer 	2012-06-12

    fix #5523

cpolymeris@gmail.com 	2012-06-11

    Saga Help file generator.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@239 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-06-11

    translation update: et_EE by Veiko

Werner Macho 	2012-06-11

    translation update: es by Carlos

Merge: cc9b898 8a9c82c
Tim Sutton 	2012-06-11

    Merge pull request #171 from Cracert/trans

    translation update: pl by Robert

Robert Szczepanek 	2012-06-11

    translation update: pl by Robert

Merge: 014b9ac e0b899e
Tim Sutton 	2012-06-11

    Merge pull request #170 from dakcarto/fix-about-hijack

    Better fix for #5754. More of a hack but works well.

Larry Shaffer 	2012-06-11

    Better fix for #5754. More of a hack but works well.
    Keeps all plugins from hijacking About or Preferences application menus on Mac.

Merge: 442adba a5199a8
Werner Macho 	2012-06-11

    Merge pull request #168 from Jean-Roc/master

    update fr strings

cpolymeris@gmail.com 	2012-06-11

    Handle algorithm errors.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@238 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-06-11

    translation update: lv by Maris

Jean-Roc Morreale 	2012-06-11

    update fr strings

Werner Macho 	2012-06-11

    translation update: pt_BR by Arthur

Werner Macho 	2012-06-11

    remove Henriette from translators

Werner Macho 	2012-06-11

    translation update: ja by yoichi

Merge: 615089c f47d1ab
Werner Macho 	2012-06-11

    Merge pull request #167 from artfwo/master

    Russian translation update for 1.8

Artem Popov 	2012-06-11

    Updated Russian translation.

Merge: 6d9f0dd 24cca20
Werner Macho 	2012-06-11

    Merge pull request #166 from rduivenvoorde/master

    nl fix

Richard Duivenvoorde 	2012-06-11

    NL gui translation fix

volayaf@gmail.com 	2012-06-11

    removed previous cancelation mechanism (not used)
    fixed #5777

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@237 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

pcav 	2012-06-11

    IT GUI transaltion completed

Werner Macho 	2012-06-11

    translation update: bring all ts files to the same level

cpolymeris@gmail.com 	2012-06-11

    History processing moved to separate thread. Note not much user feedback.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@236 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

cpolymeris@gmail.com 	2012-06-11

    Batch processing in separate thread.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@235 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 769fd5e 7f1a4e2
Jürgen Fischer 	2012-06-10

    Merge pull request #165 from dakcarto/fix-menus-two

    Fixes for issues #5753 and #5754

Larry Shaffer 	2012-06-10

    Fix for #5753

    Does not address third-party plugins that add their own menus. They should use (here for Python):

    menu_bar = self.iface.mainWindow().menuBar()
    menu_bar.insertMenu( self.iface.firstRightStandardMenu().menuAction(), self.my_plugins_menu )

    Ideally, a new QgisInterface public slot pair of addMenuToMenuBar(QMenu)/removeMenuFromMenuBar(QMenu) should be added, to help plugin developers put their menus in the correct place.

    Deletion in GdalTools.py is redundant add-to-menu code. It moved the Raster menu to -1 on the menubar (between Window and Help on Mac).

Juergen E. Fischer 	2012-06-10

    fix query item removal

Merge: 3c746c7 ed801a4
Juergen E. Fischer 	2012-06-10

    Merge remote-tracking branch 'origin/master' into wmts

Larry Shaffer 	2012-06-10

    Simple fix for #5754 (Mac OS-specific). Better fix would be to make a method that set all QAction additions to base menus (submenus ok) to QAction::NoRole. This would keep any new action from hijacking the Mac app's About or Preferences… menus.

    See: http://doc.qt.nokia.com/4.7.1/qmenubar.html#qmenubar-on-mac-os-x

Nathan Woodrow 	2012-06-10

    Fix #5766

Giuseppe Sucameli 	2012-06-09

    DBManager: use the first suitable field loading a view (fix #5676)

Giuseppe Sucameli 	2012-06-09

    DBManager: do not use translated string for geometry type name (fix #5764)

Giuseppe Sucameli 	2012-06-09

    delete not valid provider instances (fix memory leaks),
    avoid failure due to assertion calling disconnectDb on PG provider more times

Giuseppe Sucameli 	2012-06-09

    DBManager: fix spatial index creation importing a vector layer (fix #5625)

Merge: 23c0f25 12ef68e
Gary Sherman 	2012-06-09

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Gary Sherman 	2012-06-09

    Fix Ingres connection type so stored connections can be created using the
    add vector layer dialog, database option

Martin Dobias 	2012-06-09

    Fix placement of curved labels when there is just one character

Juergen E. Fischer 	2012-06-08

    Use QString::number with QDomElement::setAttribute with double/float (fixes #5749)

volayaf 	2012-06-08

    fixed problem with boolean values in R scripts

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@234 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-08

    fixed problem with boolean values in scripts (#5755)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@233 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-08

    fixed minor bug in in OTB provider

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@232 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 7b08cba 4a33d74
Werner Macho 	2012-06-08

    Merge pull request #162 from rduivenvoorde/master

    nl translation fix

Richard Duivenvoorde 	2012-06-08

    little dutch translation fix

Marco Hugentobler 	2012-06-08

    Try to detect WFS feature type if not available in describeFeatureType response. Fixes ticket #5745

Juergen E. Fischer 	2012-06-08

    fix #5758

Werner Macho 	2012-06-07

    translation update: nl by Richard

Juergen E. Fischer 	2012-06-07

    fix #5759

volayaf 	2012-06-07

    fixed problem when opening OTB descriptions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@231 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-06-07

    fix for #5760 - make heatmap dialog resizeable and use a layout in advanced options

volayaf 	2012-06-07

    fixed problem when editing help and saving R scripts

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@230 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-07

    fixed encoding problem in log
    fixed problem when editing help and saving scripts (still have to apply it to R scripts)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@229 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Alexander Bruy 	2012-06-07

    fix fTools version to avoid conflicts with version from Carson's repo

volayaf 	2012-06-07

    fixed encoding problem in log

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@228 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-06-07

    updated widgets / customization

Merge: 38d15f1 77d3ab9
Juergen E. Fischer 	2012-06-07

    Merge remote-tracking branch 'origin/master' into wmts

Juergen E. Fischer 	2012-06-07

    fix WMS-C

Merge: c695198 ac67309
Werner Macho 	2012-06-06

    Merge pull request #161 from Cracert/trans

    translation update: pl by Robert

Robert Szczepanek 	2012-06-07

    translation update: pl by Robert

Tim Sutton 	2012-06-06

    Apply patch from Borys to remove 'add 3rd party repos' button in plugin manager

Werner Macho 	2012-06-06

    translation update: et_EE by Veiko

Werner Macho 	2012-06-06

    translation update: nl by Richard

Juergen E. Fischer 	2012-06-06

    fix some links in INSTALL

Juergen E. Fischer 	2012-06-06

    update creatensis section of INSTALL

Merge: 40fbac0 1ca6e7d
Werner Macho 	2012-06-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Werner Macho 	2012-06-06

    translation update: update TRANSLATORS

Werner Macho 	2012-06-06

    translation update: nl by Richard

Werner Macho 	2012-06-06

    translation update: ja by yoichi

Merge: d78e605 237f73c
Werner Macho 	2012-06-05

    Merge pull request #160 from Cracert/trans

    translation update: pl by Milena and Robert

Werner Macho 	2012-06-06

    translation update: gl_ES by Xan

Juergen E. Fischer 	2012-06-06

    fix #5747

Robert Szczepanek 	2012-06-06

    translation update: pl by Milena and Robert

Werner Macho 	2012-06-05

    translation update: pt_BR by Arthur

volayaf 	2012-06-05

    Added first version of threading interface (by Camilo Polymeris, as part of GSoC 2012)
    Fixed #5720. Still have to add refreshing to the model after the change in the element is done.

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@227 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-05

    update osgeo4w dependency list in INSTALL

pcav 	2012-06-05

    Fix an error in IT translation

volayaf 	2012-06-05

    fixed progress tracking in linux

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@226 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-05

    fixed bad behaviour with fixed tables

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@225 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-05

    fixed #5739

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@224 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-06-05

    Fixed NVIZ GRASS module (did not work)


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@223 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 08a712a dab4758
Juergen E. Fischer 	2012-06-04

    Merge branch 'master' into wmts

Gary Sherman 	2012-06-04

    Fix Ingres driver name so it is recognized.
    OGR reports the driver name in title case rather than
    all caps currently used in qgsogrprovider.cpp

Juergen E. Fischer 	2012-06-04

    add support for optional wm(t)s axis inversion

paolo.cavallini 	2012-06-04

    Fixed r.los (see #5734)


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@222 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-06-04

    Changed a default value for r.param.scale


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@221 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-06-04

    Added r.slope, r.aspect - simpler and faster to use than full r.slope.aspect


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@220 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-04

    fixed #5557

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@219 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-04

    modeler canvas is now bigger (5000x5000). TODO: make it resize dynamically

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@218 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-04

    fixed #5673

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@217 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-04

    updated help

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@216 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 8ad85ed 2519df8
Nathan Woodrow 	2012-06-03

    Merge pull request #159 from szekerest/master

    MSSQL provider: Implement minimumValue, maximumValue and uniqueValues

szekerest 	2012-06-03

    MSSQL provider: Implement minimumValue, maximumValue and uniqueValues (fixes #5610)

Werner Macho 	2012-06-03

    translation update: es by Carlos

Juergen E. Fischer 	2012-06-03

    remove empty translations and update moved translation

Werner Macho 	2012-06-03

    forgot to update nl file to latest strings, TRANSLATORS file also updated

Werner Macho 	2012-06-03

    translation update: ja by Yoichi

Werner Macho 	2012-06-03

    translation update: nl by Richard

Merge: cdd683c d6d1e70
Werner Macho 	2012-06-03

    Merge pull request #158 from Jean-Roc/master

    update fr strings

paolo.cavallini 	2012-06-02

    Removed v.topoclean because of duplicate v.in.ogr. See ticket #5717


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@214 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: c3f240b 2ed561b
Jean-Roc Morreale 	2012-06-02

    update fr strings, patches from Etienne Tourigny and Robin Cura

paolo.cavallini 	2012-06-02

    Added v.topoclean (not yet working, unclear if it's a global bug)


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@213 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-06-02

    Patch from Markus Metz, see #5714


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@212 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: af01338 7db9df5
MORREALE Jean-Roc 	2012-06-02

    Merge pull request #5 from RCura/master

    Quelques modifications de traduction

Werner Macho 	2012-06-02

    translation update: pt_BR by qgisbrasil

Robin Cura 	2012-06-02

    Some french translations fix

    Std Dev -> écart type, RGB -> RVB, Natural Breaks (Jenks) -> Seuils
    naturels and some minor things.

Martin Dobias 	2012-06-02

    Fixes for refinement of rules.

    - quoting of columns (#5536 and #5542)
    - quoting of string
    - do not quote of numbers (avoids type cast during evaluation)
    - use at least 4 floating point digits for doubles

Juergen E. Fischer 	2012-06-01

    fix #5692

volayaf 	2012-06-01

    more improvement to grass description

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@211 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-01

    fixed #5708

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@210 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-06-01

    cache sublayer feature counts and don't retrieve expensive ones (fixes #5322)

Merge: 2767edf b7382e3
Werner Macho 	2012-06-01

    Merge pull request #157 from artfwo/master

    Russian translation update for 1.8

art 	2012-06-02

    Updated Russian translation.

volayaf 	2012-06-01

    fixed some GRASS descriptions
    fixed problem with defautl values in parameterRange

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@209 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-06-01

    Corrected several misprints in help.


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@208 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

paolo.cavallini 	2012-06-01

    First test commit (help minor edits).


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@207 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-06-01

    translation update: gl_ES by XAN

Werner Macho 	2012-06-01

    translation update: cs_CZ by Jan

Werner Macho 	2012-06-01

    translation update: lv by Maris

Werner Macho 	2012-06-01

    translation update: hu by Zoltan

Werner Macho 	2012-06-01

    translation update: es by Carlos

volayaf 	2012-06-01

    fixed #5664 (problem with extent parameter)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@206 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-01

    added iimproved GRASS algorithm description by M. Neteler and patch for #5674 by M.Metz

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@205 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Hugo Mercier 	2012-06-01

    refs #5536
    Escape field names in refine rules functions

volayaf 	2012-06-01

    fixed #5693

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@204 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-01

    changed grass default resolution to 100 (#5700)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@203 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-01

    fixed #5697 (temp files naming)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@202 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-06-01

    added improved descrition for r.* algorithms, provided by Markus Neteler

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@201 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-31

    added improved definition of GRASS algorithms, contributed by Markus Metz

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@200 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Martin Dobias 	2012-05-31

    fix #5678 (old labeling does not work with rule-based rendering)

volayaf 	2012-05-31

    fixed #5673

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@199 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: af01338 5368468
Jean-Roc Morreale 	2012-05-31

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

Jean-Roc Morreale 	2012-05-31

    correct typos

volayaf 	2012-05-31

    fixed grass algorithms
    fixed bug when using multiple layers in saga (#5652)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@198 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Alexander Bruy 	2012-05-31

    run Points in Polygon in separate thread and don't block QGIS main
    window (addresses #5162)

Juergen E. Fischer 	2012-05-31

    remove obsolete parts from finished translations

Nathan Woodrow 	2012-05-31

    Add .mailmap file so that git shortlog reports stats better

Martin Dobias 	2012-05-30

    fix #5665 (rendering order not working in rule-based renderer)

Martin Dobias 	2012-05-30

    Merge branch 'master', remote-tracking branch 'origin'

volayaf 	2012-05-30

    minor fixes

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@197 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-05-30

    fix #5487

Juergen E. Fischer 	2012-05-30

    fix test debug output

Etienne Tourigny 	2012-05-29

    skip vrt-in-zip test for gdal<1.7

Juergen E. Fischer 	2012-05-29

    apply #5598.33

Juergen E. Fischer 	2012-05-29

    node tool fixes:
    - fix OTFR support (fixes #5327.16)
    - smaller snap tolerance for geographic CRSs (fixes #5661)
    - use different snapping epsilons in QgsVectorLayer::snapToGeometry() for
      layers with geographic and projected crs.
    - [API] enhancements (to fix #5661):
     * QgsGeometry::closestSegmentWithContext: allow passing of segment snapping
       epsilon
     * QgsPoint::sqrDistToSegment: allow assing of segment snapping epsilon
     * QgsMapLayer::crs() add "const"

Merge: 23b40de 1341a55
alexbruy 	2012-05-29

    Merge pull request #154 from slarosa/master

    fix #2733

Salvatore Larosa 	2012-05-29

    fix #2733

volayaf 	2012-05-29

    fixed #5644

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@195 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-29

    added notice when grass help is not configured

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@194 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-05-29

    vector layer: also consider changed geometries, when there's no select rectangle

Juergen E. Fischer 	2012-05-29

    fix #5660

Merge: 9859709 9e45d4c
Werner Macho 	2012-05-29

    Merge pull request #153 from rduivenvoorde/master

    translation update: new partial dutch translation

Richard Duivenvoorde 	2012-05-29

    dutch translation

Giuseppe Sucameli 	2012-05-28

    fix set crs to OGR data items (broken in 04aab2938)

Merge: 5e45e87 04aab29
Giuseppe Sucameli 	2012-05-29

    Merge remote-tracking branch 'etiennesky/browser_fixes'

Juergen E. Fischer 	2012-05-29

    fix #5657

Juergen E. Fischer 	2012-05-28

    skip null values in vector file writer (fixes #5172)

Juergen E. Fischer 	2012-05-28

    fix #5030

Merge: 369b32e 721765e
Tim Sutton 	2012-05-28

    Merge pull request #152 from dakcarto/patch-1

    Add libqico.dylib copy and lib update to Mac app bundle for upcoming 1.8...

volayaf@gmail.com 	2012-05-28

    fixed bug in settings when adding an external provider

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@193 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

dakcarto 	2012-05-28

    Add libqico.dylib copy and lib update to Mac app bundle for upcoming 1.8 release. Linux already supports libqico (favicons), while Windows apparently isn't supported by Qt yet (Notes section of http://qt-project.org/doc/qt-4.8/qtwebkit.html ). This is useful for plugins that render web pages and want to display the favicon of the site.

Alexander Bruy 	2012-05-28

    update field list on each layer list update (fix #5655)

Juergen E. Fischer 	2012-05-28

    fix tests

Etienne Tourigny 	2012-05-21

    add python binding for QgsCoordinateReferenceSystem::createFromUserInput()

Etienne Tourigny 	2012-05-21

    add more autotests for ESRI WKT

Etienne Tourigny 	2012-05-21

    use GDAL_FIX_ESRI_WKT=GEOGCS instead of TOWGS84 and maintain user-defined value

Etienne Tourigny 	2012-05-19

    add ESRI .prj test to make sure towgs84 is ok (bug #5598), and add QgsCoordinateReferenceSystem::createFromUserInput()

Etienne Tourigny 	2012-05-19

    make sure  QgsCoordinateReferenceSystem::setProj4String() and createFromProj4() trim the input proj4 string

Juergen E. Fischer 	2012-05-28

    fix #5327

Juergen E. Fischer 	2012-05-28

    debian packaging update

pcav 	2012-05-28

    IT GUI transaltion completed after string freeze

Werner Macho 	2012-05-28

    translation update: sl_SI by Joze

Etienne Tourigny 	2012-05-28

    do not show file extension in TOC, add QqsLayerItem::layerName() for getting layer name (bug #5621)

Etienne Tourigny 	2012-05-27

    prevent .vrt and .gz files from appearing as both GDAL and OGR items (bug #5636)

Etienne Tourigny 	2012-05-24

    add tests for QgsDataItem - verify that .gz and .vrt files are not recognized as both gdal and ogr items (bug #5636)

Werner Macho 	2012-05-27

    translation update: preparing for 1.8 release

Tim Sutton 	2012-05-27

    Remove 'm' tagged QGIS icon in lead up to release of 1.8

Merge: c1df626 4295a68
Tim Sutton 	2012-05-27

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 9d0745f df79503
alexbruy 	2012-05-27

    Merge pull request #150 from slarosa/master

    fix #3549

Juergen E. Fischer 	2012-05-27

    fix nightly builds

Juergen E. Fischer 	2012-05-27

    fix warning

Merge: d281277 812ff51
Werner Macho 	2012-05-26

    Merge pull request #149 from Jean-Roc/master

    update fr strings

Juergen E. Fischer 	2012-05-26

    fix #4843 again

Juergen E. Fischer 	2012-05-26

    log OGR errors in QgsVectorFileWriter::addFeature

Juergen E. Fischer 	2012-05-26

    debian packaging update

Salvatore Larosa 	2012-05-26

    fix #3549

Juergen E. Fischer 	2012-05-26

    - replace SaQueryBuilder with QgsQueryBuilder
    - replace SaDbFilterProxyModel with QgsDbFilterProxyModel
    - remove spurious copy of QgsDbFilterProxyModel from postgres provider
    - fix #4491

Tim Sutton 	2012-05-26

    Updates whats new documentation for 1.8

Juergen E. Fischer 	2012-05-26

    fix #5490

Juergen E. Fischer 	2012-05-25

    remove unused includes

Jean-Roc Morreale 	2012-05-25

    update fr strings

Merge: c4db2e0 afcd5b6
Jean-Roc Morreale 	2012-05-25

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

Marco Hugentobler 	2012-05-25

    Smaller treshold for GetFeatureInfo for polygons

Juergen E. Fischer 	2012-05-25

    fix #4521

volayaf@gmail.com 	2012-05-25

    fixed bug in outputfile

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@191 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 88a319a 40c34d4
Tim Sutton 	2012-05-25

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-05-25

    Added anomaly files for windows

volayaf@gmail.com 	2012-05-25

    improved model edition in modeler

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@190 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-05-25

    german translation update

Juergen E. Fischer 	2012-05-25

    sip bindings: add /Transfer/ to QgsMapCanvas::mapRenderer()
    (otherwise mc.mapRenderer().hasCrsTransformEnabled() can crash)

Juergen E. Fischer 	2012-05-25

    validation/geometry/threading fixes:
    - fTools/polygon centroids: catch missing centroid with invalid geometry
      (fixes #4963)
    - fTools/validate geometry:
     * fix final position of progress bar
     * don't use isGeosValid()
     * zoom to feature on locationless errors (including OTFR support)
     * store/restore dialog position
    - QgsGeometry(Validator):
     * log GEOS exceptions
     * (closed) rings need at least 4 points not 3
     * log error when geometry can't be exported to GEOS
     * don't produce "geometry is valid" error
    - improve logging from threads
     * keep message output from main thread as popup
     * log message from threads to message log (fixes crash on python error
       in thread)

Juergen E. Fischer 	2012-05-25

    message log: fix crash on exit

Merge: a442b89 474e04b
alexbruy 	2012-05-25

    Merge pull request #148 from slarosa/master

    minor fixes in fTools GUI

Merge: e37a9ae 3dc5d54
Jean Roc 	2012-05-25

    Merge pull request #4 from mathieubossaert/master

    plus qu'une trentaine de chaînes.

volayaf@gmail.com 	2012-05-25

    improved model edition in modeler

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@189 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

slarosa 	2012-05-25

    minor fixes in gui fTools

Mathieu Bossaert 	2012-05-24

    update french strings, plus que 34! mathieu

Juergen E. Fischer 	2012-05-24

    fTools: fix handling of locationless geometry errors (fixes #4396)

Merge: bc367ce 84f7b12
Jean Roc 	2012-05-24

    Merge pull request #3 from mathieubossaert/master

    traduction française

Juergen E. Fischer 	2012-05-24

    fix synchronous geometry validation

Radim Blazek 	2012-05-24

    restricted location/mapset names in GRASS new mapset dialog, fixes #4258

Radim Blazek 	2012-05-24

    Europe extent, fixed #5080

Juergen E. Fischer 	2012-05-24

    debian packaging: optionally remove api/installdox

Mathieu Bossaert 	2012-05-24

    update french strings

Juergen E. Fischer 	2012-05-24

    fix #5632

volayaf@gmail.com 	2012-05-24

    Algorithms in modeler can now be edited with a double click (not yet finished)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@188 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-05-24

    german translation update

Juergen E. Fischer 	2012-05-23

    take III on #5597

Juergen E. Fischer 	2012-05-23

    another take on #5597

Alexander Bruy 	2012-05-23

    some fixes in geoprocessing tools (hope this will fix database support)

Radim Blazek 	2012-05-23

    check thread in customization, it should fix #5597

Alexander Bruy 	2012-05-23

    make Clip tool work with SpatiaLite layers (fix #4571)

Alexander Bruy 	2012-05-23

    make Dissolve tool work with SpatiaLite (addresses #4571)

Merge: 4d3cf1a c367a35
Tim Sutton 	2012-05-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-05-22

    wmts: use QObject property to make tile resolutions available to tilescalewidget

Juergen E. Fischer 	2012-05-22

    wmts: use KVP GetMap only when allowed

Alexander Bruy 	2012-05-22

    create vector grid in layer CRS (fix #5204)

Alexander Bruy 	2012-05-22

    correctly handle WMS rasters in Random Points tool (fix #5202)

Alexander Bruy 	2012-05-22

    make "use value from field" available in Random Points tools, also show
    only integer fields (fix #4570)

Juergen E. Fischer 	2012-05-22

    fix crash on opening symbol levels dialog when using categorized renderer with showClassifiers

Alexander Bruy 	2012-05-22

    fix #5617. Patch submitted by Salvatore Larosa, thanks!

Alexander Bruy 	2012-05-22

    Revert last commit

    This reverts commit 5cb6dd7c0b686890cffff1c0d4476dfa2dce57f9.

Alexander Bruy 	2012-05-22

    store geometries from GeometryCollection in list

Marco Hugentobler 	2012-05-22

    Split tool: prefer default values for new features vs. values copied from original feature. Fixes ticket #5475

Merge: 5a4412a 1780344
Radim Blazek 	2012-05-21

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2012-05-21

    updated widgets / customization

Juergen E. Fischer 	2012-05-20

    fix 'unused' warning

Alexander Bruy 	2012-05-21

    partial fix for #5617 from Salvatore Larosa (slightly modified)

Juergen E. Fischer 	2012-05-21

    open sqlite3 database readonly where possible (another followup on 9154e4e)

Juergen E. Fischer 	2012-05-16

    merge master:
    - don't use createFromEpsg
    - cleanup: don't save tiles for debugging

Juergen E. Fischer 	2012-05-21

    update icon link for api doc - again

Juergen E. Fischer 	2012-05-21

    update icon link for api doc

Giuseppe Sucameli 	2012-05-20

    DBManager: added missing required (not implicit) self argument

Giuseppe Sucameli 	2012-05-20

    DBManager: don't raise any errors while disconnecting signals from destroyed objects

Giuseppe Sucameli 	2012-05-19

    DBManager: remove label from separators (fix #5393)

Etienne Tourigny 	2012-05-19

    fix zip file reading for gdal<1.9 and add test for folder-in-zip

Etienne Tourigny 	2012-05-19

    prefer non-deprecated crses (fixes part of #4977)

Etienne Tourigny 	2012-05-19

    trim proj4 parameters for sql queries (#5598)

Etienne Tourigny 	2012-05-18

    zip files: update VSIReadDirRecursive1() from VSIReadDirRecursive() in gdal trunk, fixes long filename issues (see gdal bug#4658)

Juergen E. Fischer 	2012-05-18

    add missing copyright headers to c++ files

Juergen E. Fischer 	2012-05-18

    fix #5176

Juergen E. Fischer 	2012-05-17

    log more verbose error messages if the view primary key selection is wrong.

D'Hont René-Luc 	2012-05-18

    WFS service Capability request resource bug

Juergen E. Fischer 	2012-05-17

    fix #5544

Marco Hugentobler 	2012-05-17

    QgsMapRenderer: Load projection flag and destination CRS before extent. Fixes ticket #5605

Juergen E. Fischer 	2012-05-16

    fix feature info for WMS 1.3

Juergen E. Fischer 	2012-05-21

    update icon link for api doc - again

Juergen E. Fischer 	2012-05-21

    update icon link for api doc

volayaf@gmail.com 	2012-05-21

    finished adding pymorph algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@187 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-05-20

    replaced mmqgis by new improved version, compatible with standalone plugin

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@186 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Giuseppe Sucameli 	2012-05-20

    DBManager: added missing required (not implicit) self argument

Giuseppe Sucameli 	2012-05-20

    DBManager: don't raise any errors while disconnecting signals from destroyed objects

Giuseppe Sucameli 	2012-05-19

    DBManager: remove label from separators (fix #5393)

Tim Sutton 	2012-05-20

    Marked updateFeatureCount as unused (removes compiler warning)

Etienne Tourigny 	2012-05-19

    fix zip file reading for gdal<1.9 and add test for folder-in-zip

Merge: 9dcee6b 396aaf1
Tim Sutton 	2012-05-19

    Merge pull request #142 from etiennesky/fix_crs

    Fix crs issues

Merge: 1e7b9ed b6997a0
Tim Sutton 	2012-05-19

    Merge pull request #141 from etiennesky/zip_fixes2

    zip files: update VSIReadDirRecursive1() from VSIReadDirRecursive() in gdal trunk

Etienne Tourigny 	2012-05-19

    prefer non-deprecated crses (fixes part of #4977)

Etienne Tourigny 	2012-05-19

    trim proj4 parameters for sql queries (#5598)

Etienne Tourigny 	2012-05-18

    zip files: update VSIReadDirRecursive1() from VSIReadDirRecursive() in gdal trunk, fixes long filename issues (see gdal bug#4658)

Juergen E. Fischer 	2012-05-18

    add missing copyright headers to c++ files

Juergen E. Fischer 	2012-05-18

    fix #5176

Juergen E. Fischer 	2012-05-17

    log more verbose error messages if the view primary key selection is wrong.

D'Hont René-Luc 	2012-05-18

    WFS service Capability request resource bug

volayaf@gmail.com 	2012-05-18

    implemented a few more pymorph algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@185 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-05-18

    WMTS/WMS-C: remove Cache-Control header from tile requests to force cache usage

Juergen E. Fischer 	2012-05-17

    fix #5544

Juergen E. Fischer 	2012-05-17

    wmts fixes:
    - [FEATURE] add support for CRS:27 and CRS:83 in QgsCoordinateReferenceSystem
    - fix axis orientation for CRS:84
    - respect inverted axis orientation in WMTS and allow to ignore it for WMS 1.3/WMTS
    - fix: only consider valid TileMatrixSetLimits

Juergen E. Fischer 	2012-05-16

    debian packaging: add optional support for gdal 1.9 in ubuntu lucid/oneiric/precise

Alexander Bruy 	2012-05-16

    show warning before updating exisiting shapefile (fix #5335)

Alexander Bruy 	2012-05-13

    minor formatting fixes

Juergen E. Fischer 	2012-05-13

    fix cmake warning and report GDAL version

slarosa 	2012-05-12

    Add Multigeometries support in Simplify tool for geomVertexCount function

Alexander Bruy 	2012-05-12

    also add MultiPolygon support in Densify geometry

Alexander Bruy 	2012-05-12

    add MultiLineString support to Densify geometries tool (addresses #5577)

Marco Hugentobler 	2012-05-04

    QgsMSLayerCache inherits from QObject to use signal/slot mechanism

Marco Hugentobler 	2012-05-04

    Empty config file entry in layer cache for sld layers

Marco Hugentobler 	2012-05-04

    Invalidate cache layers if project files are changed

Juergen E. Fischer 	2012-05-11

    run make t2tdoc

Juergen E. Fischer 	2012-05-11

    re-run scripts/scandeps.pl

Juergen E. Fischer 	2012-05-11

    fix GDAL version check

Juergen E. Fischer 	2012-05-10

    fix overriding of locale in options

Marco Hugentobler 	2012-05-09

    Rastercalculator: fix for reading out of source raster bounds

volayaf@gmail.com 	2012-05-17

    implemented a few more pymorph algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@184 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-05-17

    QgsMapRenderer: Load projection flag and destination CRS before extent. Fixes ticket #5605

Jean-Roc Morreale 	2012-05-17

    update fr strings

Merge: 07e4fb1 bfd846a
Jean-Roc Morreale 	2012-05-17

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

volayaf@gmail.com 	2012-05-17

    started adding pymorph library

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@183 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-05-16

    fix last commit - not my day - sorry

Juergen E. Fischer 	2012-05-16

    fix feature info for WMS 1.3

Juergen E. Fischer 	2012-05-16

    debian packaging: add optional support for gdal 1.9 in ubuntu lucid/oneiric/precise

Alexander Bruy 	2012-05-16

    show warning before updating exisiting shapefile (fix #5335)

volayaf@gmail.com 	2012-05-16

    fixed #5566
    added deactivation of algorithms in modeler

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@182 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 2caba61 a1255fc
Jean-Roc Morreale 	2012-05-15

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

Juergen E. Fischer 	2012-05-15

    wmts fixes:
    - fix tile limits
    - fix support support for multiple formats

Jean-Roc Morreale 	2012-05-13

    update fr strings

Alexander Bruy 	2012-05-13

    minor formatting fixes

Merge: edaaddd e9ff072
alexbruy 	2012-05-13

    Merge pull request #140 from slarosa/master

    Add Multigeometries support in Simplify tool

Juergen E. Fischer 	2012-05-13

    fix cmake warning and report GDAL version

slarosa 	2012-05-12

    Add Multigeometries support in Simplify tool for geomVertexCount function

Alexander Bruy 	2012-05-12

    also add MultiPolygon support in Densify geometry

Alexander Bruy 	2012-05-12

    add MultiLineString support to Densify geometries tool (addresses #5577)

Marco Hugentobler 	2012-05-04

    QgsMSLayerCache inherits from QObject to use signal/slot mechanism

Marco Hugentobler 	2012-05-04

    Empty config file entry in layer cache for sld layers

Marco Hugentobler 	2012-05-04

    Invalidate cache layers if project files are changed

Juergen E. Fischer 	2012-05-11

    run make t2tdoc

Juergen E. Fischer 	2012-05-11

    re-run scripts/scandeps.pl

Juergen E. Fischer 	2012-05-11

    fix GDAL version check

volayaf 	2012-05-10

    renamed mmqgis code
    splitted r.surf.rst

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@181 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-05-10

    fix overriding of locale in options

volayaf 	2012-05-10

    added GridSurface and MergeData algs to FUSION

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@180 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-10

    changed batch process behaviour when there are html outputs

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@179 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-09

    added r histogram script
    fixed bug in r script editor
    fixed bug in modeler when using lagorithms with optional raster layers

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@178 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-09

    forced output log filename in R

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@177 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-09

    added clear history button
    fixed buf in outputs (missing open variable)
    fixed bug when using table-like params dialog

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@176 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-09

    added pseudo-optional outputs
    switched to rst-based help files

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@175 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-05-09

    Rastercalculator: fix for reading out of source raster bounds

Etienne Tourigny 	2012-05-07

    use VSIReadDir() from gdal instead of quazip for listing .zip files and remove quazip entirely, including HAVE_ZLIB variable ; set default scanZip to 2 (Basic Scan)

Etienne Tourigny 	2012-05-06

    fix ziplayer handling for windows

Werner Macho 	2012-05-08

    translation update: sl_SI by Joze

Tim Sutton 	2012-05-07

    Mark unused var

Juergen E. Fischer 	2012-05-07

    improve message log resizing

Robert Szczepanek 	2012-05-07

    translation update: PL by Robert

Nathan Woodrow 	2012-05-07

    Remove old GCPs in georeferencer; clear image on close.  Fixes #4310

Tim Sutton 	2012-05-06

    Removed unused qsettings includes in tests

Jean-Roc Morreale 	2012-05-06

    update fr strings

Merge: 0dbf937 f60d40a
Tim Sutton 	2012-05-08

    Merge pull request #139 from etiennesky/zip_fixes

    Zip support fixes from Etienne

volayaf 	2012-05-08

    added GroundFilter (fusion)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@174 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-05-08

    fixed bugs in saga and grass extent calculation

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@173 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Etienne Tourigny 	2012-05-07

    use VSIReadDir() from gdal instead of quazip for listing .zip files and remove quazip entirely, including HAVE_ZLIB variable ; set default scanZip to 2 (Basic Scan)

Etienne Tourigny 	2012-05-06

    fix ziplayer handling for windows

volayaf 	2012-05-08

    fixed bug when running unsaved models
    added gridmetrics to FUSION

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@172 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-05-08

    translation update: sl_SI by Joze

volayaf 	2012-05-08

    added explode and multi to single part algorithms
    added lastools for linux
    added FUSION filterdata algorihtm
    changed r installation method

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@171 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-05-07

    Mark unused var

Juergen E. Fischer 	2012-05-07

    WMTS/WMS updates:
    - larger precision in BBOX (WMS/WMS-C)
    - keep GetCapabilities request or document for GetCapabilities request (WMTS)
    - parse multiple image format and infoFormat elements in GetCapabilities response
    - support diffent nestings of TileMatrixSetLink/TileMatrixSet
    - case insesitive parsing of ResourceURL attributes

Juergen E. Fischer 	2012-05-07

    improve message log resizing

volayaf 	2012-05-07

    moved grass.txt

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@170 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: be0e17b 301e320
Werner Macho 	2012-05-07

    Merge pull request #138 from Cracert/trans

    translation update: PL by Robert

Robert Szczepanek 	2012-05-07

    translation update: PL by Robert

Juergen E. Fischer 	2012-05-07

    missed a dialog

volayaf 	2012-05-07

    fixed syntax error in sagaalgorithm

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@169 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Nathan Woodrow 	2012-05-07

    Remove old GCPs in georeferencer; clear image on close.  Fixes #4310

Merge: 54eabf3 acd1643
Tim Sutton 	2012-05-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-05-06

    Removed unused qsettings includes in tests

volayaf@gmail.com 	2012-05-06

    added how-to about grass description files (yet to be finished)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@168 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-05-06

    changed resampling extent behaviour in SAGA

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@167 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: db1c3d9 1ad8700
Werner Macho 	2012-05-06

    Merge pull request #136 from Jean-Roc/master

    translation update: fr by JR

Jean-Roc Morreale 	2012-05-06

    update fr strings

Juergen E. Fischer 	2012-04-26

    [FEATURE] WMTS

Juergen E. Fischer 	2012-04-28

    test cleanups

Alexander Bruy 	2012-05-06

    remove unused icons

Alexander Bruy 	2012-05-06

    new icons for Georeferencer plugin (fix #5530)

volayaf 	2012-05-06

    changed str() with unicode(), to avoid problems with files in non-ascii paths

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@166 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 0bf56ab 8c236a3
Werner Macho 	2012-05-05

    Merge pull request #135 from Cracert/trans

    Translation update PL

Robert Szczepanek 	2012-05-06

    translation PL update: Dlg*

Robert Szczepanek 	2012-05-06

    translation PL test

Marco Hugentobler 	2012-05-05

    Save memory in raster rendering

Merge: 99d41cf 43abddb
alexbruy 	2012-05-04

    Merge pull request #134 from artfwo/master

    Russian translation update for 1.8

Artem Popov 	2012-05-05

    Updated Russian translation.

Tim Sutton 	2012-05-04

    Removed return - for pg provider crs method comments

Sandro Santilli 	2012-05-04

    typo

Nathan Woodrow 	2012-05-04

    Disable floating dock widgets in composer. Fix #5118

Giuseppe Sucameli 	2012-05-03

    remove the unused DB Manager About dialog .ui

Giuseppe Sucameli 	2012-05-03

    fix #5541

William Kyngesburye 	2012-05-03

    bundle libspatialindex in app

William Kyngesburye 	2012-05-03

    add spatialindex to OSX install instructions

William Kyngesburye 	2012-05-03

    bundle more Qt imageformats that might be useful to external plugins

volayaf@gmail.com 	2012-05-03

    fixed bug in lasground

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@164 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-05-02

    Added anomaly tests for stingray

Radim Blazek 	2012-05-02

    WCS / OWS select format fix

Radim Blazek 	2012-05-02

    Better formats in QgsOWSSourceSelect

Radim Blazek 	2012-05-02

    better add WCS layer icon

volayaf@gmail.com 	2012-05-02

    fixed #5514

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@163 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-05-02

    fixed #5522 and #5529

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@162 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-05-02

    WCS 1.0 GetCapabilities parser

Werner Macho 	2012-05-02

    translation update: cs_CZ by Jan

Tim Sutton 	2012-05-02

    Applied patch from Etienne to make gzip/zip tests run under linux

Marco Hugentobler 	2012-05-01

    Python binding for raster renderer and resampler classes

Radim Blazek 	2012-05-01

    OWS meta provider; represents all OWS services under single connection in browser

Radim Blazek 	2012-05-01

    new icons for vector layer and OWS data source

Alexander Bruy 	2012-05-01

    SpatiaLite support in Select by Location tool (fix #5264)

Alexander Bruy 	2012-05-01

    fix duplicate control names

Nathan Woodrow 	2012-04-30

    Add convert to subclass for QgsGpsConnection for python bindings

Merge: adb8390 a859c62
Tim Sutton 	2012-04-30

    Merge pull request #131 from etiennesky/zip_qml2

    [TEST][API]improved qml support for zip layers and more tests

Merge: 69ef4de bba09a1
Tim Sutton 	2012-04-30

    Merge pull request #133 from NathanW2/zoombug

    [TEST]Add fix for bad zoom using pen PCs; Add tests

Radim Blazek 	2012-04-30

    WFS adapted to QgsOWSConnection, remaining functionality from QgsWFSConnection moved to QgsWFSCapabilities

Tim Sutton 	2012-04-30

    Added developers meeting pic in help -> about -> developers as per Paolo's request

Tim Sutton 	2012-04-30

    Copied over splash from old 1.8 branch

Tim Sutton 	2012-04-30

    Changed version to 1.8

Alexander Bruy 	2012-04-29

    allow export vector data to ESRI FileGDB

Alexander Bruy 	2012-04-29

    multipoint geometry support in Field Calculator (fix #5513)

Alexander Bruy 	2012-04-29

    add multipoint geometry support to Export/Add geometry column. Thanks to
    Salvatore for investigating issue

Alexander Bruy 	2012-04-29

    remove unused signal

Werner Macho 	2012-04-29

    translation update: pl by Robert and gl by Xan

Nathan Woodrow 	2012-04-28

    Add fix for bad zoom using pen PCs; Add tests

Radim Blazek 	2012-04-28

    WCS data items (browser support)

Radim Blazek 	2012-04-28

    WCS gis theme icons

Radim Blazek 	2012-04-28

    show correct service in connection title

Radim Blazek 	2012-04-28

    gis theme add WCS layer icon

Radim Blazek 	2012-04-28

    explanation of various bugs in GDAL and Mapserver

Juergen E. Fischer 	2012-04-27

    gdal provider: fix debug output

Alexander Bruy 	2012-04-27

    update icon for touch action

volayaf 	2012-04-27

    added some more fusion algorihtms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@161 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-27

    changed copy method for algorithms
    fixed #5450
    started added FUSION lidar tools

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@159 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-04-26

    WCS - better versions and CRS

volayaf 	2012-04-26

    added "advanced parameters" button in parameters panel

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@158 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Alexander Bruy 	2012-04-26

    add ESRI FileGDB driver to OGR drivers list

volayaf 	2012-04-26

    changed saga algorithm to support extent parameter

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@157 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-04-26

    WCS better version support

Radim Blazek 	2012-04-26

    better hide unused widgets

Radim Blazek 	2012-04-26

    check if provider is valid

Alexander Bruy 	2012-04-26

    also update icons for r.mapcalc and r.mapcalculator GRASS modules

Alexander Bruy 	2012-04-26

    Icons day. New icon for Raster Terrain analysis plugin, thanks again
    Robert!

Alexander Bruy 	2012-04-26

    new icon for Interpolation plugins. Thanks, Robert!

Alexander Bruy 	2012-04-26

    update Pan To Selected icon

Alexander Bruy 	2012-04-26

    icon from Robert for Raster Calculator

Alexander Bruy 	2012-04-26

    add icon created by Robert to Zonal statistics plugin

Alexander Bruy 	2012-04-26

    new icon from Robert for Tile Index command

Tim Sutton 	2012-04-25

    Added anomaly images for i386 natty nightly builds that are failing

volayaf 	2012-04-25

    code cleaning
    improved nviz link
    added 2 more algs to lastools

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@153 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-04-25

    WCS support

Radim Blazek 	2012-04-25

    initial WCS support based on GDAL

Radim Blazek 	2012-04-25

    OWS common classes

volayaf 	2012-04-25

    iterative execution now works without problems
    changed names of providers in settings

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@152 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-25

    added customizable parameter check before launching algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@151 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-25

    added addfield and fieldcalculator algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@150 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Etienne Tourigny 	2012-04-24

    test that styles are loaded from qml files outside zip

Etienne Tourigny 	2012-04-24

    fix .qml file loading in /vsigzip and /vsizip items

Etienne Tourigny 	2012-04-24

    load default style if provider is gdal and if no style was given

Etienne Tourigny 	2012-04-24

    add more QgsZipItem tests and data

Juergen E. Fischer 	2012-04-24

    bring back internal spatialite for Debian squeeze and Ubuntu lucid, maverick, natty and oneiric

Juergen E. Fischer 	2012-04-24

    test fixes on windows

Juergen E. Fischer 	2012-04-24

    quazip: fix warnings and drop OF macro

Merge: 2978bfa cd408bc
Tim Sutton 	2012-04-24

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-24

    Added anomaly images for failing tests on theodwyn-squeeze-amd64

volayaf 	2012-04-24

    Made provider names more descriptive

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@149 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Alexander Bruy 	2012-04-24

    remove About dialog from Georeferencer plugin

Alexander Bruy 	2012-04-24

    remove About dialog from RoadGraph plugin as discussed in ML

volayaf 	2012-04-24

    added some i.* to grass, some new tools to lastools and nviz


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@148 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-24

    fix #5481

Juergen E. Fischer 	2012-04-24

    fix spatialindex requirement

volayaf 	2012-04-24

    Added run button to modeler
    Added tool to define grass region on canvas

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@147 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-24

    fixed 5458
    added crs param to gdal warp

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@146 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-04-24

    Added more anomalies for nightly tests on i386 precise

Juergen E. Fischer 	2012-04-24

    more test fixes on windows

Juergen E. Fischer 	2012-04-24

    fix regression992 test crash

Juergen E. Fischer 	2012-04-23

    fix german field calculator translation

volayaf 	2012-04-23

    added more functionality to iterative execution
    fixed minor bugs

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@145 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-23

    fix ziplayer test for GDAL<1.8

Juergen E. Fischer 	2012-04-23

    case insensitive vsizip/vsigzip support

Juergen E. Fischer 	2012-04-17

    fix #4805:
    - drop internal spatialite and internal spatialindex
    - drop support for debian lenny (no system spatialindex/spatialite there)

Tim Sutton 	2012-04-23

    Added anomaly files from nightly build server

julien.malik@gmail.com 	2012-04-23

    [otb] keep track of algorithm key

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@144 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-23

    added #5460

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@143 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-23

    added option not to close dialog after execution
    added help editing dialogs

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@142 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 71d0e4d ed8c3a1
Nathan Woodrow 	2012-04-22

    Merge pull request #129 from szekerest/master

    MSSQL: Fix query builder support

szekerest 	2012-04-22

    MSSQL: Fix query builder support (fixes #5401)

Juergen E. Fischer 	2012-04-22

    deprecated QgsCoordinateReferenceSystem::equals: as it might return false
    eventhough the proj.4 string is equal. PROJ.4 string isn't unique to
    CRSes.

volayaf@gmail.com 	2012-04-22

    Added feature request #5439

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@141 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-04-22

    added feature request #5444. Also added to scripts

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@140 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-04-22

    fixed #5435

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@139 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-22

    fix windows build

Martin Dobias 	2012-04-22

    Fix #5344 - square symbol not selectable

Juergen E. Fischer 	2012-04-22

    test fixes:
    - run xvfb in 96 dpi mode
    - indentation update (including tests)
    - fix running tests from build directory

Juergen E. Fischer 	2012-04-21

    raise field precision limit to 15

Juergen E. Fischer 	2012-04-21

    add running GDAL/OGR version to about box

Werner Macho 	2012-04-21

    added Translator name

Marco Hugentobler 	2012-04-21

    Remove about dialog in db manager

Marco Hugentobler 	2012-04-21

    Remove about dialog from gdal tools

William Kyngesburye 	2012-04-21

    handle crssync in bundling stage

volayaf@gmail.com 	2012-04-21

    added tooltip support

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@138 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-21

    followup 78c2a2b803

volayaf 	2012-04-21

    removed ? button in parametersdialog

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@137 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-21

    debian package: remove pyspatialite from python-qgis

Juergen E. Fischer 	2012-04-21

    cmake: rename GIT to GITCOMMAND

Juergen E. Fischer 	2012-04-21

    remap attribute by name not index on paste (fixes #5425)

volayaf 	2012-04-20

    changed size of close buttons

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@136 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-20

    'shorten' last commit

Juergen E. Fischer 	2012-04-20

    - run tests with temporary copy of srs.db
    - sync srs.db in a single transaction

volayaf 	2012-04-20

    Added PrameterCRS and CRS selectors

    Fixed GRASS bug when using v.* algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@135 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-20

    debian packaging: pyspatialite fix

volayaf 	2012-04-20

    changed grass description. Now one grass algorithm can be splitted in several sextante ones

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@134 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-20

    addded folder slection parameter
    Added support for new parameters in r and python scripting providers

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@133 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-20

    use install rpath only on apple

Juergen E. Fischer 	2012-04-19

    wms provider: handle content type case insensitive

Juergen E. Fischer 	2012-04-19

    debian packaging: set build name for cdash

Juergen E. Fischer 	2012-04-19

    run crssync on coordinate system test and run osgeo4w test as nightly

brushtyler 	2012-04-19

    use output field param's value executing gdal_polygonize, change default output field name to DN (fix #5416)


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@132 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-19

    fixed minor bugs in ftools and in ParametersPanel

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@131 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-19

    [otb] fix OutputFile declaration and clean up when no default value available

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@130 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-19

    [gui] optional layer bug. NOT_SELECTED was not declared in self

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@129 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-19

    [otb] recognize linux default paths to avoid configuration

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@128 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-04-19

    translation update: gl_ES by Xan

julien.malik@gmail.com 	2012-04-19

    [otb] set default value for ParameterSelection

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@127 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-19

    [otb] use new ParameterFile and OutputFile type

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@126 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-19

    [otb] more user friendly naming of algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@125 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-19

    [core] missing import, lost grass and otb on linux

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@124 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-19

    [otb] classify application with their tags

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@123 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-19

    Added ParameterFile and OutputFile
    Added LasTools provider and a few algorithms (still quite a few left, to be added soon)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@122 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-04-19

    Move deprecated tag from addMapLayers to addMapLayer where it was originally intended to go. Small updates to comments.

julien.malik@gmail.com 	2012-04-19

    [grass] broken doc detection on windows when fixing linux

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@121 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-19

    osgeo4w: fix quazip support

Juergen E. Fischer 	2012-04-19

    Revert d7e8ae18 and d637c677c (fixes #5407, #5409 and #5410)

Juergen E. Fischer 	2012-04-18

    debian packaging: run tests with xvfb and upload results to dashboard

Merge: 7bd9240 4993675
Tim Sutton 	2012-04-18

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-18

    Added unit test to verify zip layers can be opened

Marco Hugentobler 	2012-04-18

    More load raster style fixes

Werner Macho 	2012-04-18

    update TRANSLATORS file

Marco Hugentobler 	2012-04-18

    Enable load style for raster renderers

Tim Sutton 	2012-04-18

    Added zipped shp for testing zip driver

Merge: ad39a42 0b082fb
Tim Sutton 	2012-04-18

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-18

    Added provenance information for quazip.

volayaf 	2012-04-18

    added some stuff to iterating execution

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@120 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-18

    postgres provider fix: layers with incomplete geometry type/srid/pk data could not be selected for addition

volayaf 	2012-04-18

    some code cleaning
    changed style of parameters dialog when called from toolbox
    added iterate buttons (functionality not yet implemented)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@119 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-04-18

    Use project file transformation for raster symbology also when loading from qml

Werner Macho 	2012-04-18

    translation update: ru by Artem

volayaf 	2012-04-18

    fixed #5384

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@118 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-18

    changed miinor bug in spinner when using a integer numerical value

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@117 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-18

    improved kriging description to avoid wrong usage

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@116 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-04-18

    adding korean translator name

Juergen E. Fischer 	2012-04-18

    indentation update

Merge: 70a2a4a 6248295
Tim Sutton 	2012-04-18

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: fc373b3 e1c934a
Tim Sutton 	2012-04-17

    Merge pull request #127 from mhugo/copy_paste_styles

    [FEATURE] Copy / paste of styles

Hugo Mercier 	2012-04-16

    Make the style copy/paste functionality closer to the geometry copy/paste implementation

Hugo Mercier 	2012-04-15

    Implement basic copy/paste of styles between layers

Merge: 213a1bc e5775e7
Tim Sutton 	2012-04-17

    Merge pull request #114 from etiennesky/providers_browser2

    [FEATURE] gdal/ogr providers: optimizations and .zip / .gz file support - fixed

Tim Sutton 	2012-04-18

    Added some extra output to provide some hints for creating a new anomaly file

Tim Sutton 	2012-04-17

    Added anomaly checks based on test run http://dash.orfeo-toolbox.org/testDetails.php?test=9375735&build=81442

Merge: 2ad635a 7221eaa
Tim Sutton 	2012-04-17

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-17

    More useful dash messages for render checker images

Tim Sutton 	2012-04-17

    Added anomaly for ubuntu 12.04 buffer render

Merge: 205a4b3 506d829
Tim Sutton 	2012-04-17

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-04-17

    fix dbmanager resource dependency and some other warnings

Juergen E. Fischer 	2012-04-17

    german translation update

julien.malik@gmail.com 	2012-04-17

    [grass] fix guessing of doc folder for linux

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@115 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

pcav 	2012-04-17

    Updated IT GUI translation

Werner Macho 	2012-04-17

    translation update: string update db_manager

volayaf 	2012-04-17

    added default value for ParameterSelection



    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@114 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-04-17

    update TRANSLATORS with every string update

volayaf 	2012-04-17

    fixed type in saga description

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@113 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-17

    added delete model action (#5392)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@112 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-17

    show help button now appears only if a help file is available (#5388)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@111 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-17

    remove -z modifier when exproting to shapefile (bug#5394)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@110 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-17

    fixed bug when deleting elements

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@109 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-17

    added close button to about dialog

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@108 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Radim Blazek 	2012-04-17

    QgsDataSourceURI used for WMS provider, all params are now encoded in URI, removed WMS specific functions from QgsRasterLayer and QgisAppInterface

Radim Blazek 	2012-04-17

    added generic mode

Alexander Bruy 	2012-04-17

    fix About dialog in DB Manager

Alexander Bruy 	2012-04-17

    fix broken Points in polygon (fix #5389)

volayaf 	2012-04-17

    Improved SAGA descriptions (difference between integer and float number params)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@107 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-04-16

    translation update: pl by polish team

Werner Macho 	2012-04-16

    translation update: cz by Jan

Juergen E. Fischer 	2012-04-16

    debian packaging: followup changelog rename

volayaf 	2012-04-16

    added contributor names to about.htm

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@106 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-16

    fixed indentation in OTBAlgorithm

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@105 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-04-16

    Fix for bug #5354 (scalebar problems in print composer)

volayaf 	2012-04-16

    fixed grass launching. Should work now without problems. Still have to write something to get output info to update progress bar

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@104 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-16

    fixed indentation in OTBAlgorithm

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@103 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-16

    fixed bug detecting SAGA installed in linux

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@102 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-16

    fixed bug #5361
    changed saga and grass description filenames

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@101 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Giuseppe Sucameli 	2012-04-16

    [FEATURE] add DB Manager plugin

Giuseppe Sucameli 	2012-04-16

    import vector layer: don't clear the error message if too many errors occur

Alexander Bruy 	2012-04-16

    correctly handle user defined CRSes (fix #5257)

Marco Hugentobler 	2012-04-16

    Fix beforeVertex - afterVertex mistake for linear referencing

pcav 	2012-04-16

    Fixed minor inconsistencies in strings (requires regenerating files for translation)

Hugo Mercier 	2012-04-16

    Make the style copy/paste functionality closer to the geometry copy/paste implementation

D'Hont René-Luc 	2012-04-16

    Using title and abstract of vector layer in WFS capabilities

volayaf@gmail.com 	2012-04-16

    Added some checks for external apps configuration

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@100 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

pcav 	2012-04-16

    Fixed IT Sponsors page

Tim Sutton 	2012-04-16

    Anomalies for tests so that they run on ubuntu 12.04

Tim Sutton 	2012-04-16

    Anomalies for tests so that they run on ubuntu 12.04

Giuseppe Sucameli 	2012-04-15

    import vector layer: fix override layer option (follow f8d5d432)

pcav 	2012-04-16

    More IT GUI translation

pcav 	2012-04-16

    Almost completed IT GUI translation

Werner Macho 	2012-04-16

    flag and language file fixes

Juergen E. Fischer 	2012-04-15

    make tests & qgis work from the build directory (python still doesn't)

Werner Macho 	2012-04-15

    translation update: fix upstream

Werner Macho 	2012-04-15

    small typo fixes for consistency

Merge: e51dd2c a39d0b7
Nathan Woodrow 	2012-04-15

    Merge pull request #126 from szekerest/master

    MSSQL: Support non spatial tables in browser dock

szekerest 	2012-04-15

    MSSQL: Support non spatial tables in browser dock (fixes #5334)

Merge: 8f6d941 9da981b
pcav 	2012-04-15

    Merge branch 'master' of github.com:qgis/Quantum-GIS

pcav 	2012-04-15

    Updated IT GUI translation.

Giuseppe Sucameli 	2012-04-15

    add delete layer action to PG data items

Giuseppe Sucameli 	2012-04-15

    allow PG provider to delete a layer

Tim Sutton 	2012-04-15

    Better hash comparison implementation for render checker

Werner Macho 	2012-04-15

    fix estonian flag

Werner Macho 	2012-04-15

    translation update: all strings .. prepare 1.8

Merge: c25a186 8332f32
Tim Sutton 	2012-04-15

    Merge pull request #125 from lynxlynxlynx/master

    ignore system setup errors in the regression992 test

julien.malik@gmail.com 	2012-04-15

    [grass] fix #5359

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@99 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Hugo Mercier 	2012-04-15

    Implement basic copy/paste of styles between layers

Juergen E. Fischer 	2012-04-15

    run Experimental test target on nightly build

Werner Macho 	2012-04-15

    rename our CHANGELOG to NEWS and add new ChangeLog according to GNU Standards

Juergen E. Fischer 	2012-04-15

    Revert accidentally commited parts of 6b7f594

Juergen E. Fischer 	2012-04-15

    workaround deprecation warnings in MSVC for GEOWkt global

Alexander Bruy 	2012-04-15

    fix typo

Alexander Bruy 	2012-03-28

    remove buttons for saving contrast enhancement, std dev. and band
    combination from raster layer properties dialog

Alexander Bruy 	2012-02-11

    use standard deviations only when requested (fix #4917)

Alexander Bruy 	2012-02-11

    move some raster settings such as std. dev and band combination to
    general QGIS settings

Giuseppe Sucameli 	2012-04-15

    GdalTools: display a friendly message when python-gdal is missing

Juergen E. Fischer 	2012-04-15

    disable projection selection in project properties, while OTFP is off

Jaka Kranjc 	2012-04-15

    regression992 test: only check the actual regression

    this test would fail if GDAL doesn't have any jpeg2000 support compiled in

Juergen E. Fischer 	2012-04-15

    cleaner fix for #5355: remove shortcuts to destroyed actions automatically

Giuseppe Sucameli 	2012-04-15

    update the "invert color" checkbox status opening the raster propery dialog (fix #4423)

Giuseppe Sucameli 	2012-04-15

    in import vector layer fix overwrite option and report provider errors

Merge: dca998f 0dc5080
Tim Sutton 	2012-04-15

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-15

    Show anomaly hashes in test reporting

Juergen E. Fischer 	2012-04-15

    fix #5355: remove touch action before registering the shortcuts list

Tim Sutton 	2012-04-15

    Added anomalies for nimbus host in test suite

Tim Sutton 	2012-04-15

    Use explicit qt libs for tests

Tim Sutton 	2012-04-15

    Fixes for coordinate ref sys test errors on Werner's machine

Tim Sutton 	2012-04-14

    Added additional diagnostics for why stripped wkt compare is failing on some machines.

Tim Sutton 	2012-04-14

    Don't use ugly old std::out to send info to CDash

Merge: aab9976 847650e
Tim Sutton 	2012-04-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-14

    Upload test images to cdash

Richard Duivenvoorde 	2012-04-14

    Set measureUnits also for myFirstLayer (otherwise wrong scale is shown)

Juergen E. Fischer 	2012-04-14

    [API] fix #5014

Marco Hugentobler 	2012-04-14

    Project file conversion for freakout shader

Marco Hugentobler 	2012-04-14

    Legend items for singleband gray renderer

Martin Dobias 	2012-04-14

    Always create favourites item + expand the favourites item in dock widget

Tim Sutton 	2012-04-14

    Fixed bug with signal being emitted declaring layers were added but having a zero length layer list

Merge: 4097ed5 5598082
Tim Sutton 	2012-04-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-14

    Fixed issue with spatialite assigning incorrect field types when creating columns

Marco Hugentobler 	2012-04-14

    Raster legend for paletted renderer

Marco Hugentobler 	2012-04-14

    Modify raster legend mechanism to work with raster renderers

julien.malik@gmail.com 	2012-04-14

    [otb] add options for saving dem options

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@98 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Werner Macho 	2012-04-14

    forgot danish language

Merge: b995abf 6718000
Tim Sutton 	2012-04-14

    Merged conflicts

Tim Sutton 	2012-04-14

    Added ignore file for personal ctest options

Werner Macho 	2012-04-14

    forgot danish language

Marco Hugentobler 	2012-04-14

    Add code for add/delete/sort buttons in singleband pseudocolor widget

Werner Macho 	2012-04-14

    also ignore .qm file in i18n

Werner Macho 	2012-04-14

    Displaying Translators Countries and Languages in a nicer way

Tim Sutton 	2012-04-14

    Inital implementation of test submission to CDash using OTB Dash server. Use make Experimental to submit your tests.

Marco Hugentobler 	2012-04-14

    More project file conversion for multiband color

Marco Hugentobler 	2012-04-14

    More raster project file transformation

Marco Hugentobler 	2012-04-14

    Project file conversion for paletted color

Tim Sutton 	2012-04-14

    Fix wanings about duplicated grid layout

Merge: a3fea94 5148d5f
Tim Sutton 	2012-04-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 8c3f2a1 0a2fdb6
Werner Macho 	2012-04-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Werner Macho 	2012-04-14

    now add flags for real

julien.malik@gmail.com 	2012-04-14

    [otb] fix choice parameter

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@97 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-14

    [otb] remove last empty choice

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@96 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-14

    debian packaging update: switch from test to check target for tests

Juergen E. Fischer 	2012-04-14

    show GDAL & PROJ version in CRS test

Werner Macho 	2012-04-14

    inserting flags for language codes

Merge: 4665ac0 fa07903
Tim Sutton 	2012-04-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-14

    Fix bug with test renderer where it was saving diff images to the wrong place

Juergen E. Fischer 	2012-04-14

    Revert "fixed two SIP warnings about deprecated syntax" as it
    breaks builds with older SIP versions (Debian squeeze, Ubuntu lucid and
    maverick)

julien.malik@gmail.com 	2012-04-14

    [otb] handle not filled string parameters

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@95 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-14

    fix modeler (from G. Sucameli)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@94 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-14

    [gdal] fix gdal_merge (from G. Sucameli)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@93 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-14

    [gdal] fix polygonize (at least for linux)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@92 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-04-14

    Finished first pass implementation for anomaly testing in renderchecker.

Marco Hugentobler 	2012-04-14

    Project file conversion for singleband pseudo color

Tim Sutton 	2012-04-14

    Moved control images one per directory and updated render checker to generate paths and filenames more cleanly. All tests pass for me.

Merge: cfcf12f 1e193c3
Tim Sutton 	2012-04-13

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-13

    Small core formatting changes only

Tim Sutton 	2012-04-13

    Refactored tests using control images to get control image path from renderchecker.

julien.malik@gmail.com 	2012-04-13

    [otb] update description after previous commits

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@91 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] need to specify vector layer type

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@90 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] None not allowed for default value

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@89 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] add multiple input support

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@88 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] add quotes around command parameter

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@87 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 0358ddc 15f1485
Martin Dobias 	2012-04-13

    Merge pull request #121 from lynxlynxlynx/master

    fix for one abort and a few SIP compile warnings

Merge: a65ded0 27fe004
Tim Sutton 	2012-04-13

    Merge pull request #117 from dakcarto/master

    Fix for source or build directory paths that contain spaces (on Mac).

Merge: 7f29572 5310b5b
Tim Sutton 	2012-04-13

    Merge pull request #122 from mbernasocchi/android

    Android

volayaf@gmail.com 	2012-04-13

    Added diferentiation between int and float values
    extent selector more or less working now
    changed version to 1.0.3

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@86 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Bernasocchi 	2012-04-13

    added null pointer protection

Tim Sutton 	2012-04-13

    Moved test images into their own folder

Marco Bernasocchi 	2012-04-13

    remove the touch button if HAVE_TOUCH=0

Jaka Kranjc 	2012-04-13

    addVectorLayers: return early if no layers were succesfully added

    fixes an abort later on if all the layer loadings failed for some reason,
    like missing the shx file for a shapefile.

Marco Hugentobler 	2012-04-13

    SCALE parameter for GetLegendGraphic

Jaka Kranjc 	2012-04-13

    fixed two SIP warnings about deprecated syntax

Marco Hugentobler 	2012-04-13

    Rename variable from beforeIndex to afterIndex

julien.malik@gmail.com 	2012-04-13

    [otb] use parameter name instead of description

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@85 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-04-13

    Improved extension selector

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@84 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    fix command launching for otb and gdal

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@83 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] fix application descriptors

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@82 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] fix application descriptor generator for Mandatory/optional management

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@81 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    add pyc to gitignore

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@80 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] add .gitignore file

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@79 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] add description for otb modules

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@78 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] add helper script

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@77 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

julien.malik@gmail.com 	2012-04-13

    [otb] fix command launching for linux

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@76 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Bernasocchi 	2012-04-13

    remove qsplashscreen on android

Marco Hugentobler 	2012-04-13

    Apply patch from ticket #5348 provided by René-Luc D'Hont

volayaf@gmail.com 	2012-04-13

    Started adding an auto configuration mechanism

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@75 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-04-13

    Fix contrast enhancement buttons in raster branch

Marco Hugentobler 	2012-04-12

    Project file conversion for single band pseudo color

Marco Hugentobler 	2012-04-12

    Project conversion code for singleband gray renderer

szekerest 	2012-04-12

    MSSQL: Add handling of default values (fixes #5316)

volayaf@gmail.com 	2012-04-13

    Made OTB configurable also in linux
    Added extent parameter

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@74 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 4da0c03 67c77e5
Tim Sutton 	2012-04-12

    Merged from master into raster resampler branch

volayaf@gmail.com 	2012-04-12

    Added first working OTB algorithm
    Added file selector for vector and raster layers
    fixed bug with numbers and string in modeler dialog
    added RenderingStyleFilePanel

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@73 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-04-12

    started raster layer exporting mechanism


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@72 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: 67c77e5 be8f135
Nathan Woodrow 	2012-04-12

    Merge pull request #118 from szekerest/master

    Fix for issues with sql server geography type

szekerest 	2012-04-12

    Fix for issues with sql server geography type (fixes #5229 fixes #5302)

Etienne Tourigny 	2012-04-11

    add detection of libz (optional, needs update for win32)

volayaf@gmail.com 	2012-04-11

    relocated otb folder (wrongly imported in the previous commit)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@71 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-04-11

    Did some R and GRASS testing and debugging
    Added the OTB folder with a skeleton of OTB alg provider

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@70 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-11

    added some gdal algs

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@69 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

dakcarto 	2012-04-10

    Fix for source or build directory paths that contain spaces.

dakcarto 	2012-04-10

    Fix for source or build directory paths that contain spaces.

dakcarto 	2012-04-10

    Fix for source or build directory paths that contain spaces.

dakcarto 	2012-04-10

    Fix for source or build directory paths that contain spaces.

dakcarto 	2012-04-10

    Fix for source or build directory paths that contain spaces.

volayaf 	2012-04-10

    did some work on the gdal bindings

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@68 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

dakcarto 	2012-04-09

    Added SIP generation to build/python directory of API files for QScintilla code completion/call tips.

    Signed-off-by: Tim Sutton 

Werner Macho 	2012-04-09

    translation update: et by veiko

Juergen E. Fischer 	2012-04-09

    fix #5333

Tim Sutton 	2012-04-09

    Added make-no-x options (experimental) for running unit tests on a headless server.

Tim Sutton 	2012-04-08

    Better diagnostics for CRS tests debug output

William Kyngesburye 	2012-04-08

    OS X install cleanup, fill in more dependencies;
    adjust header styles for better readability

Tim Sutton 	2012-04-08

    Added verbose output on test failure to make check command

Tim Sutton 	2012-04-08

    Added test datasets aux.xml files for what its worth

Tim Sutton 	2012-04-08

    Revise script to get rid of orig files

Tim Sutton 	2012-04-08

    Replaced raster test images so all tests pass

Merge: bbf471e 051749a
Tim Sutton 	2012-04-08

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-08

    Renderer tests passing now

Juergen E. Fischer 	2012-04-08

    raw only won't work with GPSes that don't speak NMEA (should fix #4050)

William Kyngesburye 	2012-04-07

    OS X install update - osgearth and globe plugin

Juergen E. Fischer 	2012-04-07

    fix #5331

William Kyngesburye 	2012-04-07

    Add bundling of osg/osgEarth for OS X app

William Kyngesburye 	2012-04-07

    Don't bundle PyQwt if not present in system

William Kyngesburye 	2012-04-07

    Qt bundling cleanup

Tim Sutton 	2012-04-07

    Use more appropriate global for createFromId CRS test

Merge: 8ae8e15 a82a243
Tim Sutton 	2012-04-07

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-07

    Emit layer added signals in addMapLayers method of layer registry

Nathan Woodrow 	2012-04-07

    Remove/Add layers to snapping dialog.  Fixes #5318

Tim Sutton 	2012-04-07

    Update control image and qml for map renderer test - all renderer tests now pass for me.

Juergen E. Fischer 	2012-04-07

    fix add/remove layers connections (follows up f9ed6d4)

Tim Sutton 	2012-04-07

    Changed the way equality tests are done in qgscoordinatereference system. Simply comparing WKT's is not effective since the same CRS can be expressed in different ways. Now we compare the authid (which may have some side effects but probably less than the old system. All qgscoordinatereferencesystem tests pass now.

Tim Sutton 	2012-04-07

    1 remaining test fails in CRS tests

Tim Sutton 	2012-04-07

    One CRS test failure left

Tim Sutton 	2012-04-07

    3 coordinate system test failures left

Tim Sutton 	2012-04-06

    [BACKPORT] in progress test updates / fixes

Tim Sutton 	2012-04-06

    [BACKPORT] Naming consistency for GEOWkt global (renamed to GEOWKT)

giohappy 	2012-04-06

    Update src/core/qgsdistancearea.cpp

Marco Hugentobler 	2012-04-06

    Zoom to layer extent when adding the first layer

volayaf 	2012-04-06

    improved table usage.Added better transparent layer handling for external apps.Started gdal bindings

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@65 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-05

    also get crs record count readonly (follows up 9154e4e)

William Kyngesburye 	2012-04-04

    fix bd916b1

William Kyngesburye 	2012-04-04

    OS X install updates

Juergen E. Fischer 	2012-04-05

    indentation update

Merge: d830d53 ae20835
Tim Sutton 	2012-04-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-04-05

    [BACKPORT] to 1.8. Remove deprecated use of map layer registry addLayer and removeLayer elsewhere in code base

Juergen E. Fischer 	2012-04-05

    german translation update

Juergen E. Fischer 	2012-04-04

    show acres after sq ft and before sq mile

szekerest 	2012-04-04

    MSSQL:Improve handling of datetime types (fixes #5283)

Tim Sutton 	2012-04-05

    [BACKPORT] to 1.8. Further improvements to multiple layer removal in one operation support for the registry and apply suggested improvements from Jürgen.

Werner Macho 	2012-04-04

    translation update: es by Carlos

Juergen E. Fischer 	2012-04-04

    postgres provider: use same precision in st_makeenvelope and BOX3D

Marco Hugentobler 	2012-04-04

    Implement readXML for singleband pseudo color

Marco Hugentobler 	2012-04-03

    Implement readXML for singleband gray renderer

Marco Hugentobler 	2012-04-03

    Implement readXML for singleband color data renderer

Marco Hugentobler 	2012-04-03

    Implement readXML for multiband color renderer

Marco Hugentobler 	2012-04-03

    Avoid multiple redraws if loading projects

volayaf 	2012-04-03

    added check for macOS when opening help manual

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@62 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-03

    Did some more work on GRASS descriptions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@61 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-04-03

    updated example provider

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@60 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-03

    don't use -Wl,--no-undefined on OSX

volayaf 	2012-04-03

    Polished some GRASS descriptions
    Fixed small bug when handling selection parameters
    added statistical values to numerical value selector

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@58 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-04-03

    debian packaging update

Juergen E. Fischer 	2012-04-02

    move grassprovider to grass library (might fix #3999)

Marco Hugentobler 	2012-04-02

    Fix check/unchek of groups in TOC (ticket #5013)

Etienne Tourigny 	2012-04-02

    skip .shp.xml and .aux.xml files in ogrdataitem

Etienne Tourigny 	2012-03-25

    add option to bypass dataset scanning in browser dock

Etienne Tourigny 	2012-03-24

    add support for reading datasets inside zip file in browser using quazip

Etienne Tourigny 	2012-03-24

    add quazip for zip file read support

Etienne Tourigny 	2012-03-24

    add preliminary support for GDAL/OGR VSIFileHandler (.zip and .gz files) - full support requires new QgsCollectionItem class

Etienne Tourigny 	2012-03-24

    cache gdal sublayers list for subsequent access

Juergen E. Fischer 	2012-04-02

    open CRS database readonly by default (fixes permission timeouts on windows)

szekerest 	2012-04-01

    Improve handling of estimated metadata (fixes #5227 fixes #5252)

Marco Hugentobler 	2012-04-01

    [FEATURE]: possibility to set MaxWidth and MaxHeight for GetMap request

Marco Hugentobler 	2012-04-01

    Fix direction for eventLayer offset

Werner Macho 	2012-04-01

    translation update: string update for all languages on request

Marco Hugentobler 	2012-04-01

    Implement readXML for paletted raster renderer

volayaf 	2012-04-01

    Fixed bugs #5262, #5263, #5265 , #5266, #5267
    Added numeric value selector
    improved grass provider


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@57 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-04-01

    writeXML for single band pseudo color renderer

Giuseppe Sucameli 	2012-03-31

    [FEATURE] allow multiline feature actions

Tim Sutton 	2012-04-01

    [API] Added registry support for addition and removal of multiple layers in one operation (and notification thereof). Maintains API compatibility with single layer add/remove operations.

Juergen E. Fischer 	2012-03-31

    fix warnings

Tim Sutton 	2012-03-31

    Mark unused var

Marco Hugentobler 	2012-03-31

    Intendention update and remove legacy code

Merge: c4aed92 dd9b98a
Marco Hugentobler 	2012-03-31

    Merge branch 'linear_referencing'

Marco Hugentobler 	2012-03-31

    [FEATURE]: geometry offset for event layer function

Marco Hugentobler 	2012-03-31

    writeXML method for single band pseudo color renderer

Juergen E. Fischer 	2012-03-31

    german translation update

Juergen E. Fischer 	2012-03-31

    fix gcc 4.7 warnings/errors

Merge: 401aea2 76ba1f6
Tim Sutton 	2012-03-31

    Merge pull request #112 from mbernasocchi/android

    Android goodies (touch maptool, with-touch mode, ui edits, ...)

Merge: be4d125 8966899
Tim Sutton 	2012-03-31

    Merge pull request #111 from etiennesky/ftools1

    Ftools vector grid improvements

Merge: 785f9ae 157541e
Tim Sutton 	2012-03-31

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Etienne Tourigny 	2012-03-25

    group favourites in top-level item (when there are 5 or more favourites) and add favourites icon

    Signed-off-by: Tim Sutton 

Etienne Tourigny 	2012-03-26

    sort items in browser dock: sort items by type, so directories are before data items, sort top-level provider items by name

    Signed-off-by: Tim Sutton 

Etienne Tourigny 	2012-03-24

    add missing icons for raster and vector collections in themes/default

    Signed-off-by: Tim Sutton 

Etienne Tourigny 	2012-03-24

    add simple layer properties dialog to browser dock (source, provider and metadata) ; ui tweaks in raster properties dialog

    Signed-off-by: Tim Sutton 

Etienne Tourigny 	2012-03-24

    browser: add collapse all button

    Signed-off-by: Tim Sutton 

Etienne Tourigny 	2012-03-24

    browser and dataitems - show wait cursor when loading

    Signed-off-by: Tim Sutton 

Tim Sutton 	2012-03-31

    [BACKPORT] Api update - added signlas for legend events and made them available to plugin api. Patch courtesy of Etienne Tourigny  and closes pull request 107

Etienne Tourigny 	2012-03-30

    prefer non-deprecated crses (fixes #4355)

Juergen E. Fischer 	2012-03-30

    fix nightly debian build

Marco Hugentobler 	2012-03-30

    Implement writeXML method for single band data renderer

Alexander Bruy 	2012-03-30

    better wording for error message

Tim Sutton 	2012-03-30

    Mark unused variables to prevent compiler warnings if using older geos.

Juergen E. Fischer 	2012-03-29

    Revert 02749e9 (will be fixed in GDAL package).

volayaf 	2012-03-29

    added recent algs list
    tested and improved saga resampling
    added non-spatial calculator
    added mechanism to connect external plugins
    Added example of provider plugin(still unfinished)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@56 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-03-29

    osgeo4w: set GDAL_DRIVER_PATH again (GDAL looks in apps/qgis-dev/bin/gdalplugins otherwise)

Juergen E. Fischer 	2012-03-29

    fix srs validation from threads

Juergen E. Fischer 	2012-03-27

    fix warnings

Juergen E. Fischer 	2012-03-27

    debian packaging update

Alexander Bruy 	2012-03-29

    fix #5257

Marco Hugentobler 	2012-03-29

    Implement writeXML method for singleband gray renderer

Radim Blazek 	2012-03-29

    faces

Marco Bernasocchi 	2012-03-28

    added TODO find a better default fontsize

    adding suggestion to how to detect font size

Marco Bernasocchi 	2012-03-20

    defaulting to symbology V1 on android (workaround to http://hub.qgis.org/issues/5170)

Marco Bernasocchi 	2012-03-01

    added close button to attribute table

Marco Bernasocchi 	2012-02-29

    removing qDebug() from compass plugin

Marco Bernasocchi 	2012-02-29

    adding touch maptool that allows panning, pinch zooming, double tap zoomWithCenter, twofinger tap zoomOut

    fixed toolbar button functionality

Marco Bernasocchi 	2012-02-23

    adding a touch mode if qt >=4.6 (allows qt5) this defaults to on for android and to off for the rest. can be requested by -DWITH_TOUCH

    allow qt 5

Tim Sutton 	2012-03-28

    [BACKPORT] Enable gdaltools by default on all platforms

Merge: 5333b74 f375e35
Tim Sutton 	2012-03-28

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-03-28

    [BACKPORT] Enable gdaltools by default on install in windows (when using standalone installer)

Marco Hugentobler 	2012-03-28

    WriteXML method for multiband color renderer

Etienne Tourigny 	2012-03-28

    ftools vector grid:  UI improvements

Etienne Tourigny 	2012-03-28

    ftools vector grid:  Align extents and resolution to selected raster layer

szekerest 	2012-03-27

    Use forward only cursor in all queries

szekerest 	2012-03-27

    Do not abort if sp_pkeys is not working

szekerest 	2012-03-27

    Determine whether there's an integer column with unique values that can be used as a pkey

szekerest 	2012-03-27

    Exclude the geometry column when identifying the type

szekerest 	2012-03-27

    Retrieve the primary key column when opening MS SQL tables and no identity column has been specified

Marco Hugentobler 	2012-03-28

    Remove old SLD files in QGIS server

Merge: 0ef88a2 145a184
Marco Hugentobler 	2012-03-28

    Merge branch 'qgis_server_sld'

Marco Hugentobler 	2012-03-28

    Throw exception if there is an SLD error

Marco Hugentobler 	2012-03-28

    Use new symbology SLD import for QGIS server

Tim Sutton 	2012-03-28

    Minor english cleanups for action help

Giuseppe Sucameli 	2012-03-28

    Improve "Actions" section in vector layer properties context help

    Signed-off-by: Tim Sutton 

Merge: c8ca7d7 516fc7e
Tim Sutton 	2012-03-28

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Giuseppe Sucameli 	2012-03-28

    feature actions: new "Open" action type to open urls in the default web browser and files with a suitable application

Giuseppe Sucameli 	2012-03-28

    feature actions: new button to add some default actions

Marco Hugentobler 	2012-03-27

    Fix transparency band in raster layer props, start implementing writeXML methods of renderers

volayaf 	2012-03-27

    improved r and saga behaviour, specially on linux; changed some grass descriptions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@54 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: eef6f53 04e8268
Tim Sutton 	2012-03-27

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2012-03-27

    [BACKPORT] Added Anom to Indonesian translators list

szekerest 	2012-03-26

    MSSQL provider: Remove the dependency from sqlext.h

Marco Hugentobler 	2012-03-26

    Add writeXML method for renderers (needs still to be implemented for most types)

Juergen E. Fischer 	2012-03-25

    QgsAttributeAction::expandAction still in use - drop deprecation

Juergen E. Fischer 	2012-03-25

    fix support for multigeometries in postgres and mssql provider

Juergen E. Fischer 	2012-03-25

    wms server: improve inverted axis handling for WMS 1.3

Juergen E. Fischer 	2012-03-25

    osgeo4w: don't set GDAL_DRIVER_PATH

Marco Hugentobler 	2012-03-24

    Fix restoring of transparent slider

Tim Sutton 	2012-03-24

    Fix margin issues on digitizing tab of options dialog (reset from 9 to 0 all around). Set scrollbox frame style to noframe

Juergen E. Fischer 	2012-03-24

    fix warnings in mssql provider

Alexander Bruy 	2012-03-24

    [FEATURE] option to avoid WKT copying from attribute table (fix 4591)

Marco Hugentobler 	2012-03-24

    Add 0 pointer for renderer widget in case of singleband data

Juergen E. Fischer 	2012-03-24

    heatmap cleanups:
    - don't crash when there is no layer at all
    - don't translate debug messages
    - add german translations

Marco Hugentobler 	2012-03-24

    Fix initialisation of transparency list

Arunmozhi 	2012-03-18

    merge pull request #104:
    - redesigned the dialog, added a options for - weighted buffer - raster size
    - moved the advanced stuff under advancedGroupBox
    - finished the GUI code
    - finally heatmap hits v0.2 Users can now
     - specify the rows and columns for the raster
     - specify the cell size of the raster
     - Choose a field as weight for each point
     - Choose a field to act as the buffer radius for each point
     - Buffer radius can be specified in real-world units like meters & mapunits
    - indentation updated

Nathan Woodrow 	2012-03-24

    Use 'New Connection...' instead of 'New...' for browser data items

Nathan Woodrow 	2012-03-24

    Fix typo in MS SQL FreeTDS driver name

Marco Hugentobler 	2012-03-23

    Clean up raster properties dialog

Juergen E. Fischer 	2012-03-23

    german translation update

Juergen E. Fischer 	2012-03-23

    indentation update

Juergen E. Fischer 	2012-03-23

    debian packaging update

Juergen E. Fischer 	2012-03-22

    fix warnings

Marco Hugentobler 	2012-03-23

    Add offset parameters to eventLayer functions

Merge: 51ece3c f2f65d1
Nathan Woodrow 	2012-03-23

    Merge MS SQL provider support.  Funded by Digital Mapping Solutions (Australia) completed by Tamas Szekeres

    Also includes initial drag and drop support for PostGIS

szekerest 	2012-03-18

    PG:Implement handledrop for the postgres provider

szekerest 	2012-02-06

    Adding the native MSSQL provider

Juergen E. Fischer 	2012-03-22

    fix QgsSpatiaLiteProvider::uniqueValues, when there is a subset string

Juergen E. Fischer 	2012-03-22

    fix #5203

Juergen E. Fischer 	2012-03-22

    german translation update

Juergen E. Fischer 	2012-03-22

    indentation update and a few unused parameter warnings fixes

Juergen E. Fischer 	2012-03-19

    switch to external spatialite on osgeo4w

volayaf 	2012-03-22

    temporarily deactivated grass
    added manual

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@53 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-03-22

    fixed small bugs while settign rendering styles

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@52 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-03-21

    minor change to avoid showing non-file-based layers


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@51 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-03-21

    added support for custom output rendering styles

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@50 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-03-21

    Add possibility to force eventLayer features to single geometry type

volayaf 	2012-03-21

    started grass algorithm provider

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@48 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-03-20

    [FEATURE]: Add WFS support for QGIS server. Provided by René-Luc D'Hont

pcav 	2012-03-19

    Fixed v.extrude and v.drape GRASS modules

Juergen E. Fischer 	2012-03-19

    apply #5121

volayaf 	2012-03-18

    finished conversion of models into python code


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@46 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-03-18

    Saga algorithms are now aware of selection in qgis

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@45 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-03-18

    Restrict input type for zonal statistics to gdal rasters for now (switch to use QgsRasterDataProvider in the mid term)

Marco Hugentobler 	2012-03-18

    Fix for zonal statistics (ticket #4972)

volayaf 	2012-03-17

    Severql bug fixes qnd smqll improvements in qgis bindings

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@43 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-03-16

    Improve multiband color widget

Giuseppe Sucameli 	2012-03-16

    Append Filter tag to Rule tag when exporting Categorized/Graduated rendererV2 to SLD doc (fix #5191)

Juergen E. Fischer 	2012-03-15

    WMS 1.3: better detection of inverted axis

Alexander Bruy 	2012-03-15

    also count points that intersects polygon bounds (fix #5163)

Marco Hugentobler 	2012-03-14

    Contrast enhancement functions for multiband color renderer widget

Giuseppe Sucameli 	2012-03-14

    fix memory leak instantiating QgsExpression in actions

Giuseppe Sucameli 	2012-03-14

    convert $currfield (was %%) running actions from "Identify actions" tool

Giuseppe Sucameli 	2012-03-12

    "Run feature action" tool does the action for all the matching features (fix #5126)

volayaf 	2012-03-14

    finished improving saga algorithm descriptions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@42 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-03-13

    Improvements to single band gray renderer widget

volayaf 	2012-03-13

    improved saga algorithms descriptions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@41 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf 	2012-03-13

    changed how user dir is found

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@40 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-03-12

    fix crash on quit

Juergen E. Fischer 	2012-03-12

    fix QgsComposerItem API

volayaf@gmail.com 	2012-03-12

    added a new method for loading layers into qgis

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@38 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-03-12

    improved saga algorithm descriptions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@37 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Tim Sutton 	2012-03-12

    [BACKPORT] Formatting changes only for raster color ramp shader class

volayaf@gmail.com 	2012-03-11

    Added value range control to ParameterNumber

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@36 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-03-11

    improved algorithm descriptions

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@35 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-03-11

    Completed single band gray widget

Giuseppe Sucameli 	2012-03-11

    BuildVRT: set input layer list when tool starting (follow d6ea1a03).
    Thanks Etienne for the patch.

volayaf@gmail.com 	2012-03-10

    changed saga descriptions to new format (still need to be checked and improved)

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@33 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Giuseppe Sucameli 	2012-03-10

    refresh BuildVRT command when input layers changes, cleanup (follow 9da5d0345)

Etienne Tourigny 	2012-03-08

    allow to use loaded layers as input files (instead of file selector) for GDALTools Build Virtual Raster

Juergen E. Fischer 	2012-03-09

    remove geoimage austria wms server

Etienne Tourigny 	2012-03-09

    QgisApp::askUserForGDALSublayers : fix order of new layers in the layers dock ; add an option to load all sublayers of a GDAL raster with subdatasets

Etienne Tourigny 	2012-03-09

    browser dock: add selected layers via context menu and tool button

Etienne Tourigny 	2012-03-09

    fixes for browser (GDAL rasters) : skip *.aux.xml files ; add suffix to raster file names in browser ; add HDF4 file suffix (.hdf) in buildSupportedRasterFileFilterAndExtensions()

Marco Hugentobler 	2012-03-09

    Fix for crash when quiting QGIS (ticket #5145)

volayaf@gmail.com 	2012-03-09

    fixed bug in deepcopy of ModelAlgorithm
    other small bugs
    Added number checking for numerical settings

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@32 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-03-09

    use GDAL_FIX_ESRI_WKT in QgsOgrProvider::crs (fixes #5066 with GDAL 1.9)

Juergen E. Fischer 	2012-03-09

    fix for some translations and expression function help

Juergen E. Fischer 	2012-03-09

    fix typos

Juergen E. Fischer 	2012-03-09

    fix windows build

Juergen E. Fischer 	2012-03-09

    debian packaging update

Alexander Bruy 	2012-03-09

    fix #5097

volayaf@gmail.com 	2012-03-08

    Improvements in R Connection (more or less working now)
    added R toolbox actions


    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@31 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-03-08

    debian packageing update: add globe plugin to ubuntu precise

Merge: d3f5eb2 dabd59b
pcav 	2012-03-08

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-03-08

    also build pyspatialite with system spatialite

pcav 	2012-03-08

    Added a module

pcav 	2012-03-08

    [FEATURE] Added v.extrude GRASS module Note: also added r.stats in a previous commit

pcav 	2012-03-08

    Minor edit to r.external grass module

pcav 	2012-03-08

    Cleanup and improvements to r.external, r.in.gdal, and v.in.ogr GRASS modules

Giuseppe Sucameli 	2012-03-08

    [FEATURE] load/save layer style (new symbology) from/to SLD document

    This is a huge commit, but it's mostly new functions. It changes only few lines on the existing code.
    - add conversion between QgsExpression and OGC Filter Encoding 1.1
    - add conversion between QgsRendererV2 and OGC Symbology Encoding 1.1

    Work done for Regione Toscana-SIGTA

Juergen E. Fischer 	2012-03-07

    fix #5132

volayaf@gmail.com 	2012-03-07

    Improvements in R Connection

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@30 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-03-07

    Fix wrong extent after loading project files with embedded groups

Juergen E. Fischer 	2012-03-07

    catch transformation exceptions in QgsGrassRegionEdit::transform

Juergen E. Fischer 	2012-03-07

    composer api doxygen fixes

Juergen E. Fischer 	2012-03-07

    debian packaging update: drop hardy, intrepid, jaunty and karmic

volayaf@gmail.com 	2012-03-06

    implemented saga resampling procedure
    some ftools algorithms

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@29 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-03-06

    debian packaging update: add wheezy and use internal spatialite where libspatialite3 not available

Juergen E. Fischer 	2012-03-06

    german translation update

Alexander Bruy 	2012-03-06

    [FEATURE] fTools: allow to calculate extent not only for whole layer but
    for individual features too

Juergen E. Fischer 	2012-03-06

    fix warning

Juergen E. Fischer 	2012-03-06

    expression builder: only fetch geometry when required (and available)

Juergen E. Fischer 	2012-03-06

    fix #2766

Marco Hugentobler 	2012-03-05

    Fill comboboxes in single band gray widget

Marco Hugentobler 	2012-03-05

    Add widget for single band gray raster renderer

Juergen E. Fischer 	2012-03-05

    postgresql provider: don't require access to geometry_columns

Juergen E. Fischer 	2012-03-05

    debian packaging update

Marco Hugentobler 	2012-03-05

    Add more analysis header to install

Marco Hugentobler 	2012-03-04

    [FEATURE]: support PNG 8Bit for GetMap in QGIS server

volayaf@gmail.com 	2012-03-04

    added mmqgis and ftools algorithms
    several more changes in qgis interface

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@28 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

pcav 	2012-03-04

    Added r.stats grass module

pcav 	2012-03-03

    Added option to r.slope grass module

Gary Sherman 	2012-03-02

    Make the capitalization of menu items and tools consistent in the main
    window and layer popup UI.

Marco Hugentobler 	2012-03-02

    Fix compile error

Marco Hugentobler 	2012-03-02

    Avoid multiple redraws when loading projects

Marco Hugentobler 	2012-03-02

    WMS server: create rendercontext to find out visible features

Marco Hugentobler 	2012-03-02

    Use symbolsForFeature in point displacement renderer

Marco Hugentobler 	2012-03-02

    WMS featureinfo: use willRenderFeature instead of symbolForFeature

Tim Sutton 	2012-03-02

    [BACKPORT] added more missing python bindings for composer api

Merge: 32be114 ad955e2
Tim Sutton 	2012-03-02

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Martin Dobias 	2012-03-02

    Added willRenderFeature() and symbolsForFeature() utility methods.

Marco Hugentobler 	2012-03-01

    Disable offset curve if geos version < 3.3

pcav 	2012-03-01

    Adder option to r.mask GRASS module

Alexander Bruy 	2012-03-01

    fix geometry column export when used calculation on ellipsoid

Merge: 643db0e 8459b58
Tim Sutton 	2012-03-01

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2012-02-29

    german translation update

Juergen E. Fischer 	2012-02-29

    fix warnings

Nathan Woodrow 	2012-02-29

    Replace New with 'New Connection' in browser context menu
    New... implied creating a new spatiaLite database, which is not the
    case.

Marco Hugentobler 	2012-02-29

    Remove comment

Merge: 9a9ab73 139821d
Marco Hugentobler 	2012-02-29

    Merge branch 'curve_offset'

Radim Blazek 	2012-02-28

    dont add empty field to options, fixes #4929

Marco Hugentobler 	2012-02-28

    Delay loading of composer picture  preview icons until widget is shown

Tim Sutton 	2012-02-28

    Added missing composer label alignment bindings to python api and better api docs.

Tim Sutton 	2012-02-28

    [BACKPORT] Nicer api for composer item frames and carry docs through to sip.

Merge: c1b268c cda3693
Tim Sutton 	2012-02-28

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Nathan Woodrow 	2012-02-25

    Live widget updates in graduated symbol renderer when symbol, breaks,
    break type, field, or ramp changes.

Juergen E. Fischer 	2012-02-27

    fix crash in CRS selection

Juergen E. Fischer 	2012-02-27

    german translation update

volayaf@gmail.com 	2012-02-26

    big QGIS update

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@24 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Merge: c42f094 a90e3e9
Tim Sutton 	2012-02-24

    Merge pull request #96 from mbernasocchi/android

    Android right click using TapAndHoldGesture

pcav 	2012-02-24

    Adapting GRASS module list to previous changes

pcav 	2012-02-24

    Simplify slope and aspect GRASS modules

Marco Hugentobler 	2012-02-24

    Server: set selection color prior to each render

Marco Hugentobler 	2012-02-24

    Offset curve tool: snap to segment, not to vertex and segment

Marco Hugentobler 	2012-02-24

    Catch offset errors

pcav 	2012-02-24

    Improved v.random GRASS module

pcav 	2012-02-24

    More options for the v.surf GRASS module

Tim Sutton 	2012-02-24

    Added some comments explaining how alpha works

Marco Hugentobler 	2012-02-24

    Fix lazy restore of composer maps from xml

Juergen E. Fischer 	2012-02-24

    fix #5000

pcav 	2012-02-24

    Improved v.surf GRASS modules.

Marco Hugentobler 	2012-02-24

    Load / save functions for single band pseudocolor

Juergen E. Fischer 	2012-02-23

    [FEATURE] allow to specify FEATURE_COUNT for WMS GetFeatureInfo

Juergen E. Fischer 	2012-02-23

    debian packaging update

pcav 	2012-02-23

    Typo

pcav 	2012-02-23

    Improved v.surf.idw GRASS module

Marco Hugentobler 	2012-02-23

    Offset curve tool: convert multiline features in both directions

Marco Hugentobler 	2012-02-23

    Restore properties in singleband pseudo color dialog

Marco Hugentobler 	2012-02-22

    Started renderer dialog for singleband pseudocolor

Marco Bernasocchi 	2012-02-16

    Fixed Right click support using TapAndHold gesture

Marco Bernasocchi 	2012-02-09

    initial right click support

Werner Macho 	2012-02-22

    translation update: es by Carlos

Marco Hugentobler 	2012-02-22

    Offset curve: add empty field values to newly created features

Marco Hugentobler 	2012-02-22

    Force geometry copy in offset curve tool if control key pressed

Marco Hugentobler 	2012-02-22

    Sort schema list in SPIT plugin. Patch provided by Horst Duester

Nathan Woodrow 	2012-02-22

    Set delete feature dialog parent. Fixes #5062

Marco Hugentobler 	2012-02-21

    Show snap vertex marker for offset curve

Marco Hugentobler 	2012-02-21

    Add options for offset curve (join style, quadseg, mitre limit)

Juergen E. Fischer 	2012-02-21

    fix #5062 and apply rest of #5041

Marco Hugentobler 	2012-02-21

    Activation of OffsetCurve tool

Marco Hugentobler 	2012-02-21

    Icon for offset curve tool

Marco Hugentobler 	2012-02-21

    Snap to all visible layers with default vertex search tolerance (but to vertex and segment)

Juergen E. Fischer 	2012-02-21

    fix #4993

Nathan Woodrow 	2012-02-21

    Use zoom to mouse by default.  Fixes #5054

Marco Hugentobler 	2012-02-20

    Add type name to renderers. Restore the corresponding renderer widget in raster properties

Merge: b90d550 6fab61a
Nathan Woodrow 	2012-02-20

    Merge pull request #99 from spilth/master

    http://www.kyngchaos.com/ URL changes

Brian Kelly 	2012-02-20

    kyngchaos URLs no longer have /wiki/ in them

Marco Hugentobler 	2012-02-20

    Offset curve: snap to background layers in mouse move

Marco Hugentobler 	2012-02-20

    Show spin box for distance values in status bar on X11 (resize bug)

Juergen E. Fischer 	2012-02-20

    collect GIS translation from wikipedia

Juergen E. Fischer 	2012-02-20

    osgeo4w: switch to GRASS 6.4.2

Juergen E. Fischer 	2012-02-19

    fix #4259

Juergen E. Fischer 	2012-02-18

    postgres provider: ignore errors on querying geography_columns

Werner Macho 	2012-02-18

    translation update: galician by Xan

Werner Macho 	2012-02-18

    translation update: indonesian

Werner Macho 	2012-02-13

    translation update: string update it language

Juergen E. Fischer 	2012-02-18

    apply #5041 (slighly modified)

Juergen E. Fischer 	2012-02-18

    fix #5022

Marco Hugentobler 	2012-02-18

    Add moving spin box to enter numeric value for curve offset

Marco Hugentobler 	2012-02-18

    [Backport]: Avoid intersection for QgsMapToolAddPart. Fixes ticket #4624

Marco Hugentobler 	2012-02-18

    Delete feature if add polygon not successfull

Merge: cd509e6 974fe95
mhugent 	2012-02-17

    Merge pull request #98 from lynxlynxlynx/master

    a crash fix and a tiny cleanup

Merge: 2001249 46ba390
Marco Hugentobler 	2012-02-17

    Merge branch 'raster_resampler' of github.com:mhugent/Quantum-GIS into raster_resampler

Marco Hugentobler 	2012-02-17

    Started widget for multiband color

Jaka Kranjc 	2012-02-17

    removed extraneus pointer redeclaration

Jaka Kranjc 	2012-02-17

    fixed crash when trying to add features with invalid geometry

    QgsMapToolAddFeature::canvasReleaseEvent wasn't checking if geos returned
    a sane geometry. One simple way of triggering the crash is to click twice
    on the same point and then complete the op by rightclicking. Of course this
    is not a real polygon, so things went haywire after that.

Marco Hugentobler 	2012-02-17

    Add distance item

Marco Hugentobler 	2012-02-17

    In case of offset curve on background layers: try to merge together the source layers

Juergen E. Fischer 	2012-02-17

    debian packaging update

Juergen E. Fischer 	2012-02-16

    debian packaging update

Juergen E. Fischer 	2012-02-16

    debian packaging: drop extra QtWebkit include path on natty and oneiric

Juergen E. Fischer 	2012-02-16

    message log status bar icon:
    - hide by default
    - show when new messages arrive while log is closed
    - hide when message log is opened

Juergen E. Fischer 	2012-02-15

    fix #5017 and fix #5024

Juergen E. Fischer 	2012-02-15

    fix #5023

Marco Hugentobler 	2012-02-15

    Add user interaction, snapping, etc. for offset curve tool

Radim Blazek 	2012-02-15

    WMS and WFS credential separated, credentials not yet used in WFS, it would be just another hack until we get a common class for uri encoding

Juergen E. Fischer 	2012-02-15

    wms feature info:
    - use extent of last GetMap for GetFeatureInfo
    - use QWebView instead of QTextBrowser to show html results and
    - show errors on GetFeatureInfo

Alexander Bruy 	2012-02-15

    move Colormap tab next to the Style tab (fix #5018)

Alexander Bruy 	2012-02-15

    better fix for #5010

Alexander Bruy 	2012-02-15

    minor UI fix in New SpatiaLite layer dialog

Arunmozhi 	2012-02-13

    [FEATURE] Group selected layers on right click

Juergen E. Fischer 	2012-02-14

    fix 659abb8d (fixes #5016)

Juergen E. Fischer 	2012-02-14

    fix string mishap in nodetool

Juergen E. Fischer 	2012-02-14

    fix crash when the current maptool is destroyed

Juergen E. Fischer 	2012-02-14

    postgres provider:
    - fix primary key detection, if column is behind geometry column
    - add support for varchar length limits

Alexander Bruy 	2012-02-14

    fix Intersect lines tool

Marco Hugentobler 	2012-02-14

    Draw svg symbols as vectors if there is rotation

Marco Hugentobler 	2012-02-14

    Small fix for linear referencing

Juergen E. Fischer 	2012-02-13

    fix build error on osx

Juergen E. Fischer 	2012-02-13

    heatmap: add grid layouts

Juergen E. Fischer 	2012-02-13

    german translation update

Juergen E. Fischer 	2012-02-13

    postgres provider: move connection settings to QgsPostgresConn (also fixes #4998 and #4999)

Juergen E. Fischer 	2012-02-13

    debian packaging: include heatmap plugin (fixes #4994)

Werner Macho 	2012-02-13

    fix small typos

Werner Macho 	2012-02-13

    translation update: et by Veiko

Werner Macho 	2012-02-13

    added new italian translators

Juergen E. Fischer 	2012-02-13

    update tsstat.pl

pcav 	2012-02-12

    Translation of IT GUI finished (to be checked). Thanks to Roberto (BobMaX) Angeletti and Alessandro Fanna.

Juergen E. Fischer 	2012-02-12

    fix #4992

Juergen E. Fischer 	2012-02-12

    german translation update

Juergen E. Fischer 	2012-02-12

    fix tooltip string

pcav 	2012-02-12

    More IT GUI translation - thanks Alessandro Fanna

volayaf@gmail.com 	2012-02-12

    Batch processing already working
    Scripting already working
    Started with modeler
    added saga descriptions to saga folder
    added configuration dialog

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@23 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-02-11

    freeze canvas instead of modifying the render flag when changing legend (fixes #4982)

Giuseppe Sucameli 	2012-02-11

    allow to choose input directory in GdalTools Merge tool (fix #4930)

Juergen E. Fischer 	2012-02-11

    fix #4981

Juergen E. Fischer 	2012-02-11

    fix warnings from clang

Giuseppe Sucameli 	2012-02-11

    add -allow_projection_difference option (fix #4888)

Nathan Woodrow 	2012-02-11

    add myself to the Authors list :)

Tim Sutton 	2012-02-10

    Fix transparency restoration on project load

pcav 	2012-02-11

    More IT GUI translation - sill incomplete.

Nathan Woodrow 	2012-02-11

    Add Arunmozhi to contributors list for his work on the heatmap plugin

Nathan Woodrow 	2012-02-11

    Don't leave space for empty title.  Semi fixes #3484

Nathan Woodrow 	2012-02-11

    Change tool tip for composer legend. Fixes #4980

Nathan Woodrow 	2012-02-07

    [FEATURE] Add multi line support for legend title, groups, and items. Semi fix for #3484

Tim Sutton 	2012-02-10

    Fix transparency restoration on project load

Juergen E. Fischer 	2012-02-10

    ignore invalid gps coordinate even if there seems to be a fix

Juergen E. Fischer 	2012-02-09

    fix #4971

Werner Macho 	2012-02-09

    translation update: es by Carlos

Alexander Bruy 	2012-02-09

    case insensitive search for CRS in WMS provider

Juergen E. Fischer 	2012-02-09

    postgis string fixes

Marco Hugentobler 	2012-02-09

    [FEATURE]: maptool for parallel line displacement

Juergen E. Fischer 	2012-02-09

    arrange buttons on raster transparency tab horizontally

Juergen E. Fischer 	2012-02-09

    minor german translation update

Juergen E. Fischer 	2012-02-09

    restore buttons to bottom and put pages in scroll areas for raster properties too

Juergen E. Fischer 	2012-02-09

    restore buttons to bottom of vector layer properties and put pages into scroll areas

Juergen E. Fischer 	2012-02-09

    setRenderer(V2) also updates V2 renderer flag

Juergen E. Fischer 	2012-02-08

    yet another german translation update

Marco Bernasocchi 	2012-01-06

    android goodies (pull request #94):
    [Marco Bernasocchi]
    - adding needed files to support internal GPS via QtMobility, implementation of QgsQtLocationConnection is only a stub
    - cleaning up methods names
    - adding mobility to CMakeLists
    - testing
    - added hack to test parseData()
    - adding more parsing stuff
    - Adding debugging info and making connection fail if no QtSatellite datasource available
    - Initial working GPS with coordinates bug (values shifted)
    - Adding Initial GPS support to android using QtLocation
    - Adding Ground speed and direction
    - put ok button on top of widget to make it usable until scroll area is added (HACK to be Reverted later)
    - added vertical and horizontal accurancy
    - Removing test values qtlocationconnection
    - refactor debug messages
    - adding compass plugin
    - trying NathanW suggestion
    - adding new compass plugin
    - Fixed satellitesUpdated signals
    - removing setDataRate
    - temporarely removed calibrationLevel display to be reverted when https://sourceforge.net/p/necessitas/tickets/153/ is fixed
    - addin comment
    - making QLineEdits readonly
    - added calibration level support
    [Jürgen E. Fischer]
    - squashed, reindented and skipped some already addressed changes to qgisapp and vector layer provider

Juergen E. Fischer 	2012-02-08

    postgres provider:
    - pre-select first integer column as primary key for views
    - also consider oid type as integer column

Juergen E. Fischer 	2012-02-08

    heatmap plugin: fix menu removal

Merge: 36a69af a080538
Tim Sutton 	2012-02-08

    Merge changes from QGIS upstream

Tim Sutton 	2012-02-08

    Applied patch from Borys for heatmap context help

Alexander Bruy 	2012-02-08

    enable Toggle editing button depending on layer type (fix #4965)

Merge: 093aae5 2b07e3d
Alexander Bruy 	2012-02-08

    Merge remote-tracking branch 'upstream/master'

Merge: 2a7ac93 b7994f1
pcav 	2012-02-08

    Merge branch 'master' of github.com:qgis/Quantum-GIS

pcav 	2012-02-08

    Some more IT GUI translation - thanks Alesandro Fanna and BobMaX

Juergen E. Fischer 	2012-02-08

    german translation update

Juergen E. Fischer 	2012-02-08

    heatmap updates:
    - fix warnings on windows
    - minor cleanups
    - some string updates

Alexander Bruy 	2012-02-08

    fix Heatmap plugin unloading, also place button to the Raster toolbar

Juergen E. Fischer 	2012-02-08

    indentation update

Tim Sutton 	2012-02-08

    [FEATURE] added heatmap plugin to QGIS master. Removed README from heatmap dir. Nominal commit to tag this as a new feature.

Tim Sutton 	2012-02-08

    Removed Alex from contributors since he is in AUTHORS

Tim Sutton 	2012-02-08

    Merged in Arunmozhi's heatmap plugin into QGIS core

Marco Hugentobler 	2012-02-08

    Make QgsSymbolV2::renderHints() const

Juergen E. Fischer 	2012-02-07

    german translation update

Werner Macho 	2012-02-08

    translation update: hr_HR by Zoran

Juergen E. Fischer 	2012-02-07

    match sip binding of QgsSymbolV2::renderHints() to c++ interface

Juergen E. Fischer 	2012-02-07

    initialize QgsApplication::mConfigPath later

Marco Hugentobler 	2012-02-07

    Render rotation tool preview image

Marco Hugentobler 	2012-02-07

    Add support for new symbology for rotate point tool

Juergen E. Fischer 	2012-02-07

    spatialite provider: prefer auth_id over proj4 string (fix #4958)

Nathan Woodrow 	2012-02-07

    Composer Legend: Add spacing for groups.  Fixes #4247 Patch by Anna
    Kratochvilova. Thanks!

Juergen E. Fischer 	2012-02-06

    postgres provider: fix crs(), if no crs was requested

Juergen E. Fischer 	2012-02-06

    fix #3742:
    - after CRS changes reproject canvas extent regardless of OTFR
    - toggling OTFR off, switches the project CRS to the current layer CRS (or
      first layer, if no layer is active).
    - toggling OTFR also saves the previous CRS setting and restores the previous
      selected CRS.

Marco Hugentobler 	2012-02-06

    Consider svg parameters for svg fill

Merge: ccf3af7 886ed10
Jürgen Fischer 	2012-02-05

    Merge pull request #92 from Jean-Roc/master

    update fr strings

Jean-Roc Morreale 	2012-02-05

    update fr strings

Juergen E. Fischer 	2012-02-05

    better fix than 4d0551f0

Juergen E. Fischer 	2012-02-05

    fix doxygen warnings

Juergen E. Fischer 	2012-02-05

    fix crash

Juergen E. Fischer 	2012-02-05

    indentation update

Merge: c933dce 1be0e87
Nathan Woodrow 	2012-02-05

    Merge pull request #91 from szekerest/master

    Improve the support for OGR/MSSQL driver

Merge: 876b8c7 c933dce
szekerest 	2012-02-05

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

Nathan Woodrow 	2012-02-05

    Fix restoring of composition widget missed in last refactor

Nathan Woodrow 	2012-02-01

    Redesign composer; use dock widgets vs splitter; reduce scrolling in
    item widgets

szekerest 	2012-02-05

    Improve the support for OGR/MSSQL driver

Juergen E. Fischer 	2012-02-04

    fix #4941

volayaf@gmail.com 	2012-02-04

    Creted history and log dialog

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@22 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-02-03

    Several changes. Now saga algorithms can be executed and also scripts. Still have to test both, but it is more or less working fine

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@21 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-02-03

    Add comment

Marco Hugentobler 	2012-02-03

    Work with a distance tolerance for locateAlongFeature, report event items where linear referencing did not succeed

Alexander Bruy 	2012-02-03

    fix Densify tool

Juergen E. Fischer 	2012-02-03

    vector layer save as: replace 'original crs' with 'layer crs' and 'project crs' - OTFR doesn't matter anymore (fixes #4109)

Juergen E. Fischer 	2012-02-02

    optionally add save vector file to canvas (fix #4598)

Juergen E. Fischer 	2012-02-02

    execute undo stack on rollBack() (fixes #4635)

Alexander Bruy 	2012-02-02

    fix highlighting for identify tool when OTF enabled (closes #4843)

Alexander Bruy 	2012-02-02

    fTools: option to select create new shape or update existing layer when
    exporting geometry column

Alexander Bruy 	2012-02-01

    [FATURE] fTools: option to export geometry column using layer CRS,
    project CRS or ellipsoid

Marco Hugentobler 	2012-02-02

    Fix for locateBetween method

Juergen E. Fischer 	2012-02-02

    don't set parent of QFontDialog (fixes #4937, but makes it not follow the globally set font size)

Juergen E. Fischer 	2012-02-02

    fix sip gps bindings

Juergen E. Fischer 	2012-02-01

    german translation update

Juergen E. Fischer 	2012-02-01

    postgres provider: fix query support

Marco Hugentobler 	2012-02-01

    Registry for raster renderers

Alexander Bruy 	2012-02-01

    Russian translation for field calculator context help. Thanks, Maxim!

Marco Hugentobler 	2012-02-01

    More verbose comments to linear reference functions

Marco Hugentobler 	2012-02-01

    Display a progress bar

Marco Hugentobler 	2012-01-31

    Support multiple geometries per event object. Return zero geometry if result is emtpy

Marco Hugentobler 	2012-01-30

    Remove debug code, move locateBetween and locateAlong to public interface

Marco Hugentobler 	2012-01-30

    Fix errors in locateBetween

Marco Hugentobler 	2012-01-27

    Support reference with one measure (along)

Marco Hugentobler 	2012-01-25

    [FEATURE]: creation of event layers in analysis lib using linear referencing

Giuseppe Sucameli 	2012-02-01

    set parent opening projection selector dialog (fix #4931)

Marco Hugentobler 	2012-02-01

    Add sip files for gps connection. Patch from Marcel Huber, ticket #4826

Alexander Bruy 	2012-02-01

    updates to Field calculator help from Alister Hood (fix #4405)

Juergen E. Fischer 	2012-02-01

    add german function help translations

Nathan Woodrow 	2012-02-01

    Expression builder: Rename Fields to Fields and Values; Add help for when field is selected

Nathan Woodrow 	2012-02-01

    Help viewer: Add nicer help not found message; reduce margins

Nathan Woodrow 	2012-02-01

    Expression builder: Add group header help

Nathan Woodrow 	2012-02-01

    Expression builder: Nicer help not found message

Juergen E. Fischer 	2012-02-01

    reject empty field names in QgsVectorLayer::addAttribute

Juergen E. Fischer 	2012-02-01

    fix typos

Nathan Woodrow 	2012-02-01

    Check for empty field name. Fixes #4914

Juergen E. Fischer 	2012-01-31

    save and restore position of merge attribute dialog

Martin Dobias 	2012-01-31

    Increase scale range (#3189)

Martin Dobias 	2012-01-31

    Edit symbol transparency in percent values [0-100] instead of [0-1]

Martin Dobias 	2012-01-31

    Fix expression builder highlighting (#4913)

Marco Hugentobler 	2012-01-31

    [Backport]: disable abort if avoid intersections returns a different geometry type (e.g. multitype instead of singletype). Temporary solution for ticket #4880

Juergen E. Fischer 	2012-01-30

    german translation update

Juergen E. Fischer 	2012-01-30

    postgresql provider: check connection state before running PQexec (fixes #4909)

Juergen E. Fischer 	2012-01-30

    support strange mysql quoting

Juergen E. Fischer 	2012-01-30

    add .db to spatialite extensions (fixes #4919)

Martin Dobias 	2012-01-30

    Use the new expression builder for rule filter editing

Marco Hugentobler 	2012-01-30

    Apply loop improvement from Arunmozhi also to raster calc dialog

Arunmozhi 	2012-01-29

    refactored code to reduce loop in favour of a func

Juergen E. Fischer 	2012-01-30

    fix another build error :(

Juergen E. Fischer 	2012-01-30

    fix build error

Juergen E. Fischer 	2012-01-29

    german translation update

Juergen E. Fischer 	2012-01-29

    cleanup separate file type names from extensions in translations

Juergen E. Fischer 	2012-01-29

    fix warnings and icon size of GRASS toolbar

Juergen E. Fischer 	2012-01-29

    also consider layer crs, when initially zooming to the extent of the first layer

Juergen E. Fischer 	2012-01-29

    fix python path setting in windows

Juergen E. Fischer 	2012-01-29

    use os.path.expand user for home directories for python (reintroduces fixes from #2515)

Juergen E. Fischer 	2012-01-29

    cleanup projection selections - makes it work via keyboard again

Werner Macho 	2012-01-29

    translation update: es by Carlos

Juergen E. Fischer 	2012-01-28

    [API] add sip bindings for QgsCsException

Richard Duivenvoorde 	2011-12-26

    fix #3243
    Richard Duivenvoorde (from pull request #78)
    - crs taking into account, bookmarklist is now editable qtreeview
    - set better column names the column names from the table

    Juergen Fischer added refactoring:
    - move adding bookmarks into QgsBookmarks
    - make QgsBookmarks a singleton
    - delete multiple entries at once

Marco Hugentobler 	2012-01-28

    Expose maxOversampling parameter to user

Juergen E. Fischer 	2012-01-28

    reproject canvas extent on crs change with OTFR enabled

Marco Hugentobler 	2012-01-28

    Faster draw for multiband color in case there is no transparency, strech, inversion

Nathan Woodrow 	2012-01-28

    Put multi selection back for fields tab, use extended selection instead

Nathan Woodrow 	2012-01-28

    Remove multiselect from fields tab in layer properties

Juergen E. Fischer 	2012-01-27

    postgres provider: reload fields when columns disappear

Juergen E. Fischer 	2012-01-27

    use native file dialogs wherever possible (fixes #3763)

Juergen E. Fischer 	2012-01-27

    fix file permissions

pcav 	2012-01-27

    Fixed v.in.region GRASS module to accept lines.

Merge: 3c33cf8 41e70d5
pcav 	2012-01-27

    Merge branch 'master' of github.com:qgis/Quantum-GIS

pcav 	2012-01-27

    Update of IT translation

Nathan Woodrow 	2012-01-27

    Set save button not checkable - fixes #4290

Marco Hugentobler 	2012-01-27

    Consider contrast enhancement in multiband color renderer

Nathan Woodrow 	2012-01-27

    Rule-based renderer: Add support to refine more then one rule at a time; decrease UI margins

Martin Dobias 	2012-01-26

    Rule-based renderer: enable new labeling

Juergen E. Fischer 	2012-01-27

    fix python binding for QgsVectorDataProvider::changeGeometryValues()

Juergen E. Fischer 	2012-01-26

    fix #4227

Werner Macho 	2012-01-26

    translation update: string update for all languages

Juergen E. Fischer 	2012-01-26

    german translation update

Juergen E. Fischer 	2012-01-26

    catch more transformation errors

Juergen E. Fischer 	2012-01-26

    handle composer window differently (partly reverts a30eb373)

pcav 	2012-01-26

    Fix #4668 (GRASS r.sunmask modules)

Juergen E. Fischer 	2012-01-26

    even more font propagation

Juergen E. Fischer 	2012-01-25

    use QTextCodec::codecForLocale() where "System" is not available (like android)

Juergen E. Fischer 	2012-01-25

    more font propagation

Juergen E. Fischer 	2012-01-25

    set parents of various objects to propagate the font settings

Martin Dobias 	2012-01-25

    Rule-based renderer: selection and drawing of markers works again

Juergen E. Fischer 	2012-01-25

    postgres selection: leave geometryless views enabled

Martin Dobias 	2012-01-25

    Fixed parsing of numbers in locales using other decimal point symbols

Martin Dobias 	2012-01-25

    Rule-based renderer: polish rule refining

Juergen E. Fischer 	2012-01-25

    postgres selection:
    - make geometryless table selectable
    - only make srid column editable when necessary
    - leave primary key column editable
    - require primary key selection for views

Alexander Bruy 	2012-01-25

    also add Pan to Selected button to the attribute table dialog

Werner Macho 	2012-01-25

    translation update: added korean translation thanks to Sanghee and the korean team

Juergen E. Fischer 	2012-01-24

    use 8pt default font size on android

Juergen E. Fischer 	2012-01-24

    fix warnings

Alexander Bruy 	2012-01-18

    [FEATURE] new navigation tool Pan Map to Selection (fix #4031)

Martin Dobias 	2012-01-24

    Fixed symbol levels dialog

Merge: 0b1fd34 1c3c02f
Martin Dobias 	2012-01-24

    [FEATURE] Merge branch 'rules' - new rule-based rendering

    Conflicts:
src/gui/symbology-ng/qgsgraduatedsymbolrendererv2widget.cpp

Martin Dobias 	2012-01-24

    Add ModelTest: Qt tool for debugging custom models

    Very handy to stay sane when your model goes crazy

Martin Dobias 	2012-01-24

    Rule-based renderer: fixed parent(), fixed drag'n'drop

Juergen E. Fischer 	2012-01-24

    QgsVectorLayer: use featureAtId() in selectedFeatures() (fixes #4856)

Juergen E. Fischer 	2012-01-24

    osgeo4w update: build with Python 2.7

Juergen E. Fischer 	2012-01-24

    fix #4858

Juergen E. Fischer 	2012-01-23

    repaint layer after commiting

Juergen E. Fischer 	2012-01-23

    postgres provider: fix handling of broken connections

Martin Dobias 	2012-01-23

    GUI tweaks for rule-based renderer widget and symbol level dialog

Marco Hugentobler 	2012-01-23

    Added safety check

Martin Dobias 	2012-01-23

    Drag'n'drop for rules, rule does not need a symbol

Merge: fbc4308 26ca493
Werner Macho 	2012-01-23

    Merge pull request #87 from Jean-Roc/master

    update fr translation

Alexander Bruy 	2012-01-23

    display plugins from additional paths in Plugin Manager (fix #4178)

Juergen E. Fischer 	2012-01-23

    implement #4823

Marco Hugentobler 	2012-01-23

    Do otf-reprojection directly in raster renderer (much better performance in case of resampling)

Juergen E. Fischer 	2012-01-23

    postgres provider fix

Jean-Roc Morreale 	2012-01-22

    update fr translation

Juergen E. Fischer 	2012-01-22

    move layerURI from QgsPgSourceSelect to QgsPgTableModel

Juergen E. Fischer 	2012-01-21

    postgres provider: support tables with mixed srids

Juergen E. Fischer 	2012-01-22

    german translation update

Werner Macho 	2012-01-21

    fix typo myPath_s_

Werner Macho 	2012-01-21

    translation update: pt_BR by Arthur

Werner Macho 	2012-01-21

    translation update: gl_ES by Xan

Alexander Bruy 	2012-01-21

    clear collected plugins path before collecting svg path

Marco Hugentobler 	2012-01-21

    Other format for xml output GetFeatureInfo

Martin Dobias 	2012-01-21

    Model/view-based tree of rules. Added basic unit test, GUI renderer test

Marco Hugentobler 	2012-01-21

    Keep raster renderer parts aligned to pixel boundaries of unsampled rasters (to avoid overlaps or white stripes in large prints

Alexander Bruy 	2012-01-21

    fix font in scale selector combobox

Alexander Bruy 	2012-01-21

    avoid useless canvas redraw when user interacts with scale selector

Juergen E. Fischer 	2012-01-20

    [FEATURE] add update extent button in vector layer properties
    and implement QgsDataProvider::updateExtents in postgres, ogr and
    spatialite provider

Marco Hugentobler 	2012-01-20

    Better array generation for paletted raster renderer

Marco Hugentobler 	2012-01-19

    Consider user defined colors for paletted rasters

Juergen E. Fischer 	2012-01-19

    remove empty source files

Alexander Bruy 	2012-01-19

    force most core dialogs to remember their state and restore it when
    opened (adresses #206)

Juergen E. Fischer 	2012-01-19

    fix font preview in labeling

volayaf@gmail.com 	2012-01-19

    improved saga algorithm execution

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@18 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Hugentobler 	2012-01-19

    Restore resampler from xml

Marco Hugentobler 	2012-01-19

    Write resampler types to xml

Marco Hugentobler 	2012-01-19

    Possibility to set resampling modes differently for zoomed-in and zoomed-out

volayaf@gmail.com 	2012-01-18

    added table field support

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@17 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-01-18

    postgres provider fixes

Juergen E. Fischer 	2012-01-18

    back to using setStyleSheet to set the fontsize

volayaf@gmail.com 	2012-01-18

    added icons
    added scripting stuff

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@16 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-01-18

    postgres provider:
    - disable "Add" in selection dialog while column type thread is running
    - fix detection of integer keys
    - when adding feature update attributes and feature id in passed features

Juergen E. Fischer 	2012-01-18

    repaint vector layer on toggleEditing if the there are vertex markers

Juergen E. Fischer 	2012-01-18

    expression builder: fix typos and warnings and follow selection (not just clicked)

Juergen E. Fischer 	2012-01-18

    use signals for logging

Juergen E. Fischer 	2012-01-18

    german translation update

Alexander Bruy 	2012-01-18

    add tooltips to abstract field for WMS/WFS layers (addresses #4406).
    Also save and restore WFS dialog size and position (addresses #206)

Alexander Bruy 	2012-01-18

    follow up 2e7867a14e

Marco Hugentobler 	2012-01-18

    Better to use unsigned char

Marco Hugentobler 	2012-01-18

    Use byte raster bands for relief plugin to generate smaller output rasters

Marco Hugentobler 	2012-01-18

    Support different xml root element for feature info response (WMSFeatureInfoDocumentName)

Juergen E. Fischer 	2012-01-18

    add Marco Bernasocchi to AUTHORS

Juergen E. Fischer 	2012-01-18

    use applications default font instead of style sheet to set options and determine default size (fixes 5155176e)

Marco Hugentobler 	2012-01-18

    Support replacement of layer names in GetFeatureInfo with the elements WMSFeatureInfoAliasLayers and WMSFeatureInfoLayerAliases

Merge: 5155176 619083a
Nathan Woodrow 	2012-01-19

    Merge branch 'field-calc-4814'

Nathan Woodrow 	2012-01-15

    [FEATURE] Add expression builder to field calculator Fix #4814

Juergen E. Fischer 	2012-01-17

    fix setting of icon size and allow to set global fontsize

Juergen E. Fischer 	2012-01-17

    fix #4832: also consider schema in geometry_columns/geography columns

Giuseppe Sucameli 	2012-01-17

    show the correct feature's type name in debug messages

Juergen E. Fischer 	2012-01-17

    postgres provider: fix default value assignment

Juergen E. Fischer 	2012-01-17

    postgis provider: fix geometry detection

Juergen E. Fischer 	2012-01-17

    commit error update:
    - push commit errors in PostgreSQL, OGR and SpatiaLite provider
    - add provider errors to commit error
    - postgres provider: improve handling of geography columns

Juergen E. Fischer 	2012-01-17

    attribute table: show progress only every 5s

Alexander Bruy 	2012-01-17

    save size and position of the core plugins dialogs (addresses #206)

Giuseppe Sucameli 	2012-01-17

    GRASS py modules returns 1 getting interface description (fix 4667)

Sergey Yakushev 	2012-01-17

    RoadGraph: add dijkstra method to Network analysis library, remove unused shortestpath, update python bindings

Merge: c56d02f 3ba2fe9
Sergey Yakushev 	2012-01-17

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Juergen E. Fischer 	2012-01-16

    fix #4822

Marco Hugentobler 	2012-01-16

    Fix for ticket 4813 and cleanup legacy code in composer

Marco Hugentobler 	2012-01-15

    Parameter for font color in GetLegendGraphic

Juergen E. Fischer 	2012-01-16

    add python binding to QgsVectorDataProvider::fieldNameMap()

Juergen E. Fischer 	2012-01-15

    error logging:
    - fix key message in postgres provider
    - add logging of errors to spatialite provider
    - log commit errors in vector layer

Juergen E. Fischer 	2012-01-15

    german translation update

Juergen E. Fischer 	2012-01-15

    and followup 84dc1ba5e :(

Juergen E. Fischer 	2012-01-15

    follow up 9a9b53bb:
    - enable transform caching (comparing before each use disables its point)
    - invalidate the render transform cache only when the layer crs changes by
      connecting to the QgsMapLayer::layerCrsChanged() signal.
    - make CRS of map layer private so that setCrs has to be used on each change

Juergen E. Fischer 	2012-01-15

    fix typos

Radim Blazek 	2012-01-15

    unset QgsMapRenderer mCachedTrForLayer on setDestinationCrs and always check layer->crs against mCachedTr destCRS

Merge: aa323ae a6df30c
Sergey Yakushev 	2012-01-15

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Alexander Bruy 	2012-01-15

    display real band number for multiband rasters when single band gray
    drawing style used (patch by Bill Clay, fix #4138)

Nathan Woodrow 	2012-01-14

    [FEATURE] Add support to edit views that have triggers. Fixes #4787

Juergen E. Fischer 	2012-01-14

    fix #4812

Merge: 1f0341c 8930633
Sergey Yakushev 	2012-01-15

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Juergen E. Fischer 	2012-01-14

    vector provider: fetch codec list from Qt and default to System when a unavailable codecs is requested (might cure issueID #4801)

Juergen E. Fischer 	2012-01-14

    indentation update

Marco Hugentobler 	2012-01-14

    Fix rounding problem for font size in GetLegendGraphic

Marco Hugentobler 	2012-01-14

    Fix for preview symbols in GetLegendGraphic

Marco Hugentobler 	2012-01-14

    Read optional legend parameters from GetLegendGraphic request (extension to WMS)

Marco Hugentobler 	2012-01-14

    Keep image aspect in bilinear resampling, apply oversampling for zoom out

Juergen E. Fischer 	2012-01-14

    german translation update

Juergen E. Fischer 	2012-01-14

    split node tool into three class files in a subdirectory

Werner Macho 	2012-01-14

    translation update: es by carlos

Juergen E. Fischer 	2012-01-13

    more nodetool speedups & refactoring (fixes #4523)
    [API] introduce signal QgsVectorLayer::geometryChanged() signal and use that
    to reduce the need to reload the modified geometry.

Juergen E. Fischer 	2012-01-13

    fix warning

volayaf@gmail.com 	2012-01-13

    added fixed table dialog. Improved saga descriptions reading

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@15 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Giuseppe Sucameli 	2012-01-13

    use a better default name for the new pk field when creating a new empty PG table

Giuseppe Sucameli 	2012-01-13

    cleanup (remove unused line)

Giuseppe Sucameli 	2012-01-13

    Remove Apply button from new spatialite layer dialog,
    activate add and remove attribute buttons only when appropriate

Giuseppe Sucameli 	2012-01-13

    in actions tab activate buttons only when appropriate (fixes #4785)

Giuseppe Sucameli 	2012-01-13

    convert field names to lowercase when importing from shapefile,
    fix the number of written features,
    cleanup the code

Alexander Bruy 	2012-01-13

    GPSTools: open "Load GPX" tab by default

Marco Hugentobler 	2012-01-13

    Avoid second redraw in GetPrint request

Marco Hugentobler 	2012-01-13

    Set composer map projection earlier (changes in qgsmaprenderer)

Giuseppe Sucameli 	2012-01-12

    fix add features in PG provider broken in recent refactoring

Juergen E. Fischer 	2012-01-12

    osgeo4w packaging: update to GRASS 6.4.2RC3

Marco Hugentobler 	2012-01-12

    Append suffix in raster terrain plugin

Alexander Bruy 	2012-01-12

    reapply fix for #4693 (broken in 8ed3e6d68d)

Alexander Bruy 	2012-01-12

    save last used dirs and last used filter in GPSTools plugin (fix #1209).
    Also remember dialog size and position and restore them (addresses #206)

Juergen E. Fischer 	2012-01-12

    show full filename for debugging in MSVC again

Sergey Yakushev 	2012-01-08

    RoadGraph: fix export tool.

Merge: 47ca431 878b048
Marco Hugentobler 	2012-01-12

    Merge branch 'relief'

Marco Hugentobler 	2012-01-12

    Reapply cosmetical changes

Merge: 92de863 35eded8
mhugent 	2012-01-12

    Merge pull request #85 from mbernasocchi/android

    fixing execinfo.h no such file or directory on android

Marco Hugentobler 	2012-01-12

    Add missing copyright notices

Marco Hugentobler 	2012-01-12

    Raster category, remove obsolete files

Marco Hugentobler 	2012-01-12

    [FEATURE]: relief and hillshade function, modification of raster terrain structure

Juergen E. Fischer 	2012-01-12

    german translation update

Werner Macho 	2012-01-12

    translation update: es by carlos

Juergen E. Fischer 	2012-01-12

    fix #4636:
    - add a column containing the feature id, if no columns are there (otherwise
      there are no valid model indices)
    - vector layer: emit featureDeleted and featureAdded signals, when added
      features change their temporary to a permanent id (e.g. makes the now defunct
      rows in the attribute table disappear, instead of showing ERROR)
    - memory provider: update the feature id in added features

Juergen E. Fischer 	2012-01-12

    apply #4167

volayaf@gmail.com 	2012-01-11

    added multiple input dialgo and panel

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@13 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Juergen E. Fischer 	2012-01-11

    postgres provider:
    - base geometrytype filtering on GeometryType not WkbType
    - use tooltips on dataitems
    - fix #4783
    - adapt #4767

Juergen E. Fischer 	2012-01-11

    fix warning

Giuseppe Sucameli 	2012-01-11

    enable (or disable) "feature action" tool after adding (or removing) actions

Giuseppe Sucameli 	2012-01-11

    [FEATURE] add "feature action" map tool to run actions directly when clicking on features (fix #119 and #4262)
    work done for Regione Toscana-SIGTA

Giuseppe Sucameli 	2012-01-11

    [FEATURE] use expressions engine to evaluate feature actions
    work done for Regione Toscana-SIGTA

Giuseppe Sucameli 	2012-01-11

    make "action" tab less confusing (partially fix #4211):
    display add and update buttons below the edit action widget (following the "new shapefile" UI style)
    move the "capture output" checkbox away from the "insert field" combo

Giuseppe Sucameli 	2012-01-04

    in the action dialog update the capture checkbox state when populating edit section

VKa 	2012-01-04

    Fix Union tool to produce correct attribute table (fix #4567)

Alexander Bruy 	2012-01-11

    always save last used dir in Raster terrain analysis plugin (fix #4693)

volayaf@gmail.com 	2012-01-11

    simplified ui files
    added search functionality to toolbox

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@12 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Marco Bernasocchi 	2012-01-11

    fixing execinfo.h no such file or directory on android

Merge: 325df26 f7d80e5
Nathan Woodrow 	2012-01-10

    Merge pull request #84 from mbernasocchi/android

    FIX #4201

Marco Bernasocchi 	2012-01-11

    FIX #4201

Juergen E. Fischer 	2012-01-10

    [FEATURE] add status bar tool button that toggles visibility of message log and show tooltips when messages appear while message log is hidden

Juergen E. Fischer 	2012-01-10

    postgres provider fixes

Alexander Bruy 	2012-01-10

    don't overwrite existing classes when reclassify in graduated symbol
    renderer. Also always add default value and use it for all unclassified
    values (fixes #2709)

volayaf@gmail.com 	2012-01-10

    working on qgis plugin, creating parameters window

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@11 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-01-10

    moving to qgis-plugin

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@10 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-01-10

    deleting qgis plugin to upload new stuff

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@8 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

volayaf@gmail.com 	2012-01-10

    deleting qgis plugin to upload new stuff

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@7 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Sandro Santilli 	2012-01-09

    Use ST_MakeEnvelope with PostGIS 2.0+ to build query rectangle

Merge: 838ac1d efb7fad
Tim Sutton 	2012-01-10

    Merge pull request #74 from mbernasocchi/android

    added QScrollarea to new spatialite dialog

Alexander Bruy 	2012-01-10

    fix typo

Alexander Bruy 	2012-01-10

    move map scale selector to QgsScaleComboBox class. Highlight nearest
    value to the current scale when open selectors popup

Juergen E. Fischer 	2012-01-10

    don't require webkit when desktop is not built (refers #4756)

Werner Macho 	2012-01-10

    translation update: es by carlos

Marco Hugentobler 	2012-01-10

    Support for multiband singleband gray

Marco Hugentobler 	2012-01-10

    Remove old code in raster layer

Juergen E. Fischer 	2012-01-10

    - log addition of user coordinate systems
    - include proj.4 definitions in CRS exceptions
    - raster layer: catch exception on extent transformation errors (fixes freeze in #4583)

Juergen E. Fischer 	2012-01-09

    fix vc warnings

Juergen E. Fischer 	2012-01-09

    add missing postgres provider symbol and link spit with QgsPostgresConn

Juergen E. Fischer 	2011-12-29

    [FEATURE][API] postgres provider refactoring:
    - use m prefix for member variables and s prefix for class variables
    - refactor QgsPostgresProvider::Conn and QgsPostgresConnection to QgsPostgresConn
    - put QgsColumnTypeThread into separate file
    - use QgsPostgresConn in QgsPgSourceSelect
    - cleaner abort of column type thread (e.g. remove unfinished columns from
      selection list)
    - [API] move QgsDbTableModel as QgsPgTableModel to provider
    - [FEATURE] support for arbitrary key (including non-numeric and multi column)
    - [FEATURE][API] support for requesting a certain geometry type and/or srid in QgsDataSourceURI
     * no more explicit filter strings
     * support for empty tables without gemetry_columns entry or GEOMETRY type.

Juergen E. Fischer 	2012-01-09

    QgsVectorLayer:
    - boundingBoxOfSelected() iterate only selected feature with featureAtId where available
    - identify unknown extents in metadata

Juergen E. Fischer 	2011-12-28

    german translation update

Werner Macho 	2012-01-09

    translation update: fr by JRM

Juergen E. Fischer 	2012-01-09

    fix 8a2ea36a

Juergen E. Fischer 	2012-01-07

    [FEATURE] make loading attributes interruptable
    - also show progress
    - fix tracking of canvas extent (OTFR wasn't considered)

Juergen E. Fischer 	2012-01-08

    strip toplevel directory from debugging output

Juergen E. Fischer 	2012-01-08

    fix sip bindings

Juergen E. Fischer 	2012-01-09

    [FEATURE] make desktop build optional (but default; fixes #4756)

Marco Hugentobler 	2012-01-08

    Small fix for single band gray renderer

Marco Hugentobler 	2012-01-08

    Move creation of renderer classes out of drawing loop

Juergen E. Fischer 	2012-01-08

    fix #4622

Juergen E. Fischer 	2012-01-07

    fix windows build and some warnings

Marco Hugentobler 	2012-01-07

    Use QImage method for bilinear resampling

Nathan Woodrow 	2012-01-07

    Add highlighting for CASE condition; make regex for quote matching less greedy

volayaf@gmail.com 	2012-01-07

    importing sextante for qgis plugin

    git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@6 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d

Martin Dobias 	2012-01-07

    Expressions - conditional expressions (CASE)

    Right now only without "base" expression:
    CASE WHEN cond1 THEN exp1 [WHEN cond2 THEN exp2]* [ELSE exp3] END

Martin Dobias 	2012-01-06

    plugin installer: use default flags (do not exclude close button)

Martin Dobias 	2012-01-06

    Expressions: support for visitor pattern, expresion->OGCFilter now a visitor

Richard Duivenvoorde 	2011-12-27

    better fix for #4550 change itemchanged event for simple clicked event
    (also should fix #4748)

Alexander Bruy 	2012-01-06

    fix #4748

Nathan Woodrow 	2012-01-06

    [FEATURE] Add label wrapping on character. Semi Fixes #3284

Marco Hugentobler 	2012-01-06

    Single band pseudo color renderer

Merge: abcd193 3f73c85
Marco Bernasocchi 	2012-01-05

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into android

    Conflicts:
src/ui/qgsnewspatialitelayerdialogbase.ui

Marco Hugentobler 	2012-01-05

    More improvements for single band color data

Sergey Yakushev 	2012-01-06

    RoadGraph: fix runtime warnings

Nathan Woodrow 	2012-01-05

    Remove border from expression builder output area

Werner Macho 	2012-01-05

    translation update: pt_BR by arthur

Juergen E. Fischer 	2012-01-04

    fix windows build

Martin Dobias 	2012-01-04

    Do not use automatic grouping anymore

Juergen E. Fischer 	2012-01-04

    debugging improvements:
    - use versioned class variables in QgsApplication (multiple version of qgis_core don't conflict)
    - QgsLogger: log message to file before writing before invoking the message handler
    - on linux: produce backtrace on fatal errors

Juergen E. Fischer 	2012-01-04

    fix #4690

Juergen E. Fischer 	2012-01-04

    nodetool fixes (fixes #4523, #4737 & #4738)

Juergen E. Fischer 	2012-01-04

    node tool: only draw vertex markers in the current canvas (refers to #4523)

Juergen E. Fischer 	2012-01-03

    fix #4732

Marco Hugentobler 	2012-01-03

    Detect if transparency can be ignored for paletted renderer

Juergen E. Fischer 	2012-01-03

    german translation update

Juergen E. Fischer 	2012-01-03

    fix #4523:
    - make geometry validation optional: none, QGIS and GEOS
    - move internal validation to QgsGeometryValidator thread
    - cache wkt in QgsCoordinateReferenceSystem
    - fTools: leave progress of geometry validatation at 100%
    - move coordinate capture to vector menu

Marco Hugentobler 	2012-01-02

    Add single band color data renderer

Juergen E. Fischer 	2012-01-02

    missed a file in last commit

Juergen E. Fischer 	2012-01-02

    - fix #4732
    - move contents of src/app/attributetable and src/app/spatialite up one level
      (there was only one class in each directory left)

Juergen E. Fischer 	2012-01-02

    fix #4736

Merge: ffa2cfd 1d6d296
Werner Macho 	2012-01-02

    Merge pull request #80 from Jean-Roc/master

    update fr strings

Marco Hugentobler 	2012-01-01

    Consider alpha channel for bilinear and cubic resampling

Jean-Roc Morreale 	2012-01-01

    update fr strings

Marco Hugentobler 	2012-01-01

    Consider alpha settings in single band gray renderer

Marco Hugentobler 	2012-01-01

    Fix singlebandgrayrenderer

Giuseppe Sucameli 	2011-12-31

    fix invalid list index in identify results causing wrong result or segfault accessing actions from context menu

Juergen E. Fischer 	2011-12-29

    [FEATURE] add uuid generator widget

Marco Hugentobler 	2011-12-30

    More pixels per raster part

Nathan Woodrow 	2011-12-30

    Wrap field name in quotes when added to expression string

Marco Hugentobler 	2011-12-30

    Provide convenience function to draw image parts for raster renderer

Merge: de48504 3c9d1a3
Nathan Woodrow 	2011-12-30

    Merge branch 'master' into expression-builder-highlighter

Nathan Woodrow 	2011-12-28

    Add = to operators box; Refector connecting of push button signals; Fixes #4706

Marco Hugentobler 	2011-12-29

    Set contrast enhancement to single band gray renderer

Nathan Woodrow 	2011-12-29

    Added basic highlighter for QgsExpression in expression builder widget

Marco Hugentobler 	2011-12-29

    Added single band gray renderer

Alexander Bruy 	2011-12-29

    add new group after current item

Alexander Bruy 	2011-12-29

    insert new layer before selected layer

Marco Hugentobler 	2011-12-29

    Use small overlap between adjacent tiles

Tim Sutton 	2011-12-29

    Fix style classes which lost their attribute association for some reason

Marco Hugentobler 	2011-12-29

    Consider invert color flag

Marco Hugentobler 	2011-12-29

    Use different oversampling factors in x and y directions to problems with resampled image size

Werner Macho 	2011-12-28

    translation update: et by veiko

Giuseppe Sucameli 	2011-12-28

    split proj4string on spaces followed by '+' (instead of spaces only).
    see http://trac.osgeo.org/proj/ticket/132

Marco Hugentobler 	2011-12-28

    Improve handling of corner cases with cubic resampler

Marco Hugentobler 	2011-12-28

    Better handling of edge-cases for bilinear resampler

Nathan Woodrow 	2011-12-28

    Refector QgsExpressionBuilderWidget to add API for loading field names; update uses of widget to use new API

Marco Hugentobler 	2011-12-28

    Fix bilinear resampler

Alexander Bruy 	2011-12-28

    show warning when user tried to create field 'shape' in shapefile (fix #3201)

Marco Hugentobler 	2011-12-28

    Invert color flag for raster renderer

Marco Hugentobler 	2011-12-28

    Use raster renderer functions to retrieve data parts for multiband color too

Werner Macho 	2011-12-27

    translation update: pl by robert (and string updates for pl and es)

Werner Macho 	2011-12-27

    translation update: es by carlos

Tim Sutton 	2011-12-27

    Use proper QGIS acronym (instead of Qgis) for OSX install notes

Alexander Bruy 	2011-12-27

    fix windows build

Juergen E. Fischer 	2011-12-27

    ogr provider:
    - support for OLCStringsAsUTF8 (fixes #4558)
    - remove quotation on "ORDER BY" (produces a syntax error otherwise)
    - support for null values in uniqueValues/minimumValue/maximumValue

Juergen E. Fischer 	2011-12-27

    query  builder: support null values in values lists

Juergen E. Fischer 	2011-12-27

    indentation update

Juergen E. Fischer 	2011-12-25

    german translation update

Marco Hugentobler 	2011-12-27

    Consider transparency in raster renderer

Marco Hugentobler 	2011-12-27

    Select resampling type from raster properties. Read and write resampling method to project file

Alexander Bruy 	2011-12-27

    add layers to group even group is not selected but selected child item
    in this group

Marco Hugentobler 	2011-12-27

    Improve incremental WFS fetch. Patch from Bill Clay from ticket 4604

Merge: bdd33b3 ba2a205
William Kyngesburye 	2011-12-26

    Merge branch 'master' of github.com:qgis/Quantum-GIS

William Kyngesburye 	2011-12-26

    generalize helper apps bundling; more quoting

Alexander Bruy 	2011-12-26

    support for cyrillic symbols in raster metadata (fix #4452)

Alexander Bruy 	2011-12-26

    sort panels alphabeticaly in context menu

William Kyngesburye 	2011-12-26

    missed a few quotings

William Kyngesburye 	2011-12-26

    more quoting in case there are empty variables, and tests for existence of files before executing commands

Marco Hugentobler 	2011-12-26

    Support for global transparency in raster renderer

Juergen E. Fischer 	2011-12-25

    implement #4217

Juergen E. Fischer 	2011-12-25

    fix #4305

Juergen E. Fischer 	2011-12-25

    fix sip annotation

William Kyngesburye 	2011-12-25

    don't create framework folders if framework does not exist;
    quote library names for IF test

Marco Hugentobler 	2011-12-25

    Clean up memory

Marco Hugentobler 	2011-12-25

    Remove legacy code in palleted raster renderer

Marco Hugentobler 	2011-12-25

    Fix some errors related to reading rasters in multiple parts

Marco Hugentobler 	2011-12-24

    Reading of rasters in several parts

Juergen E. Fischer 	2011-12-24

    fix #4371

Juergen E. Fischer 	2011-12-24

    fix #4402

Juergen E. Fischer 	2011-12-24

    update for sip 4.13

Juergen E. Fischer 	2011-12-24

    fix #3185 and #4689

Juergen E. Fischer 	2011-12-24

    fix #3963

Juergen E. Fischer 	2011-12-24

    fix runtime warnings

Juergen E. Fischer 	2011-12-23

    fix #4646

Juergen E. Fischer 	2011-12-23

    fix #4478

Juergen E. Fischer 	2011-12-23

    disable rendering while legend group is removed

Juergen E. Fischer 	2011-12-23

    fix #4694

Alexander Bruy 	2011-12-23

    always create Database menu after Raster one

Alexander Bruy 	2011-12-23

    move MapServer export and OSM plugins to Web menu

Alexander Bruy 	2011-12-23

    added Web menu and toolbar for plugins

Alexander Bruy 	2011-12-23

    [BACKPORT] display CRS in fTools as authid-description pair

Alexander Bruy 	2011-12-23

    [BACKPORT] update QgsGenericProjectionSelector bindings

Alexander Bruy 	2011-12-23

    [BACKPORT] don't ask for CRS when opening New Shapefile dialog (fix #4379)

Alexander Bruy 	2011-12-23

    [BACKPORT] add extension to new SpatiaLite database if user ommits it

Juergen E. Fischer 	2011-12-22

    gdal provider: add statusChanged signal and fix debugging output

Richard Duivenvoorde 	2011-12-22

    apply pull #64:
    - make proj4 string area resizable
    - this overriding the cursor messes up the cursor in the Qsplitter etc.
    - 4 recent crs's is a little low... make it 8
    - fixing the selecting of the non-current crs when dialog shows

Juergen E. Fischer 	2011-12-22

    german translation update

Juergen E. Fischer 	2011-12-22

    postgres provider: remove ctid limitation to 32bit

Alexander Bruy 	2011-12-22

    [BACKPORT] use native projection selector in New SpatiaLite layer
    dialog (completely fix #4549)

Juergen E. Fischer 	2011-12-22

    fix #4647 (introduced in 3b9b2d - track backports please)

Alexander Bruy 	2011-12-22

    new gis theme icon for Merge shapefiles tool. Thanks to Robert

Marco Hugentobler 	2011-12-22

    [backport]: fix for attribute shift in form when invoked from table

Marco Hugentobler 	2011-12-21

    [backport] Skip attribute values with invalid variant type (fixes ticket #4684)

Marco Hugentobler 	2011-12-21

    Fix bug in cubic interpolation

Alexander Bruy 	2011-12-21

    [BACKPORT] fix Query builder from layer properties when layer name in
    cyrrilic (fix #2435)

Radim Blazek 	2011-12-21

    No data values fix. Very small numbers were used instead of very big numbers for FCELL and DCELL - 0 values were rendered as null. Better looking values used because are shown in GUI

Marco Hugentobler 	2011-12-21

    Use bezier interpolation for cubic resampling. Still buggy

Juergen E. Fischer 	2011-12-21

    german translation update

Marco Hugentobler 	2011-12-21

    Added cubic resampler (not working yet)

Radim Blazek 	2011-12-20

    reload default color table

Merge: 9f8f86d 8f31f24
Gary Sherman 	2011-12-20

    Merge pull request #75 from g-sherman/master

    Added tip about plugins

Gary Sherman 	2011-12-20

    Added a tip about plugins

Alexander Bruy 	2011-12-20

    introduced new plugin metadata entry "category". Show hint based on
    category in Plugin Manager and update all core plugins respectively

Alexander Bruy 	2011-12-20

    move RoadGraph plugin to Vector menu and eVis to Database as suggested
    by Paolo

Alexander Bruy 	2011-12-20

    move database plugins buttons to the Database toolbar

Alexander Bruy 	2011-12-20

    added Database toolbar in addition to the Database menu

Alexander Bruy 	2011-12-20

    quick temporary fix for fTools to work with new Vector menu

Alexander Bruy 	2011-12-20

    move some plugins under Vector menu and toolbar

Alexander Bruy 	2011-12-20

    add Vector menu and toolbar to improve plugins organization

Alexander Bruy 	2011-12-20

    move all raster related plugins to the Raster menu (adresses #4395)

Alexander Bruy 	2011-12-20

    implement helper methods to add plugins to the Raster menu and toolbar

Juergen E. Fischer 	2011-12-20

    readd google mercartor (pseudo epsg:900913) removed with with 42e02d82c05b4da370be77ef71345ba62457cc66 (IssueID #4652)

Juergen E. Fischer 	2011-12-20

    apply #4685

Marco Hugentobler 	2011-12-19

    More precise composer map rotation (ticket #4632)

Radim Blazek 	2011-12-19

    use double instead of float for min/max values, fixes #4315

Alexander Bruy 	2011-12-19

    [FEATURE] use combobox to display scale. Also add predefined values for
    quick scale select

Marco Hugentobler 	2011-12-19

    No access to invalid image pixels

Marco Hugentobler 	2011-12-19

    Add renderer class for multiband color

Marco Hugentobler 	2011-12-19

    Fix resampling with otf-reprojection turned on

Marco Hugentobler 	2011-12-18

    Bilinear resampler

Radim Blazek 	2011-12-18

    set min/max values if available for single band, set StretchToMinimumMaximum if min/max are available for grayscale, fixes part of #4193 - GRASS rasters are drawn in gray

Radim Blazek 	2011-12-18

    set raster stats bandName and bandNumber, fixes one problem of #4193 - band name can only be set to "" or "Not set".

Marco Hugentobler 	2011-12-18

    Added raster renderer interface and test implementation for paletted rasters

Marco Hugentobler 	2011-12-18

    Raster redesign: first prototype of paletted renderer

Marco Hugentobler 	2011-12-18

    Enable button to access label engine settings

Juergen E. Fischer 	2011-12-18

    fix #4389

Juergen E. Fischer 	2011-12-18

    add log messages to raster layer

Juergen E. Fischer 	2011-12-18

    fix typos

Marco BErnasocchi 	2011-12-18

    added QScrollarea to new spatialite dialog

Alexander Bruy 	2011-12-17

    [BACPORT] fix Merge shapefile to one crash when used layers mode

Alexander Bruy 	2011-12-17

    minor UI fix in New SpatiaLite Layer dialog

Juergen E. Fischer 	2011-12-16

    remove "unsynced" EPSG CRS that are not listed in GDAL (closes #4652)

Alexander Bruy 	2011-12-16

    new icons for RGB to PCT and PCT to RGB tools from Robert

Marco Hugentobler 	2011-12-16

    Added title / abstract to python bindings

Merge: c336eca dcae360
Marco Hugentobler 	2011-12-16

    Merge branch 'wms_layer_title_abstract'

Marco Hugentobler 	2011-12-16

    Better layout for abstract text edits

Alexander Bruy 	2011-12-16

    [BACKPORT] add extension to new GPX file if user ommit it (fix #4623)

Marco Hugentobler 	2011-12-15

    Publish layer titles and abstracts in WMS capabilities

Marco Hugentobler 	2011-12-15

    [FEATURE]: layer can have abstracts and title (e.g. for the use in WMS server)

Marco Hugentobler 	2011-12-15

    Fix column mismatch in wfs dialog

Alexander Bruy 	2011-12-15

    use project title as default filename in Save and Save as dialogs
    (implements #4326)

Werner Macho 	2011-12-15

    translation update: et by veiko

Alexander Bruy 	2011-12-14

    [BACKPORT] sort layers and fields alphabetically in fTools (fix #4412)

pcav 	2011-11-14

    Minor fix to IT GUI

Juergen E. Fischer 	2011-12-13

    fix windows build

Marco Hugentobler 	2011-12-13

    typo

Marco Hugentobler 	2011-12-13

    [FEATURE]: choice to keep WFS layers in cache or load the data on redraw

Alexander Bruy 	2011-12-13

    [BACKPORT] use native separators in filename edit widget (fix #2992)

Merge: 8bdf404 3f14ea8
Sergey Yakushev 	2011-12-13

    Merge remote branch 'pb/master'

Marco Hugentobler 	2011-12-13

    Avoid warnings

Merge: 700e6b4 05fd598
Marco Hugentobler 	2011-12-13

    Merge branch 'wfs_filter'

Marco Hugentobler 	2011-12-12

    Don't forget to send server response if in release mode

Merge: bca3f93 a9616b3
Werner Macho 	2011-12-11

    Merge pull request #72 from Jean-Roc/master

    update fr strings

Jean-Roc Morreale 	2011-12-11

    update fr string, correct keybord shorcuts

Juergen E. Fischer 	2011-12-10

    fix source permissions

Juergen E. Fischer 	2011-12-10

    enable wait cursor when wms search is ongoing (closes #4625)

Alexander Bruy 	2011-12-10

    don't keep shortcuts after uninstalling standalone version (fix #2977)

Alexander Bruy 	2011-12-10

    remove debug output from fTools (again)

Radim Blazek 	2011-12-10

    #3723 fix, sync transparency table with raster

Alexander Bruy 	2011-12-10

    [BACKPORT] mark project dirty when added or removed composer (fix #3577)

Merge: e154f69 c7db7da
Radim Blazek 	2011-12-10

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2011-12-10

    #3576 fix, load default raster style

Merge: 315bd85 13fdca8
Werner Macho 	2011-12-10

    Merge pull request #71 from Cracert/master

    translation update: pl

Juergen E. Fischer 	2011-12-09

    - update wms metadata (fixes #4626)
    - german translation fixes
    - fix warnings

Robert Szczepanek 	2011-12-09

    translation update: pl by Milena

Giuseppe Sucameli 	2011-12-09

    [BACKPORT] Enable path to pymods in GdalTools settings dialog and automatically set default OSX environment (fix #3170)

Marco Hugentobler 	2011-12-09

    Enable wfs extent option again

Alexander Bruy 	2011-12-09

    remove some debug output from fTools

Marco Hugentobler 	2011-12-09

    Support writing filters by hand, remove namespace from filter element, better comments

Merge: 6fbad32 a6746f1
Tim Sutton 	2011-12-09

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-12-09

    Applied patch from Borys Jurgiel to correct some plugin manager wobblies. See #4621

Marco Hugentobler 	2011-12-09

    qgis server: allow empty strings in filters

Alexander Bruy 	2011-12-09

    [BACKPORT] move database related plugins to Database menu and create
    some icons in Layers toolbar (partial fix for #4395)

Juergen E. Fischer 	2011-12-08

    WMS server: add more capabilities to GetCapabilities response (including GetPrint)
    Thanks Marco Lechner for the initial patch.

Juergen E. Fischer 	2011-12-07

    [FEATURE] WMS server: add support for WMS 1.1.1 and port to QMap (from std::map)
    Thanks Marco Lechner for the initial WMS 1.1.1 patch.

Marco Hugentobler 	2011-12-08

    WMS server: let fuzzy string functions go through filter safety test

Marco Hugentobler 	2011-12-08

    More descriptive parameter name and comment

Marco Hugentobler 	2011-12-01

    Show marker sizes and line widths in composer in proportion to the page

Marco Hugentobler 	2011-12-08

    Filter export for operators AND / OR

Merge: a74d82d f1c4d53
marco 	2011-12-07

    Merge branch 'composeritem_xml'

Marco Hugentobler 	2011-12-07

    OGC filter export: support for basic comparison operators, literal and propertyName

Werner Macho 	2011-12-07

    translation update: string updates Estonian

Marco Hugentobler 	2011-12-07

    Read available provider fields for expression dialog from wfs DescribeFeatureInfo

Werner Macho 	2011-12-07

    translation update: et by Veiko

marco 	2011-12-07

    Option to create undo commands whan adding composer items from xml

marco 	2011-12-07

    Move more item related functions from composerview to composeritem

Juergen E. Fischer 	2011-12-07

    german translation update

Juergen E. Fischer 	2011-11-30

    hide layer order dock by default

Juergen E. Fischer 	2011-11-30

    add tooltip for 'Select At Id' option in postgres selection dialog

Juergen E. Fischer 	2011-12-06

    reindent main.cpp

Juergen E. Fischer 	2011-12-06

    implement #4615: save as spatialite

Juergen E. Fischer 	2011-12-06

    wms provider: log error message, if a faulty image is returned.

Marco Hugentobler 	2011-12-06

    Possibility to add several wfs layers in one go

Alexander Bruy 	2011-12-06

    fix build

Werner Macho 	2011-12-06

    translation update: small typo fix

Tim Sutton 	2011-12-06

    Added more debugging info to wms server. Also when compiled in debug mode, it will write the last rendered image out to the system temp dir (overwriting it with each render)

Merge: 5b6b293 0c39be6
Tim Sutton 	2011-12-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

marco 	2011-12-05

    More cleanups

marco 	2011-12-05

    Remove addItem methods of composer view. Use the ones from composition instead

Werner Macho 	2011-12-05

    translation update: pt_PT by Luís de Sousa

marco 	2011-12-05

    Keep item option tab up-to-date

Marco Hugentobler 	2011-12-05

    Fix crash with relative file paths if projPath is not yet defined

Alexander Bruy 	2011-12-05

    [BACKPORT] don't change cursor to hourglass for fTools that runs in
    separate thread

Alexander Bruy 	2011-12-05

    [BACKPORT] run Split vector layer tool in separate thread to prevent UI
    blocking

Merge: d38a0bc 5151b2a
Tim Sutton 	2011-12-04

    Merge pull request #68 from mbernasocchi/android

    [BP18] Android adaptations

Merge: f9f4860 d38a0bc
Tim Sutton 	2011-12-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Werner Macho 	2011-12-04

    translation update: mn by Bayarmaa

Merge: e2dac54 f00785f
Werner Macho 	2011-12-04

    Merge pull request #70 from Jean-Roc/master

    update fr translation

marco 	2011-12-04

    Move loading of items to qgscomposition to avoid duplicated code

Juergen E. Fischer 	2011-12-03

    fix #4600: also remove invisible layers from layer order list

Marco BErnasocchi 	2011-12-03

    - added CmakeLists.txt.user to .gitignore

Marco BErnasocchi 	2011-12-03

    - Fixed pull request comments

Alexander Bruy 	2011-12-02

    [BACKPORT] New vector layer dialog - show CRS as authid-description pair
    instead of proj4 string

Alexander Bruy 	2011-12-02

    [BACKORT] move Add attribute button in New vector layer dialog (fix #2749) and some other minor UI fixes

Merge: ad8ae1b 335dbf1
Tim Sutton 	2011-12-02

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 7c128e1 c63b149
Tim Sutton 	2011-12-01

    Merge pull request #69 from NathanW2/ui-tweaks

    Reduce layout margins on legend, legend order, python console. Change le...

Nathan Woodrow 	2011-12-02

    Reduce layout margins on legend, legend order, python console. Change legend order font size to 10 same as legend

Alexander Bruy 	2011-11-29

    minor UI fix in vector layer properties dialog

Giuseppe Sucameli 	2011-12-01

    add helpful info to GdalTools Settings dialog on how to configure GDAL path

Giuseppe Sucameli 	2011-12-01

    [BACKPORT] find python on OSX (partially fix #3097)
    don't overwrite PATH env var, but append to it.

Marco Bernasocchi 	2011-11-30

    fix #4573

Tim Sutton 	2011-11-30

    Revert "Merge branch 'master' of github.com:qgis/Quantum-GIS into qgis-master"

    This reverts commit 78ce3cdc84b79dbec5d227db9ee14af6edf9af66, reversing
    changes made to 2414a3abbc97483a5355c262a96c4fc353566bcb.

Merge: 2414a3a 763caa7
Tim Sutton 	2011-11-30

    Merge branch 'master' of github.com:qgis/Quantum-GIS into qgis-master

Tim Sutton 	2011-11-30

    [UI] put wms options for project properties into a scroll widget so dialog can be resized vertically

Tim Sutton 	2011-11-30

    [UI] put wms options for project properties into a scroll widget so dialog can be resized vertically

Merge: 2bd2d84 8e4e8e1
Tim Sutton 	2011-11-30

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-11-30

    german translation update

Martin Dobias 	2011-11-30

    Allow changing rendering order in rule-based renderer

Martin Dobias 	2011-11-30

    Allow rules to have children

Juergen E. Fischer 	2011-11-30

    [FEATURE] allow to disable SelectAtId capability for PostgreSQL provider to
    force usage of the attribute table memory model.  Apparently the memory model
    was completely disfunctional before.  Fixes included, but it probably needs
    more testing.

Juergen E. Fischer 	2011-11-30

    legend order: add checkboxes to control whether the legend or the layer order controls render order

Merge: ce80710 376d45b
Marco BErnasocchi 	2011-11-29

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS into android

marco 	2011-11-28

    [FEATURE]: Copy paste for composer item. Provided by Anna Kratochvilova in ticket #4070

Juergen E. Fischer 	2011-11-29

    remove superfluous closing parenthesis

Merge: 2bd2d84 4b86c71
Tim Sutton 	2011-11-29

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco BErnasocchi 	2011-11-29

    cleaning up for pull

Marco BErnasocchi 	2011-11-29

    cleaning up for pull request

Merge: 249d889 4b86c71
Marco BErnasocchi 	2011-11-29

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS into android

marco 	2011-11-28

    Ticket #4035

Jean-Roc Morreale 	2011-11-28

    update french gui

marco 	2011-11-28

    [FEATURE]: alignment (left/middle/right) for composer scale bar to keep bar position when zooming

Merge: 1b6e10d a5b9f92
Tim Sutton 	2011-11-27

    Resolved merge conflicts

Merge: 476df40 32ad063
Tim Sutton 	2011-11-27

    Merge pull request #67 from NathanW2/projection-ui

    More tweaks to the Projection selector widget

Juergen E. Fischer 	2011-11-27

    yet another german translation update

Juergen E. Fischer 	2011-11-27

    fix initial state of layer order list on project load

Juergen E. Fischer 	2011-11-27

    more log messages and auto-resize cells

Merge: 301d207 191fb22
Tim Sutton 	2011-11-27

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Merge: 545e9a4 bae8301
Tim Sutton 	2011-11-27

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-11-27

    use the same format in logfile and on console and use either console or logfile

Nathan Woodrow 	2011-11-27

    Put 'Hide deprecated CRSs' back to size 9

Nathan Woodrow 	2011-11-23

    UI tweaks to the projection UI; Remove old buttons and code etc

Radim Blazek 	2011-11-27

    maxdev must also be inited

Nathan Woodrow 	2011-11-27

    Put 'Hide deprecated CRSs' back to size 9

Radim Blazek 	2011-11-27

    array init fix

Radim Blazek 	2011-11-27

    Use QImage in QgsMapCanvasMap by default, QImage was set by default from GUI, only if a user applied options from gui, otherwise QPixmap (8x slower) was used)

Radim Blazek 	2011-11-27

    missing iostream

Juergen E. Fischer 	2011-11-27

    another german translation update

Juergen E. Fischer 	2011-11-27

    add translation strings for expression builder

Juergen E. Fischer 	2011-11-27

    missed new files of 46bc34df8c0312cd169f7a1e10305060437d5cfc

Juergen E. Fischer 	2011-11-26

    debian packaging update

Juergen E. Fischer 	2011-11-26

    german translation update

Juergen E. Fischer 	2011-11-26

    [FEATURE] allow legend independant drawing order

Juergen E. Fischer 	2011-11-26

    add log messages to OGR provider

Juergen E. Fischer 	2011-11-26

    make log tabs closable

Juergen E. Fischer 	2011-11-26

    remove unnecessary iostream includes

Martin Dobias 	2011-11-26

    Moved symbol levels button under renderer's advanced menu

Martin Dobias 	2011-11-26

    Introduce capabilities for renderers (now only symbol levels capability)

Martin Dobias 	2011-11-26

    Move rules up/down instead of inc/dec priorities

Martin Dobias 	2011-11-25

    Remove "first rule" and "use symbol levels" options

Martin Dobias 	2011-11-25

    Support multiple matching rules per feature, always using symbol levels

Sandro Santilli 	2011-11-25

    Simplify generation of SQL query for selecting features in a box.

    This is propedeutic to upcoming changes related to boxes in PostGIS 2.0

Sandro Santilli 	2011-11-21

    [FEATURE] Detect topology support

Juergen E. Fischer 	2011-11-25

    log more error messages

Juergen E. Fischer 	2011-11-25

    german translation update

Juergen E. Fischer 	2011-11-25

    default postigis geometry columns lookups in the meta data only

Marco Hugentobler 	2011-11-25

    [FEATURE]: allow item selection tolerance in composer (default is 0)

Sergey Yakushev 	2011-11-25

    fix QgsGraphAnalyzer: a bad result if the source is a symmetric graph

Merge: 39a039d 898604d
Tim Sutton 	2011-11-25

    Resolved merge conflicts

Merge: 5b9cc5c 898604d
Marco BErnasocchi 	2011-11-25

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS into android

Merge: dde7032 898604d
Tim Sutton 	2011-11-24

    Resolved merge conflicts

Merge: 23ce247 d3e913c
Martin Dobias 	2011-11-24

    Merge pull request #56 from NathanW2/function_help

    Handle function help the same way as context help; Allows easier management of function help texts

Merge: c02ccc9 9048107
Tim Sutton 	2011-11-24

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-11-24

    missed a file in last commit

Juergen E. Fischer 	2011-11-24

    [FEATURE] add row cache for attribute table

Juergen E. Fischer 	2011-11-24

    fix crash when project is not yet saved

Merge: 52eb8fd dde7032
Tim Sutton 	2011-11-24

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Tim Sutton 	2011-11-24

    Added the show scale range button

Marco BErnasocchi 	2011-11-24

    fix for issue 4224:
    - plugins are loaded only if called *plugin.so
    - providers are loaded only if called *provider.so

Tim Sutton 	2011-11-23

    Enable html inspection of web views in debug mode

Tim Sutton 	2011-11-23

    Updates for html interaction with qgis - raster metadata revamp

Nathan Woodrow 	2011-11-23

    UI tweaks to the projection UI; Remove old buttons and code etc

Tim Sutton 	2011-11-23

    Further updates to places provider registry called pluginPath to make it use providerPath now

Marco BErnasocchi 	2011-11-23

    Added support for unversioned libs for android

Tim Sutton 	2011-11-22

    Further updates to flot histogram implementation - added legend and try to map colours more intelligently

Merge: 6191319 376adc4
Tim Sutton 	2011-11-22

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-11-22

    emulate getrusage(2) on windows (borought from PostgreSQL)

Merge: 1b3c383 a0dad9c
Tim Sutton 	2011-11-22

    Merge pull request #59 from NathanW2/window_theme

    [FEATURE] Allow the user to select the Qt windows style they want

Merge: ec7e159 b6d986c
Tim Sutton 	2011-11-22

    Merge pull request #66 from rduivenvoorde/projection-ui

    [FEATURE] UI Overhaul for #4550 projection ui work

Richard Duivenvoorde 	2011-11-22

    for #4550 projection ui work

marco 	2011-11-21

    Point displacement renderer: fix loading embeded renderers

Tim Sutton 	2011-11-21

    Make save as image work for new histogram implementation

Radim Blazek 	2011-11-21

    Dont use QgsApplication, --prefix, json fix

Tim Sutton 	2011-11-21

    Fix refresh of histogram when tab is already active

Tim Sutton 	2011-11-21

    Improvements to graph - allow interactive pan & zoom

Tim Sutton 	2011-11-21

    Further updates to flot graphing for raster histogram

Sergey Yakushev 	2011-11-21

    fix Road graph plugin: enable geometry type filter

Merge: 555e028 7f1ca27
Tim Sutton 	2011-11-20

    Merge pull request #64 from rouault/master

    OGR provider: don't segfault when the layer cannot be retrieved (e.g. datasource with 0 layer)

Even Rouault 	2011-11-20

    OGR provider: don't segfault when the layer cannot be retrieved (e.g. datasource with 0 layer)

Tim Sutton 	2011-11-20

    Further implementation of flot based graphing for raster stats

Radim Blazek 	2011-11-20

    benchmark program

Tim Sutton 	2011-11-20

    In progress work to replace qwt with flot for raster histogram

Tim Sutton 	2011-11-19

    Fixed bug in showSettings output and noted that providerPath is new to 2.0 api

Tim Sutton 	2011-11-19

    Keep providers in a separate dir to plugins

Nathan Woodrow 	2011-11-19

    Reduce margins; hide row header; use DotLine for grid; reduce spacing between rows

Juergen E. Fischer 	2011-11-18

    [FEATURE] message log window

Juergen E. Fischer 	2011-11-18

    fix tab restoration in project properties

Juergen E. Fischer 	2011-11-18

    make relative paths default

Merge: 8f33367 d6ffb81
Giuseppe Sucameli 	2011-11-18

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Giuseppe Sucameli 	2011-11-18

    make v.what.vect working with GRASS 6.4.2rc2 (fix #4552)

Marco Hugentobler 	2011-11-18

    Initialize default symbol to 0 in rule based renderer

Tim Sutton 	2011-11-17

    Backport 1.7 changelog changes and updated sponsors to include Uster

Martin Dobias 	2011-11-17

    [FEATURE] Delete SpatiaLite tables from browser

Martin Dobias 	2011-11-17

    Optimize SpatiaLite feature reading speed

Giuseppe Sucameli 	2011-11-17

    fix #4465 to make the GRASS plugin working with GRASS 6.4.2RC2

Merge: aabfdf9 0a17ad5
Nathan Woodrow 	2011-11-17

    Merge upstream/master; fix conflicts

Giuseppe Sucameli 	2011-11-17

    fix #4466

Nathan Woodrow 	2011-11-17

    Use null string vs empty

Juergen E. Fischer 	2011-11-17

    fix windows build

Merge: 608e7d0 00e0a61
Werner Macho 	2011-11-17

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Werner Macho 	2011-11-17

    translation update: galician and norwegian

Werner Macho 	2011-11-17

    translation: added galician language on request - some changes to new norwegian language

Marco Hugentobler 	2011-11-17

    WMS server: another correction to correctly support embedded layers and groups

Juergen E. Fischer 	2011-11-17

    osgeo4w update: use GRASS 6.4.2RC2

Tim Sutton 	2011-11-17

    Added make check command for Sandro Santilli and other gnu make officianados

Merge: 483a8d8 c585a49
Tim Sutton 	2011-11-17

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-11-16

    debian packaging update

Martin Dobias 	2011-11-16

    [FEAUTRE] Import of vectors to SpatiaLite in browser + move MIME type stuff to a separate file

Martin Dobias 	2011-11-16

    Move creation of SpatiaLite DB to provider + option to create DB from browser

Tim Sutton 	2011-11-16

    Fixes so qgspoint unit tests all pass

Alexander Bruy 	2011-11-16

    fix build error introduced in ed13141b67

Merge: f0d6cea 275585c
Werner Macho 	2011-11-16

    Merge remote-tracking branch 'upstream/master'

Marco Bernasocchi 	2011-11-16

    added new qtmain_android.cpp

Werner Macho 	2011-11-16

    translation update: added norwegian on request

Marco Bernasocchi 	2011-11-16

    changed app class path

Juergen E. Fischer 	2011-11-16

    fix creatation of python output directory on windows

marco 	2011-11-16

    Better implementation of QgsProjectParser::mapLayerFromStyle

Juergen E. Fischer 	2011-11-16

    debian packaging update

Martin Dobias 	2011-11-15

    Fix #4511 - refreshing of Postgres tables

Juergen E. Fischer 	2011-11-15

    fix windows build and include tests runs in nightly build

Marco Hugentobler 	2011-11-15

    Added python bindings for vector field symbollayer

marco 	2011-11-14

    Flag to allow usage of QGIS server with an x-server (vector pdf output for patterns)

Tim Sutton 	2011-11-14

    Partial fix to coordinate reference system unit tests

Tim Sutton 	2011-11-14

    Make more tests work - only 4/16 fail now

Tim Sutton 	2011-11-14

    Updates for regression992 test - test should work but raster still introduces some difference which I am working to figure out why

Tim Sutton 	2011-11-14

    Fix problem with analyzer test

Tim Sutton 	2011-11-14

    Further updates to the unit tests - still not all passing yet

Merge: e54680d f0839fb
Tim Sutton 	2011-11-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-11-14

    Updates for unit tests so they actually run and fix application test

marco 	2011-11-14

    Save some time in node tool for geometry export and avoid detachs

Tim Sutton 	2011-11-14

    Enable tests by default

Merge: 9adb57e cf84987
Tim Sutton 	2011-11-13

    Merge pull request #61 from rduivenvoorde/cf849875

    fix for #4500

marco 	2011-11-13

    Don't show invisible layers and features in wms server feature info

Richard Duivenvoorde 	2011-11-13

    fix for #4500, endlessloop because of too small tolerance

Sandro Santilli 	2011-11-13

    Add support for TopoGeometry datatype

    (don't get too excited)

Juergen E. Fischer 	2011-11-13

    update qgisapp for new codename

Alexander Bruy 	2011-11-13

    [BP18] wrap long label in Options dialog to avoid horizontal scrolling

Juergen E. Fischer 	2011-11-13

    german translation update

Merge: 27e770a d52c510
pcav 	2011-11-13

    Merge branch 'master' of github.com:qgis/Quantum-GIS

marco 	2011-11-13

    WMS server: support relative pathes to spatialite dbs

Merge: 76244bc f8bbe8f
Marco Bernasocchi 	2011-11-13

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into android

pcav 	2011-10-19

    More typos in IT GUI

Alexander Bruy 	2011-11-13

    [FEATURE] add gdal_fillnodata to GdalTools

Alexander Bruy 	2011-11-13

    [BACKPORT] fix broken Assign projection functionality in GDALTools and
    improve handling output file extension

Nathan Woodrow 	2011-11-13

    Add note about restart required

Nathan Woodrow 	2011-11-13

    Allow user to select Qt app style

Tim Sutton 	2011-11-13

    Updated version number and splash for master branch

Merge: 1148aaf 33b7e31
Tim Sutton 	2011-11-13

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-11-13

    [BP17]Added Voralberg as silver sponsor

Alexander Bruy 	2011-11-12

    [BACKPORT] Union and Symetrical difference works only on whole layer

Alexander Bruy 	2011-11-12

    [BACKPORT] fix holes in Union output (fix #3581)

Merge: ce8c75f e115975
Werner Macho 	2011-11-12

    Merge pull request #58 from Jean-Roc/master

    [BP18] Update french UI

Jean-Roc Morreale 	2011-11-12

    [BP18] update UI strings

Alexander Bruy 	2011-11-12

    [BACKPORT] add What's this to Help menu (implement #4179)

Juergen E. Fischer 	2011-11-12

    german translation update

Merge: cf7b989 d3fe194
Tim Sutton 	2011-11-12

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-11-12

    Added another way to find org files (but commented out)

Tim Sutton 	2011-11-12

    Enable new repo by default now too

Alexander Bruy 	2011-11-12

    [BACKPORT] fTools: update layers lists after adding new layer to TOC (fix #4318)

Alexander Bruy 	2011-11-12

    [BACKPORT] don't block QGIS main window when running Merge shapefiles
    tool. Partially addresses #4383

Alexander Bruy 	2011-11-12

    [BACKPORT] remove executable flag from fTools sources

Alexander Bruy 	2011-11-12

    [FEATURE] Densify geometries tool for fTools (fix #3628). Still without
    icon

Alexander Bruy 	2011-11-12

    [FEATURE] Build spatial index tool for fTools (see #2779). Currently
    without icon

marco 	2011-11-12

    sld parser in qgis server is still on old symbology

Merge: 8422a9d 05edbed
Werner Macho 	2011-11-12

    Merge pull request #57 from Jean-Roc/master

    updates_ts script for fedora + update local

Jean-Roc Morreale 	2011-11-11

    update french string

Jean-Roc Morreale 	2011-11-11

    adapt the script for fedora

Martin Dobias 	2011-11-11

    Do not validate the geometry if it is known to be valid - save some time

Radim Blazek 	2011-11-11

    correct source data type in meta (instead of internal daty type used in QGIS)

Martin Dobias 	2011-11-08

    [FEATURE] Allow plugin metadata to be in metadata.txt

    Until now plugins' metadata were always retrieved from __init__.py by calling python methods.
    Reading metadata from a text file has the advantage of not requiring to load the plugin code
    and can be done by plugin repository.

    Metadata in metadata.txt is preferred to the methods in __init__.py - if the text file is
    present, it is used to fetch the values. From QGIS 2.0 the metadata from __init__.py
    will not be accepted - the metadata.txt file will be required.

    Plugin metadata should be in INI file format, recognized by python's ConfigParser module
    and by Qt's QSettings class.

    All currently used metadata should be in [general] section. Example use:

    [general]
    name=PostGIS manager
    description=Manage your PostGIS database
    version=Version 0.5.15
    icon=icons/postgis_elephant.png
    qgisMinimumVersion=1.0.0

Juergen E. Fischer 	2011-11-09

    put spatialindex header directory in front of GEOS

Merge: 52a3009 eda69e6
Sergey Yakushev 	2011-11-09

    Merge remote branch 'pb/master'

Merge: c37b63a 98d5a76
Giuseppe Sucameli 	2011-11-09

    Merge remote-tracking branch 'brushtyler/master'

Giuseppe Sucameli 	2011-11-09

    fix for crash in projection selection

Martin Dobias 	2011-11-08

    Fix label orientation with line dependent position (#3643)

Juergen E. Fischer 	2011-11-08

    german translation update

Martin Dobias 	2011-11-01

    More intuitive setting for orientation of labels (map/line)

Sandro Santilli 	2011-10-22

    Disable options related to interpretation and threatment of above/below line labeling when online labeling is requested.

Marco Hugentobler 	2011-11-08

    Fix detection of CRS meter units

Martin Dobias 	2011-11-06

    Make sure that relevant fields are set always when necessary.

Martin Dobias 	2011-10-04

    Significantly improve OGR fetching speed - set ignored field only on select()

    Beware: featureAtId() may interfere, this should be checked.

Juergen E. Fischer 	2011-11-07

    postgres provider: also consider int2 and int8 as primary candidates of views

Juergen E. Fischer 	2011-10-28

    when intializing from WKT favourize EPSG instead of PROJ.4

Radim Blazek 	2011-11-07

    GRASS version support

Radim Blazek 	2011-11-07

    GRASS version support

Nathan Woodrow 	2011-11-07

    Handle function help the same way as context help; Allows easier management of help; Use same style sheet as context help.

Juergen E. Fischer 	2011-11-07

    remove spatialindex include

William Kyngesburye 	2011-11-06

    OS X build/install updates

William Kyngesburye 	2011-11-06

    fix for #3999 until something better can be done

William Kyngesburye 	2011-11-06

    frameworkize networkanalysis on OS X

William Kyngesburye 	2011-11-06

    missed a bit for bundling qsqlite

William Kyngesburye 	2011-11-06

    bundle qsqlite for eVis plugin; bundle other Qt frameworks for extra plugins

William Kyngesburye 	2011-11-06

    fix missing spatialindex include dir

marco 	2011-11-05

    Refresh map list in composer table widget in showEvent. Ticket #4496

Martin Dobias 	2011-11-04

    Fix #4495 - patch by Nathan

Merge: 5be1d74 15174da
Werner Macho 	2011-11-04

    Merge pull request #55 from mach0/master

    german typo fixes

Marco Hugentobler 	2011-11-04

    Hide query entry in legend context menu for layers with joins

Werner Macho 	2011-11-04

    translation update: small german typo fixes

Juergen E. Fischer 	2011-11-03

    fix NULL support in expression evaluation

Martin Dobias 	2011-11-03

    Fix #4479 - trigger "new color ramp" always when activated

Juergen E. Fischer 	2011-11-03

    fix windows build

Martin Dobias 	2011-11-02

    Add default gradient ColorBrewer color ramps from Anita

Merge: 650605f 9e809f3
Martin Dobias 	2011-11-02

    Merge pull request #54 from NathanW2/expression-ui

    Remove multiline label option and make it default and expression builder UI tweaks.

Martin Dobias 	2011-11-02

    Fix #4483. Do not allow the toolbar in qbrowser to be hidden

Martin Dobias 	2011-11-02

    Fix #4441

Nathan Woodrow 	2011-11-02

    Remove option for multiline; Code always uses multiline; Direction symbol now works for multiline

Nathan Woodrow 	2011-11-01

    Added icons for save and load buttons; Open and Save buttons hiden for now

Merge: 7d480b9 68f7d57
Marco Hugentobler 	2011-11-02

    [FEATURE]: added vector field symbol layer to visualise displacement. Changed ellipse symbol layer to resolve field indices in startRender method

Juergen E. Fischer 	2011-11-02

    fix windows build

Marco Hugentobler 	2011-11-01

    Improve vector field widget

Marco Hugentobler 	2011-11-01

    Handle different vector field types

Marco Hugentobler 	2011-11-01

    Cleanup ellipse symbol layer to store only field names, not indices

Marco Hugentobler 	2011-11-01

    Fix stopRender call in graduated symbol renderer

Marco Hugentobler 	2011-11-01

    Added vlayer in startRender calls of renderer classes

Marco Hugentobler 	2011-11-01

    Updated python bindings, added export macros

Nathan Woodrow 	2011-10-31

    Move help above field values, less movement in Ui for user;add save and open button

Merge: e9ee865 50f20c2
Tim Sutton 	2011-10-31

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-10-31

    [BACKPORT] apply fix to invalid reference to trac #4440

Merge: 1a1f5eb 8154103
Tim Sutton 	2011-10-31

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Martin Dobias 	2011-10-31

    Fix fix for #4439

Martin Dobias 	2011-10-31

    Fix #4444. Patch by Vaclav Petras

Merge: ed20ff3 a739750
Martin Dobias 	2011-10-31

    Merge pull request #53 from NathanW2/expression-labels-patch

    Expression label patches

Martin Dobias 	2011-10-29

    Fix #4439

Martin Dobias 	2011-10-22

    Move SpatiaLite source select dialog to provider.

Martin Dobias 	2011-10-22

    [FEATURE] SpatiaLite databases in browser

marco 	2011-10-30

    Optionally pass vector layer pointer to rendercontext

Nathan Woodrow 	2011-10-28

    Fix multiline overlap - Fix for #4454

Juergen E. Fischer 	2011-10-29

    fix windows build

Nathan Woodrow 	2011-10-29

    Remove debug noise for expression labels

Merge: 0d79669 05e3258
Tim Sutton 	2011-10-28

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-10-28

    debian packaging update

Marco Hugentobler 	2011-10-28

    Added vectorfield widgets

Nathan Woodrow 	2011-10-28

    Fix grabbing of first QgsFeature; Cache QgsFeature being used to eval; Handle layers with no objects

Juergen E. Fischer 	2011-10-27

    For EPSG initialize GDAL CRS from authid instead of proj.4 string

Juergen E. Fischer 	2011-10-27

    reduce debugging noise

Nathan Woodrow 	2011-10-27

    Enable multiline labels by default

Marco Hugentobler 	2011-10-27

    Move point displacement renderer from plugin to main application

Marco Hugentobler 	2011-10-26

    Added vector field symbol layer and widget

Marco Hugentobler 	2011-10-25

    Set prompt as default behaviour for unknown CRS

Merge: 513f1c3 1a1f5eb
Tim Sutton 	2011-10-24

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-10-19

    osgeo4w: build qgis-dev with GRASS 6.4.2RC2

Juergen E. Fischer 	2011-10-22

    more cosmetics

Juergen E. Fischer 	2011-10-22

    german translation update

Sandro Santilli 	2011-10-22

    Label direction symbol shouldn't depend on "map" vs. "line" orientation.
    Refer to issue #3643 for further discussion

Juergen E. Fischer 	2011-10-22

    fix warnings and more cosmetics

Sandro Santilli 	2011-10-22

    Only implement QVariant bug workaround when building against Qt < 4.7.1 [#4284]

Sandro Santilli 	2011-10-22

    Workaround for builds against Qt 4.6.2. Fixes bug #4284.

marco 	2011-10-22

    Fix for ticket #4414 (svg indicators for arrows are not shown)

Martin Dobias 	2011-10-21

    [FEATURE] Delete fields in shapefiles (finally!)

    This is currently supported only by development versions of GDAL/OGR.
    GDAL 1.8.x does _not_ support this feature.

Martin Dobias 	2011-10-21

    Fix install

Martin Dobias 	2011-10-21

    Allow setting I/O encoding for OGR layers in vector layer properties.

    Until now this was only possible to set when opening files with QgsEncodingFileDialog.
    Layers opened from browser were opened always with default encoding and no way to change it.

    The newly created "provider-specific" option group may be used by other providers
    for some custom actions ("create spatial index" should move here, too)

Merge: bd5a31b b0112f1
Martin Dobias 	2011-10-21

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Martin Dobias 	2011-10-21

    Fixed a typo, added GUI_EXPORT

Merge: 2ef1772 b0112f1
Tim Sutton 	2011-10-21

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 5e45bda b62daee
Tim Sutton 	2011-10-20

    Merge pull request #52 from brushtyler/raster-transparency

    [BACKPORT] Handle raster layer's transparency band while rendering (fix #2491)

Martin Dobias 	2011-10-20

    Fix indentation

Merge: 3a15509 665e92e
Martin Dobias 	2011-10-20

    Merge branch 'master', remote-tracking branch 'nathan/expression-labels'

Juergen E. Fischer 	2011-10-19

    german translation update

Werner Macho 	2011-10-19

    translation update: hr by Zoran

Nathan Woodrow 	2011-10-19

    revert changes to old QgsLabel class

Giuseppe Sucameli 	2011-10-19

    Handle raster layer's transparency band while rendering (fix #2491)

Martin Dobias 	2011-10-18

    Enable "add direction symbol" only for line layers (#4387)

Martin Dobias 	2011-10-18

    Move selectWidget() and dataCapabilities() to data items file where it belongs

Martin Dobias 	2011-10-18

    Separate GDAL data items from provider code

Martin Dobias 	2011-10-18

    Separate OGR data items from provider code

Martin Dobias 	2011-10-18

    Properly support OGR sublayers (with createChildren) to avoid #4400

Martin Dobias 	2011-10-18

    Add a default icon for data collections

Martin Dobias 	2011-10-18

    Fix refresh of postgis schema in browser (#4400)

Martin Dobias 	2011-10-18

    Generic icon for raster layers in browser

Martin Dobias 	2011-10-18

    Show full path of gdal/ogr layers as a tooltip (#4399)

Merge: fc80b60 139e297
Nathan Woodrow 	2011-10-18

    Merge remote-tracking branch 'upstream/master' into expression-labels

    Conflicts:
src/core/qgsexpression.cpp
src/gui/CMakeLists.txt

Nathan Woodrow 	2011-10-18

    Correct help for upper function

Martin Dobias 	2011-10-17

    Add icons for browser from Robert (gis theme only)

root 	2011-10-17

    More minor fix to IT GUI

Nathan Woodrow 	2011-10-17

    Add more function help; Fix header email info

Nathan Woodrow 	2011-10-17

    Revert CMakeList to normal

Merge: 93c2fec 3996d89
pcav 	2011-10-17

    Merge branch 'master' of github.com:qgis/Quantum-GIS

pcav 	2011-10-14

    Fixing typos in IT GUI

Nathan Woodrow 	2011-10-16

    Add missing files; add more operators

Nathan Woodrow 	2011-10-16

    Rename files to fit QGIS coding guidelines

Nathan Woodrow 	2011-10-16

    Update UI spacing

Nathan Woodrow 	2011-10-16

    Update comments

Nathan Woodrow 	2011-10-16

    Add item from value list on double click

Nathan Woodrow 	2011-10-16

    Wire up operator buttons

marco 	2011-10-15

    Default constructor of QgsProjectParser is private

marco 	2011-10-15

    Some xml optimisation for WMS server

marco 	2011-10-15

    WMS server: avoid reading layer symbology if the request does not come from SLD

Merge: 10d81dd fb6d551
marco 	2011-10-15

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 4e6f83b 0d187bf
Nathan Woodrow 	2011-10-15

    Merge branch 'expression-labels' of github.com:NathanW2/Quantum-GIS into expression-labels

Nathan Woodrow 	2011-10-15

    Remove red highlight from textarea; show expresion invaild note in preview area with more info button; remove live preview checkbox and update button (not needed at this time)

Martin Dobias 	2011-10-13

    Add error item to facilitate error handling

Martin Dobias 	2011-10-13

    WMS: add/edit/delete connection from data items

Martin Dobias 	2011-10-13

    Move WMS data items to separate file

Martin Dobias 	2011-10-13

    Refresh item also when it had no children (they could be added in meanwhile)

Merge: 8154103 f8ed801
Tim Sutton 	2011-10-14

    Merge branch 'master' of github.com:qgis/Quantum-GIS

marco 	2011-10-06

    Insert date value in attribute editor

Marco Hugentobler 	2011-10-13

    Fix for ticket #4308

Juergen E. Fischer 	2011-10-12

    debian packaging update

Martin Dobias 	2011-10-11

    Minor housekeeping in WMS and WFS

Martin Dobias 	2011-10-11

    Expressions: add exp,ln,log10,log functions (#4365)

Martin Dobias 	2011-10-11

    WFS: do not show ok/cancel when embedded in qbrowser

Martin Dobias 	2011-10-11

    WFS: add/edit/delete actions in browser

Juergen E. Fischer 	2011-10-11

    drop non-existing slot

Martin Dobias 	2011-10-11

    WFS: add support (#4164)

Martin Dobias 	2011-10-08

    WFS: Move uri logic and GetCapabilities parsing to WFSConnection class.

Martin Dobias 	2011-10-07

    Fix for a crash in projection selection

Martin Dobias 	2011-10-07

    Move wfs gui to provider. Remove wfs plugin.

Martin Dobias 	2011-10-07

    Move PG data items to separate cpp/h files

Martin Dobias 	2011-10-07

    Add, edit and remove PG connections in browser dock

Martin Dobias 	2011-10-07

    Add refresh button to browser dock (#4272)

Juergen E. Fischer 	2011-10-11

    "fix" warnings

Nathan Woodrow 	2011-10-11

    used Python "and" keyword instead of && :S

Nathan Woodrow 	2011-10-11

    Added expression output preview area. Thanks to Andy Bates for the idea

Marco Hugentobler 	2011-10-10

    Fix shift in point displacement renderer

Nathan Woodrow 	2011-10-09

    Rename buttons and groupbox name

Nathan Woodrow 	2011-10-09

    Added new dialog for generic expression builder; Added search to function list; Right click to load sample 10-All values

mattwigway 	2011-10-08

    Corrected URLs for GitHub and for the issue tracker (it now points to Redmine).

Nathan Woodrow 	2011-10-09

    Add signal for expression parsed in widget; fixed enabling of controls in labeling gui; comments

Juergen E. Fischer 	2011-10-08

    osgeo4w update: use external libspatialindex

Juergen E. Fischer 	2011-10-08

    debian packaging update: use libspatialindex on more distributions

Juergen E. Fischer 	2011-10-08

    fix last commit

Juergen E. Fischer 	2011-10-08

    finish #4111:
    - apply missing bits
    - update internal spatialindex copy to 1.6.1
    - update debian packaging to use external library

Tim Sutton 	2011-10-07

    Apply partial patch from #4111 to allow using separate spatialindex lib from source tree if desired.

Juergen E. Fischer 	2011-10-07

    [API] add QgsVectorLayer::updateFeature()

Juergen E. Fischer 	2011-10-07

    fix warning

Merge: f09417d dd6a594
Giuseppe Sucameli 	2011-10-07

    Merge remote-tracking branch 'brushtyler/master'

    Conflicts:
src/providers/postgres/qgspostgresprovider.cpp

Giuseppe Sucameli 	2011-10-07

    [FEATURE] Make the gdaltools command editable to fix #3041

Merge: 7e059af f09417d
Tim Sutton 	2011-10-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-10-06

    Added simple script to generate a tarball

Tim Sutton 	2011-10-06

    Added gource script (thanks Nathan) and qgis download stats

Nathan Woodrow 	2011-10-06

    Add method to access label string as expression, QgsExpression only created once then cached.

Marco Hugentobler 	2011-10-05

    Fix label id for GetPrint in composer

Tim Sutton 	2011-10-04

    Dont use gdal c++ api. Also gdal drivers now unloaded without restart

Merge: 87c6742 3f70d32
Sergey Yakushevs 	2011-10-04

    Merge remote branch 'pb/master'

    Conflicts:
src/plugins/roadgraph/linevectorlayerdirector.cpp

Martin Dobias 	2011-10-03

    Horizontal scroll bar in browser dock (#4274)

Martin Dobias 	2011-10-03

    Do not show file extension in browser (#4309)

Martin Dobias 	2011-10-03

    Do not include |layerid=X if the layer is not a collection (#4309)

Martin Dobias 	2011-10-03

    Ensure that we have a valid line in line decoration (#4241)

Juergen E. Fischer 	2011-10-03

    yet another take on matching proj4string in our database

Marco Hugentobler 	2011-10-03

    Fix for wrong symbol scaling if symbol size is defined in map units and symbol size below one pixel

Juergen E. Fischer 	2011-10-02

    debian packaging update

Juergen E. Fischer 	2011-10-02

    fix windows build

Alexander Bruy 	2011-10-02

    fix network-analysis API and export function in RoadGraph plugin (fix #4341)

Alexander Bruy 	2011-10-02

    include QgsGraphArc description in Doxygen output (fix #4342)

Juergen E. Fischer 	2011-09-30

    fix #4282

Juergen E. Fischer 	2011-09-30

    fix warnings

Alister 	2011-09-21

    fix minor typos + scripts/chkspelling.sh run.

Alexander Bruy 	2011-09-30

    fix typo

Alexander Bruy 	2011-09-30

    translate comments in English (fix for #4338)

Juergen E. Fischer 	2011-09-30

    fix #4331

Juergen E. Fischer 	2011-09-30

    german translation update

Juergen E. Fischer 	2011-09-30

    indentation update - please use prepare-commit.sh

Merge: a2713fd a950830
mhugent 	2011-09-30

    Merge pull request #49 from stopa85/network-analysis

    Network analysis and road-graph-plugin

Jeremy Palmer 	2011-09-22

    Fix from 49e4e998c6 to ensure that all postgis connection parameters are copied in the QgsPostgresConnection constructor i.e estimatedmetadata.

Juergen E. Fischer 	2011-09-29

    fix some warnings

Juergen E. Fischer 	2011-09-29

    debian packaging update

Juergen E. Fischer 	2011-09-24

    indentation update

Tim Sutton 	2011-09-29

    Revert "Applied fix for #4283"

    This reverts commit 7f3e9560fc93cd8b3ea4039f319bca568e17bb38.

Tim Sutton 	2011-09-29

    Another valiant attempt at spurious changelog suppression.

Merge: 7f3e956 3cac713
Tim Sutton 	2011-09-29

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Alexander Bruy 	2011-09-28

    Added Python wrappers for QgsZonalStatistics

Marco Hugentobler 	2011-09-28

    Send exception in case of unknown feature info format

Marco Hugentobler 	2011-09-28

    Add feature bounding box to GetFeatureInfo response if invoked with filter and without x/y coordinates

Merge: 224f0e3 7f57de0
mhugent 	2011-09-27

    Merge pull request #48 from linz/wfs_layer_sort

    Added sorting to WFS layer tree grid widget

Sergey Yakushevs 	2011-09-27

    fix QgsArc.in() python-binding

Merge: af91b48 224f0e3
Sergey Yakushevs 	2011-09-27

    Merge remote branch 'pb/master' into network-analysis

    Conflicts:
python/CMakeLists.txt
src/analysis/network/qgsgraphbuilder.h
src/plugins/roadgraph/graphbuilder.h
src/plugins/roadgraph/linevectorlayerdirector.cpp
src/plugins/roadgraph/simplegraphbuilder.cpp
src/plugins/roadgraph/utils.cpp
src/plugins/roadgraph/utils.h

Nathan Woodrow 	2011-09-26

    Loading of function list from QgsExpression now working

Marco Hugentobler 	2011-09-26

    Enhance maximum for point displacement tolerance (ticket #4319)

Nathan Woodrow 	2011-09-26

    Read functions from QgsExpression. Updated FunctionDef to store group name and help text.  Add comments to code
    NOTE: Reading functions list not working yet.

Juergen E. Fischer 	2011-09-25

    debian packaging update

Tim Sutton 	2011-09-25

    Restore override cursor when about box is shown

Merge: 93a190a a0f8294
Tim Sutton 	2011-09-25

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-09-25

    Fix some more merge confglicts after merging updates from 1.7 brnach

Merge: 2831968 b54f668
Tim Sutton 	2011-09-24

    Merge branch 'master' of ../Quantum-GIS

marco 	2011-09-24

    Consider data defined size on symbol level for ellipse renderer (ticket 4295)

pcav 	2011-09-24

    Typos in GRASS command list

Tim Sutton 	2011-09-24

    Resolved merge conflicts from applying 8c3e0669226e1861da9134266675df7ed67cf971 to master

Tim Sutton 	2011-09-24

    Resolved merge conflicts from applying 36d86b019574ccb3c0c962c680093b5784f052dc to master

Tim Sutton 	2011-09-24

    Resolved merge conflicts from applying 29f93f1b01ebf9799256ab55557370fbf051df44 to master

Tim Sutton 	2011-09-23

    Backported changelog and style changes from 1.7 branch

pcav 	2011-09-24

    Fix to v.generalize for recent GRASS versions

Juergen E. Fischer 	2011-09-23

    wms provider updates:
    - don't repeat WMS parameters (eg. when VERSION is specified in the WMS connection's url)
    - allow wms tags to e prefixed with "wms:" (as from XtraServer with WMS 1.3)

Tim Sutton 	2011-09-22

    Applied fix for #4283

Tim Sutton 	2011-09-22

    Apply patch from Nathan Woodrow to resolve attribute dialog save button issue #4290

Jeremy Palmer 	2011-09-22

    Added sorting to WFS layer tree grid widget

Merge: 8a9da0f 820469f
marco 	2011-09-20

    Merge branch 'master' of github.com:qgis/Quantum-GIS

marco 	2011-09-20

    Apply patch for ticket 4155, provided by Steven Mizuno

Marco Hugentobler 	2011-09-19

    Fix for ticket #4283 (composer forgets on/off status of layers)

marco 	2011-09-18

    Prevent Qt assert when using Qt debug compiled

Juergen E. Fischer 	2011-09-17

    add support "sum" operation to merge attribute dialog

Juergen E. Fischer 	2011-09-16

    german translation update

Juergen E. Fischer 	2011-09-07

    update debian/watch

Alexander Bruy 	2011-09-15

    more translatable strings in OSM plugin

Giuseppe Sucameli 	2011-09-15

    fix windows build error

Giuseppe Sucameli 	2011-09-15

    clean up the code to avoid deprecation and other warnings

Giuseppe Sucameli 	2011-09-15

    mark some methods as deprecated

Merge: 7093b06 37b2c04
Giuseppe Sucameli 	2011-09-15

    [FEATURE] Import a vector layer from a datasource to a different one
    Merge of another part of my Summer of Code work (remote-tracking branch 'brushtyler/import_layer')

Merge: 262ec3f 37b2c04
Giuseppe Sucameli 	2011-09-15

    Merge branch 'import_layer'

Giuseppe Sucameli 	2011-09-15

    use a buffer when importing features

Alexander Bruy 	2011-09-14

    [BACKPORT] allow negative NODATA values in GDALTools

pcav 	2011-09-14

    Minor IT GUI translation improvements

Merge: f2b6876 6eb406b
Giuseppe Sucameli 	2011-09-13

    merge import_layer branch

Tim Sutton 	2011-09-13

    Added unit test for GDAL_SKIP stuff

Merge: 9076461 f2b6876
Tim Sutton 	2011-09-13

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-09-13

    Fixed gdal driver (de)selection feature that had some outstanding issues

Tim Sutton 	2011-09-12

    Further fixes for selective GDAL driver support (in progress)

Giuseppe Sucameli 	2011-09-12

    Move import feature main code to QgsVectorLayerImport and keep just few methods in providers

Tim Sutton 	2011-09-12

    [FEATURE] implement ability to skip specific drivers (fixes #182)

Giuseppe Sucameli 	2011-09-12

    fix gdaltools error checking for ogr layers

Giuseppe Sucameli 	2011-09-10

    Fix remove GRASS vector map from mapset on Win OS (should be fix #3646 together with grass-dev package),
    disable refresh button in GRASS browser if a module is running

Juergen E. Fischer 	2011-09-09

    trim qgsquerybuilder binding (and fix it)

Juergen E. Fischer 	2011-09-08

    add bindings for QgsQueryBuilder

Tim Sutton 	2011-09-08

    Some documentation updates for linux

Tim Sutton 	2011-09-08

    Replace svn url with git one for win install notes

Werner Macho 	2011-09-08

    translation update: mn by Bayarmaa

Juergen E. Fischer 	2011-09-08

    missed to include moved querybuilder files

Juergen E. Fischer 	2011-09-08

    fix windows build errors
    - moves QgsQueryBuilder from app to gui
    - links postgres provider with gui

Werner Macho 	2011-09-08

    translation update: et by Veiko

Martin Dobias 	2011-09-08

    Delete rotate point map tool (#4268)

Martin Dobias 	2011-09-06

    Fix #4266 - georeferencer and spatial query crashing on exit

Merge: cfedf09 f932140
Martin Dobias 	2011-09-06

    [FEATURE] PostGIS connections and layer now available from browser

    Merge of one part of Giuseppe's Summer of Code work

Marco Hugentobler 	2011-09-06

    Use crscache in wms configparser

Marco Hugentobler 	2011-09-06

    Use CRS cache for faster lookup of crs by authid. Important especially for wms server. Replaces wmsserver/epsgcache.cpp and .h

Marco Hugentobler 	2011-09-06

    Add zero pointer checks to avoid segfaults

Merge: cc8deb9 c2cf5cb
pcav 	2011-09-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2011-09-05

    Multiple symbol selection for rule based renderer

Marco Hugentobler 	2011-09-05

    Move symbol change slots to render widget parent class

Marco Hugentobler 	2011-09-02

    Use context menu to set properties for multiple symbols in categorized renderer

pcav 	2011-09-05

    More consistency in WFS plugin IT translation

Merge: 4312197 68b91fa
Martin Dobias 	2011-09-05

    Merge pull request #42 from rduivenvoorde/master

    trying out forking/pushing of qgis for dutch translations

Richard Duivenvoorde 	2011-09-05

    Addition of Carlo van Rijswijk to list of dutch translators

Richard Duivenvoorde 	2011-09-05

    some dutch translations for git testing

Giuseppe Sucameli 	2011-09-03

    make sure gdaltools input vector layers are ogr vectors

Nathan Woodrow 	2011-09-03

    Added more functions to function tree

Nathan Woodrow 	2011-09-03

    Clean up labeling UI.  Remove borders from frames.

Nathan Woodrow 	2011-09-03

    UI clean up; Hide and show value list when needed; handle field items better; code clean up.

marco 	2011-09-02

    Output bounding boxes of wms groups in project CRS instead of WGS84

Werner Macho 	2011-09-02

    translation update: nl by richard

Juergen E. Fischer 	2011-09-01

    debian packaging update: include pyspatialite

Martin Dobias 	2011-09-01

    Shorter postgis root data item

Marco Hugentobler 	2011-09-01

    Small efficiency improvement for rendering

Merge: 706b6f1 7deb0c9
Nathan 	2011-08-31

    Merge remote-tracking branch 'upstream/master' into expression-labels-merge-wonder

marco 	2011-08-30

    WMS server: report crs systems in the order given in the project

Merge: 1e7c8a7 bc09ab3
Martin Dobias 	2011-08-30

    Merge remote-tracking branch 'remotes/giuseppe/dataitems' into dataitems

    Conflicts:
src/app/CMakeLists.txt

Martin Dobias 	2011-08-30

    Updated required version for bison and cmake

Martin Dobias 	2011-08-30

    Raised minimal Bison version to 2.4 (for QgsExpression). Fixed bison version detection.

Merge: 6c0f56c 5e4e4f7
Marco Hugentobler 	2011-08-30

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 26aa007 03c13ad
Marco Hugentobler 	2011-08-30

    Merge linepattern offset

Marco Hugentobler 	2011-08-30

    Some cleanups for line pattern code

marco 	2011-08-30

    Check topological editing yes/no when opening snapping dialog

Marco Hugentobler 	2011-08-30

    [FEATURE]: offset for line pattern symbols

marco 	2011-08-30

    Fix feature_count consideration in wms feature info

marco 	2011-08-30

    Small typo in comment

marco 	2011-08-29

    Add available crs and extent also for project toplevel groups

Martin Dobias 	2011-08-29

    Fix #4229

Martin Dobias 	2011-08-29

    Fixed a segfault when a function has no arguments

Juergen E. Fischer 	2011-08-29

    depends on CMake >=2.6.2 and drop support for lenny (debian oldstable)

Juergen E. Fischer 	2011-08-29

    fix build error

Martin Dobias 	2011-08-27

    Fixed build error

Merge: a0b8e3c 96f7736
Werner Macho 	2011-08-27

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS

Werner Macho 	2011-08-27

    translation: fixed some german typos

Merge: 260bf0c 25ff28a
Martin Dobias 	2011-08-27

    Merge branch 'expr'

Borys Jurgiel 	2011-08-26

    Don't check for plugin errors at startup

Borys Jurgiel 	2011-08-25

    Fix QTreeWidget.resizeColumnToContents() issue observed in PyQt4.8.3 @ Debian

Jaka Kranjc 	2011-08-22

    symbology-ng: sort the category items when classifying them #4206

Marco Bernasocchi 	2011-08-26

    If on android force POSTGRES_INCLUDE_DIR and POSTGRES_LIBRARY, needs to be bette but works

Marco Hugentobler 	2011-08-26

    Add non-default port numbers to GetMap and GetFeatureInfo urls

Juergen E. Fischer 	2011-08-24

    german translation fix

marco 	2011-08-24

    Fix italic font when loading embedded layers from project. Fixes ticket #4207

Marco Bernasocchi 	2011-08-24

    temporary hack to get half working shp suport. opening of a file works, writing only if there are no string type attributes.

Juergen E. Fischer 	2011-08-23

    add ubuntu oneiric to debian packaging

Giuseppe Sucameli 	2011-08-23

    fix invalid postgres type when converting field,
    removed some commented and unused code

Merge: 593ea7e f0f1b5e
Giuseppe Sucameli 	2011-08-23

    Merge branch 'import_layer' of github.com:brushtyler/Quantum-GIS into import_layer

Giuseppe Sucameli 	2011-08-23

    keep cached crendential when getting geom type from thread (fix related to commit cddd427)

Giuseppe Sucameli 	2011-08-18

    Implement import layer feature for OGR provider using QgsVectorFileWriter

Giuseppe Sucameli 	2011-08-18

    [FEATURE] Allow to import a vector layer from canvas to SL database

Giuseppe Sucameli 	2011-08-18

    convert the primary key type name to a PG valid one,
    add a new options param to importVector

Giuseppe Sucameli 	2011-08-14

    [FEATURE] import a layer from canvas into a PG database

Marco Bernasocchi 	2011-08-23

    adding support for spatialite

Marco Bernasocchi 	2011-08-22

    fixing internal spatialite for android

Martin Dobias 	2011-08-22

    Decorations are turned off by default

Juergen E. Fischer 	2011-08-22

    german translation update

Juergen E. Fischer 	2011-08-22

    debian packaging update

Martin Dobias 	2011-08-21

    Renamed context help files for decorations

Martin Dobias 	2011-08-21

    Moved scale bar plugin to app

Martin Dobias 	2011-08-21

    Moved north arrow plugin to app

Martin Dobias 	2011-08-20

    Moved copyright label plugin to app

NathanW 	2011-08-22

    Update usage of QgsSearchString to QgsExpression

Marco Bernasocchi 	2011-08-21

    fixing black canvas issue

Merge: 4ffa820 25ff28a
NathanW 	2011-08-21

    Merge remote branch 'wonder/expr' into expression-labels-merge-wonder

Juergen E. Fischer 	2011-08-20

    fix lenny build and some warnings

Alexander Bruy 	2011-08-20

    new nice icon for Extract projection tool. Thanks, Robert!

Martin Dobias 	2011-08-19

    Some more comments for QgsExpression

Martin Dobias 	2011-08-19

    Made strings translatable, made some functions static

Marco Hugentobler 	2011-08-19

    Merge patch for symbollevels in rule based renderer also to master (patch provided by Mayeul Kauffmann)

Marco Bernasocchi 	2011-08-19

    adding support fo share folder

Merge: 0ba0f93 0373a26
Martin Dobias 	2011-08-18

    Merge pull request #37 from NathanW2/identify-patch

    Move setting of projection to after we have features for identify feature tool.

Giuseppe Sucameli 	2011-08-18

    Implement import layer feature for OGR provider using QgsVectorFileWriter

Giuseppe Sucameli 	2011-08-18

    [FEATURE] Allow to import a vector layer from canvas to SL database

Giuseppe Sucameli 	2011-08-18

    convert the primary key type name to a PG valid one,
    add a new options param to importVector

Merge: 22f5ba2 0c8695c
Marco Hugentobler 	2011-08-18

    Merge branch 'server_search'

Marco Hugentobler 	2011-08-18

    Read selection color for wms server from project file

Marco Hugentobler 	2011-08-18

    [FEATURE]: possibility to select features in QGIS server by layername / id in GetMap and GetPrint

Martin Dobias 	2011-08-17

    Close gdal/ogr data sources when finished in dataItems implementation

Martin Dobias 	2011-08-13

    Browser: do not show header in tree view

Marco Hugentobler 	2011-08-17

    Add consts also to sip file for QgsMapLayer

Marco Hugentobler 	2011-08-17

    Add feature bounding box if called with filter and without I/J

William Kyngesburye 	2011-08-15

    make sure qwt lib path updated

William Kyngesburye 	2011-08-15

    find qgis frameworks in /Library/Frameworks first

Marco Bernasocchi 	2011-08-16

    ignore CMakeLists.txt.user

Marco Bernasocchi 	2011-08-16

    added debug messages

Marco Bernasocchi 	2011-08-15

    readded logging capabilities of qtmain_android

Marco Bernasocchi 	2011-08-15

    fixed double declaration of qtmain_android.cpp

Marco Bernasocchi 	2011-08-15

    uncommenting __android_log_print

Marco Bernasocchi 	2011-08-15

    added qtmain_android

marco 	2011-08-14

    Set ellipse renderer outline as float. Fix for ticket #4171

Giuseppe Sucameli 	2011-08-14

    [FEATURE] import a layer from canvas into a PG database

Alexander Bruy 	2011-08-14

    fix #4170

Juergen E. Fischer 	2011-08-13

    another debian packaging fix: add libqt4-opengl-dev build-dep

NathanW 	2011-08-13

    Move setting projection to after we have features

Martin Dobias 	2011-08-12

    Browser: correct drag&drop for canvas and browser itself

Juergen E. Fischer 	2011-08-12

    debian packageing: fix qwt dependency

Juergen E. Fischer 	2011-08-12

    german translation update

Steven Mizuno 	2011-08-12

    GPS tracking improvements (apply #4071)

Juergen E. Fischer 	2011-08-12

    add optional Qwt 6.0 support (including QwtPolar 1.0)

Marco Hugentobler 	2011-08-12

    Show only provider fields as join target candidates (ticket #4136)

Merge: e12191b 880540b
Tim Sutton 	2011-08-11

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Martin Dobias 	2011-08-11

    Simplified three-value logic code

Martin Dobias 	2011-08-11

    toint, toreal, tostring in QgsExpression do not include space

Martin Dobias 	2011-08-11

    Use QgsExpression instead of QgsSearchString

Juergen E. Fischer 	2011-08-11

    debian packaging update: include zonal statistics and globe plugins

Marco Bernasocchi 	2011-08-11

    Adding support for generation of libqgis.so

Marco Bernasocchi 	2011-08-11

    added generation of libqgis_app.so

Tim Sutton 	2011-08-10

    Make gdal pam proxy env setting more win friendly

NathanW 	2011-08-10

    Fix build issues

NathanW 	2011-08-10

    Update comments. Hide field value area

Merge: 89ddd03 7acce88
Tim Sutton 	2011-08-10

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-08-10

    Set gdal PAM env dir on application init

Marco Hugentobler 	2011-08-10

    Add crs to wms project group also if no crs constraint is there

Merge: 7196dfc e5f9462
Martin Dobias 	2011-08-09

    Merge pull request #36 from spilth/master

    Shortcuts dialog now remembers window state between uses

Tim Sutton 	2011-08-10

    Added Etienne to contributors and Alex to authors since he is a committer now

Brian Kelly 	2011-08-09

    Shortcuts dialog now remembers window state between uses

Martin Dobias 	2011-08-10

    Improved handling of types in expressions:
    - implicit conversions to string / int / number / TVL
    - error reporting on conversion errors
    - automatic conversion to numeric values for arithmetic operators
    - try to use numeric comparison by default, fallback to string comparison
    - functions do not need to explicitly care about NULL passed as an argument

Tim Sutton 	2011-08-09

    [FEATURE]. Retroactive added feature tag to this commit to mark the fact that we now use native provider stats gathering. Updated min max calculation of gdal provider with more efficient implementation. Use updated stats gathering routine kindly provided by Etienne Sky.

Martin Dobias 	2011-08-09

    Added python bindings for QgsExpression

Martin Dobias 	2011-08-09

    Handle division by zero

Alexander Bruy 	2011-08-09

    move Near black close to Sieve (fix #4152)

Juergen E. Fischer 	2011-08-09

    fix another cmake <2.8 issue (followup to f3d5387edb309935c956acda6ae5e1f52523286c)

Alexander Bruy 	2011-08-09

    [FEATURE] Extract projection tool for GdalTools

Alexander Bruy 	2011-08-09

    organize GdalTools utilities into submenus for better usability

marco 	2011-08-09

    Consider identify disabled layers in embedded projects

Marco Hugentobler 	2011-08-08

    Differentiate between image angle and line pattern angle. Fixes rotation problem

NathanW 	2011-08-08

    Resolve merge conflict

Merge: 7454584 2034d59
NathanW 	2011-08-08

    Merge remote branch 'upstream/master' into expression-labels

    Conflicts:
src/core/qgspallabeling.cpp
src/gui/CMakeLists.txt
src/ui/qgslabelingguibase.ui

marco 	2011-08-08

    Center small marker symbols in composer legend

Martin Dobias 	2011-08-07

    [FEATURE] new QgsExpression class that replaces QgsSearchString

    The new class fixes various flaws in search strings:
    - fixed and simplified grammar in parser
    - simplified lexer
    - only one evaluation routine (instead of separate getValue/checkAgainst)
    - SQL compliant three-value logic (true, false, unknown)
    - correct error handling
    - easily extensible list of functions, saner evaluation of expressions
    - tests included

Martin Dobias 	2011-08-07

    Do not install tests, keep their default RPATH settings

Tim Sutton 	2011-08-07

    [BACKPORT] fix error in notes reported to me by Marco Braida

Merge: 2034d59 cbd2756
Tim Sutton 	2011-08-06

    Merge pull request #35 from NathanW2/reduce-attribute-dialog-margins

    Reduced margins on controls in dialog.  Removed frame from scroll area

NathanW 	2011-08-06

    Reduced margins on controls in dialog.  Removed frame from scroll area

Werner Macho 	2011-08-04

    Bugfix #4113 and #2805 thanks to Jan Schreiber

Martin Dobias 	2011-08-04

    Avoid a segfault when NULL layer is passed to vector writer

Alexander Bruy 	2011-08-04

    [BACKPORT] increase maximum points count in Random Points tool

Tim Sutton 	2011-08-04

    Regenerated docs post raster-stats merge

Juergen E. Fischer 	2011-08-03

    german translation update (with some additional fixes)

Juergen E. Fischer 	2011-08-03

    [BACKPORT] port qgis version check to network access manager/qgis.org

Juergen E. Fischer 	2011-08-03

    slightly better solution for recovering broken postgres connections

Marco Hugentobler 	2011-08-03

    Try to reopen broken postgres connection

Marco Hugentobler 	2011-08-03

    Remove duplicated code and coding style improvements in composer item (provided as part of pull request 33 by Rokemoon)

Alexander Bruy 	2011-08-02

    [BACKPORT] set default contrast enchacement algorithm to NoStretch
    (addresses #3867). Also set default standard deviations value to 2.0
    because this is more appropriate value

Juergen E. Fischer 	2011-08-01

    fix windows build

marco 	2011-07-31

    Set wms groups always as identifiable

marco 	2011-07-31

    Enable feature info on layer groups in wms server

Martin Dobias 	2011-07-30

    [FEATURE] Add/remove favourite dirs in browser dock

Alexander Bruy 	2011-07-29

    removed old unused code

Alexander Bruy 	2011-07-29

    [BACKPORT]fix RandomPoints crash when there are NULL values in
    attributes

Merge: bfb5f2c f3d5387
Marco Bernasocchi 	2011-07-29

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS into android

Juergen E. Fischer 	2011-07-29

    fix lenny build (cmake <2.8)

Juergen E. Fischer 	2011-07-29

    fix warnings

Martin Dobias 	2011-07-28

    Allow drag&drop with multiple files

Martin Dobias 	2011-07-28

    Allow dragging files from browser dock

Martin Dobias 	2011-07-28

    Bring back locked/unlocked icons

Merge: a1cc666 a5f8a82
marco 	2011-07-28

    [FEATURE]: Add point and line pattern symbol layers

marco 	2011-07-28

    Consider transparency also for point and line patterns

marco 	2011-07-27

    WMS layer: add CRS for project layer group

Marco Bernasocchi 	2011-07-27

    revert to without with_gsl

Marco Bernasocchi 	2011-07-27

    fix for qreal - double problem when crosscompiling for android

Juergen E. Fischer 	2011-07-26

    initialize QgsPoint

Martin Dobias 	2011-07-25

    Remove the source build check that is not necessary anymore.

Martin Dobias 	2011-07-25

    [FEATURE] Allow running QGIS from build directory without installing

Martin Dobias 	2011-07-24

    Added libraryPath() and libexecPath() to QgsApplication

Marco Hugentobler 	2011-07-25

    Fix reversed show/hide signals

Marco Bernasocchi 	2011-07-25

    making GSL and thus georeferences really optional but ON by default

Merge: 8c4cf8e 05d2cd9
Marco Bernasocchi 	2011-07-25

    Merge branch 'master' of https://github.com/qgis/Quantum-GIS into android

Marco Bernasocchi 	2011-07-25

    cmake entries for spatialite in android

William Kyngesburye 	2011-07-24

    forgot to detab files

William Kyngesburye 	2011-07-24

    more mac bundling cleanup and streamlining

William Kyngesburye 	2011-07-24

    add missing Mac app setting

William Kyngesburye 	2011-07-24

    simplify framework bundling, don't need to know fw version (always current)

Martin Dobias 	2011-07-24

    Include north arrow image in the resources

Juergen E. Fischer 	2011-07-22

    postgres provider: also consider ltree columns

Juergen E. Fischer 	2011-07-22

    [FEATURE] allow ordering of value relations by value and
    include value relations in sip bindings

Juergen E. Fischer 	2011-07-22

    remove themes from grass plugin's debian package

Marco Hugentobler 	2011-07-21

    WMS server: be more tolerant with exotic WMS clients and accept requests without service parameters

Marco Hugentobler 	2011-07-21

    Replace + signs in wms requests with spaces

Marco Hugentobler 	2011-07-21

    Improve href url for capabilities response

Marco Hugentobler 	2011-07-21

    Set visibility of layers for embedded groups (ticket #4097)

Juergen E. Fischer 	2011-07-21

    update debian packaging

Pirmin Kalberer 	2011-07-21

    chmod -x *cpp

Martin Dobias 	2011-07-20

    Include splash file in resources

Martin Dobias 	2011-07-20

    grass: install just one world map (included in resource file)

Martin Dobias 	2011-07-20

    grass: do not install icon files, use them from the resource file

Marco Hugentobler 	2011-07-20

    Add scheme (http or https) to service urls in capabilities

Juergen E. Fischer 	2011-07-20

    [BACKPORT] fix #3974

Juergen E. Fischer 	2011-07-20

    [FEATURE] search string update
    - added regexp_replace operator
    - check types on comparison (QgsSearchTreeValue::compare now returns QgsSearchTreeValue for error reporting)
    - field calculator shows expression errors.
    - update node types and operators in sip bindings

Martin Dobias 	2011-07-20

    Rule-based renderer: dump meaningful debugging info

Martin Dobias 	2011-07-20

    Fix #4088: better handling of unknown geometry types

Merge: c4cbcf4 042a882
Tim Sutton 	2011-07-19

    Merge pull request #32 from Jean-Roc/master

    update fr translation

Jean-Roc Morreale 	2011-07-19

    add missing fr translator

Jean-Roc Morreale 	2011-07-19

    update french translation

Merge: 4c00456 ce826f6
Marco Hugentobler 	2011-07-19

    Merge ellipse symbollayer branch

Marco Hugentobler 	2011-07-19

    [FEATURE]: Apply patch from Stefan Ziegler which adds the option to select decimals places and + signs for numeric labels. Thanks\!

Tim Sutton 	2011-07-19

    Patch from Michal Klatecki - see ticket #3325

Marco Hugentobler 	2011-07-19

    Contact person and organisation are mandatory in wms capabilities schema

Marco Hugentobler 	2011-07-18

    Add Service online resource element to WMS capability response. This element is mandatory according to the 1.3 spec

Giuseppe Sucameli 	2011-07-19

    move tooltip from the dialog to the right button...

Werner Macho 	2011-07-18

    Adding estonian translation file

Giuseppe Sucameli 	2011-07-18

    fix connection info passed to QgsGeomColumnTypeThread broken in 6989fc7,
    hide close and add buttons from PG source select dialog when in embedded mode (e.g. qbrowser)

Marco Hugentobler 	2011-07-18

    Improve capabilities output for layer groups. CRS and bounding box need to be listed before child layers (wms capabilities schema 1.3)

Juergen E. Fischer 	2011-07-18

    ogr provider fix: apparently we need to fetch the geometry to make the spatial filter stick.

Marco Hugentobler 	2011-07-18

    Implement point marker displacement

Marco Hugentobler 	2011-07-18

    Fix point marker resolution

Juergen E. Fischer 	2011-07-18

    fix typo in field calculator context help

William Kyngesburye 	2011-07-17

    osgearth gdal driver needs GEOS headers

Juergen E. Fischer 	2011-07-17

    move qgis.ico back to app

Juergen E. Fischer 	2011-07-17

    fix build problem with Qt 4.4

Merge: f49d225 e0e21f1
Tim Sutton 	2011-07-15

    Merge pull request #31 from gostrc/master

    Initial step for bug #3562 QGIS incompatible with QWT 6.0.0

Thomas Dziedzic 	2011-07-15

    convert QwtArray usage to QVector usage. Change required for qwt 6.0.0 compatibility.

Juergen E. Fischer 	2011-07-15

    german translation update

Juergen E. Fischer 	2011-07-15

    fix #4081

Marco Hugentobler 	2011-07-15

    Started point pattern fill renderer

Juergen E. Fischer 	2011-07-15

    fix #4024

Juergen E. Fischer 	2011-07-15

    fix #4072

Juergen E. Fischer 	2011-07-15

    fix #4084

Juergen E. Fischer 	2011-07-15

    [BACKPORT] fix #4089
    - postgres provider: fix detection of field length and precision for char and numeric fields.
    - attribute editor: fix validation in case the field length is unknown

Marco Hugentobler 	2011-07-15

    Allow larger values for line pattern width and distance

Martin Dobias 	2011-07-15

    Labeling: clip geometries to current extent if they are not completely inside. Also fixes #4083

Sandro Santilli 	2011-07-14

    Run git in source tree, not build tree. Fixes bug #4086.

Tim Sutton 	2011-07-14

    Mark var unused

Juergen E. Fischer 	2011-07-14

    [FEATURE] add configurable decimal "point" to delimited text plugin

Juergen E. Fischer 	2011-07-14

    globe fix: don't crash on quit

Pirmin Kalberer 	2011-07-13

    Fix more globe warnings

Juergen E. Fischer 	2011-07-13

    pyspatialite: inhibit warnings.

Juergen E. Fischer 	2011-07-13

    oh well - missed _the_ file...

Juergen E. Fischer 	2011-07-13

    fix last commit

Juergen E. Fischer 	2011-07-13

    globe plugin fixes:
    - implement a compile check to tell apart OSGEARTH 2.0 from 3.0
    - fix warnings

Marco Hugentobler 	2011-07-13

    Better block for signals when creating composer legend widget

NathanW 	2011-07-13

    Added support to show help about selected function

Marco Hugentobler 	2011-07-13

    Fix for considering layer title length in composer legend

Merge: 36fb5a7 e0f4d06
Pirmin Kalberer 	2011-07-13

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Pirmin Kalberer 	2011-07-13

    Revert API changes for OSGEarth >2.0

Juergen E. Fischer 	2011-07-13

    indentation update

Juergen E. Fischer 	2011-07-13

    fix vc build

Merge: 540fb7a 9c9259a
Pirmin Kalberer 	2011-07-13

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Pirmin Kalberer 	2011-07-13

    astyle globe

Martin Dobias 	2011-07-12

    Added home directory to the browser model. Unified method to find an index for a path

Tim Sutton 	2011-07-12

    Commented out lines causing build errors on my Qt 4.4.7 setup

Giuseppe Sucameli 	2011-07-12

    fix cmakelists by removing files moved in bd3f77a

Giuseppe Sucameli 	2011-07-12

    use the provider to retrieve connections and layers

Giuseppe Sucameli 	2011-07-12

    add QgsDataItem to the postgres provider

Giuseppe Sucameli 	2011-06-06

    get supported layers from the provider

Giuseppe Sucameli 	2011-06-06

    easy way to access to postgres connections

Marco Hugentobler 	2011-07-12

    Add Service element when taking contact information from the project file

NathanW 	2011-07-12

    Fill value list from selected field.

Merge: db469be f57bef4
Marco Hugentobler 	2011-07-12

    Merge branch 'master' of github.com:qgis/Quantum-GIS

NathanW 	2011-07-12

    Insert expression string on double click

NathanW 	2011-07-12

    Added fields and operators to tree view

NathanW 	2011-07-12

    Add model to tree view

Martin Dobias 	2011-07-11

    [FEATURE] Add browser dock widget to QGIS main window. Layers can be added to canvas by double-clicking them in the browser.

Juergen E. Fischer 	2011-07-11

    include globe plugin in nightly build

NathanW 	2011-07-11

    Redesign of expression builder UI

Merge: bff8e54 8e3aca4
Marco Hugentobler 	2011-07-11

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-07-10

    add globe plugin to osgeo4w package

Tim Sutton 	2011-07-10

    Added a more comprehensive set of default symbols based on work done for me by Petronella Tizora (see http://linfiniti.com/2011/07/openstreetmaposm-cartography-using-qgis-part-2/). You will need to remove your ~/.qgis/symbology-ng-style.xml in order to see them I think.

Pirmin Kalberer 	2011-07-09

    Build without globe by default

Marco Hugentobler 	2011-07-08

    More robust pattern calculation

Marco Hugentobler 	2011-07-08

    Create base class for QImage fills, add custom outline to line  pattern fill

Juergen E. Fischer 	2011-07-07

    german translation update

Juergen E. Fischer 	2011-07-07

    refix qgis.ico move

Richard Duivenvoorde 	2011-07-07

    fix #4039

Marco Hugentobler 	2011-07-06

    First experimental version of line pattern drawing

William Kyngesburye 	2011-07-06

    missed these also in 3ccae3f

Merge: d56e4e9 97d477b
Tim Sutton 	2011-07-06

    Merge branch 'margins'

Marco Hugentobler 	2011-07-06

    Added line pattern symbol layer

Merge: dd79841 49e9a62
Tim Sutton 	2011-07-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: bd495c1 49e9a62
Marco Hugentobler 	2011-07-06

    Merge branch 'master' of github.com:qgis/Quantum-GIS

William Kyngesburye 	2011-07-05

    missed file update in 3ccae3f

William Kyngesburye 	2011-07-05

    forgot to move some files for 6d788eb

Pirmin Kalberer 	2011-07-06

    CMake for globe

Pirmin Kalberer 	2011-07-05

    Merge cleanup

Marco Bernasocchi 	2011-04-17

    new rotation reset icon

Pirmin Kalberer 	2011-04-04

    Default compositor multitexture_ffp

Pirmin Kalberer 	2011-03-06

    Fixed world.tif install

Pirmin Kalberer 	2011-03-06

    Replaced earth file with programmatic map construction

Pirmin Kalberer 	2011-03-06

    Update to OsgEarth 2.0

Pirmin Kalberer 	2011-03-05

    Use CMake vars

mbernasocchi 	2011-02-20

    plugin visibility system was added to trunk in https://trac.osgeo.org/qgis/changeset/15224

mbernasocchi 	2011-02-20

    Globe is now visible to other (python as well) plugins. signals from globe can be catched.

Marco Bernasocchi 	2011-02-19

    implemented a better syncExtent method using QgsDistanceArea

Marco Bernasocchi 	2011-02-19

    code clean up

Marco Bernasocchi 	2011-02-19

    - added support for globe coordinates, they are now shown in the status bar. - added modkey support

Marco Bernasocchi 	2011-02-18

    shows mouse click WGS coordinates

Marco Bernasocchi 	2011-02-17

    fixed bug in elevation layers dialog when changeing between projects

Marco Bernasocchi 	2011-02-15

    Patched source against http://trac.osgeo.org/qgis/changeset/14452 to use newProjectCreated signal

Marco Bernasocchi 	2011-02-14

    Fixed bug on new project created

Marco Bernasocchi 	2011-02-10

    nicer gui

Pirmin Kalberer 	2010-12-31

    Debug message removed

Pirmin Kalberer 	2010-12-31

    Place 3D models on point layer

Pirmin Kalberer 	2010-12-30

    globe_plugin_guibase.ui removed

Marco Bernasocchi 	2010-12-10

    FIXED ALL issues regarding elevationDatasourceChanges and globeClosed signals

Marco Bernasocchi 	2010-12-10

    fixed closeEvent by subclassing QDockWidget instead of QgsGLWidgetAdapter

Marco Bernasocchi 	2010-12-10

    fixed GlobeClosed signal, now need to fix closeEvent

Marco Bernasocchi 	2010-12-10

    fixed elevationDatasetsChanged() signal

Marco Bernasocchi 	2010-12-10

    added suppor for signals for elevationDatasourceChanged and globeClosed, they don't work yet since I neet to understand how to set viever and mSettingsDialog as sender. see FIXME in globe_plugin.cpp

    Regression: moving rows up and down bug -> work on it tomorrow

Marco Bernasocchi 	2010-12-09

    testing newProjectCreated () signal

Pirmin Kalberer 	2010-12-09

    Use cache from settings

Pirmin Kalberer 	2010-12-09

    getDatabasePager clear when changing 3D settings

Marco Bernasocchi 	2010-12-09

    initial readProject signal support

Marco Bernasocchi 	2010-12-09

    fixed earth file

Marco Bernasocchi 	2010-12-09

    gui stable, added cache checkboxes

Marco Bernasocchi 	2010-12-09

    adding initial cache support

Pirmin Kalberer 	2010-12-09

    Elevation layers from settings dialog

Marco Bernasocchi 	2010-12-09

    Elevation Layers are now saved in the project file instead of in QSettings

Marco Bernasocchi 	2010-12-08

    added move layers up or down

Marco Bernasocchi 	2010-12-08

    Single selection only. Segfaults resolved

Marco Bernasocchi 	2010-12-08

    more code clean up

Marco Bernasocchi 	2010-12-08

    cleaned code, gui set to no drag and drop and single selection mode

Marco Bernasocchi 	2010-12-08

    first cleanup fixed file check

Marco Bernasocchi 	2010-12-08

    pre cleanup code

Marco Bernasocchi 	2010-12-08

    working initial gui for elevation, needs code clean up

Marco Bernasocchi 	2010-12-08

    added initial support for layer loading through the gui

Marco Bernasocchi 	2010-12-07

    adapted gui to support data input

Marco Bernasocchi 	2010-12-07

    code cleanup

Marco Bernasocchi 	2010-12-07

    Added disabling of irrelevant options to settings dialog

Pirmin Kalberer 	2010-12-01

    Refresh button

Pirmin Kalberer 	2010-12-01

    onClick event on mouse release

Marco Bernasocchi 	2010-12-01

    fixed homeHandler

Marco Bernasocchi 	2010-12-01

    added HomeControlHandler

Marco Bernasocchi 	2010-12-01

    fixed sync handler fixed refresh handler added home handler code formatting

Pirmin Kalberer 	2010-11-29

    Code cleanup

Marco Bernasocchi 	2010-11-29

    reworked gui added new handlers //TODO use GlobePlugin::syncExtent instead of duplicating code

Marco Bernasocchi 	2010-11-29

    initial sync exent button

Marco Bernasocchi 	2010-11-28

    testing gui reset buttons

Marco Bernasocchi 	2010-11-26

    added live preview of Stereo Settings

Marco Bernasocchi 	2010-11-26

    added GUI navigation, reset buttons still missing

Marco Bernasocchi 	2010-11-26

    added missing tilt icons added KeyboardControlHandler

Pirmin Kalberer 	2010-11-26

    Revert FlyToExtentHandler

Marco Bernasocchi 	2010-11-25

    added tilt to gui

Pirmin Kalberer 	2010-11-26

    onMouseDown handling

Marco Bernasocchi 	2010-11-25

    added keybord controls: - pan Horizontal 4,6 - pan Vertical 8,2 - rotate left / - rotate right * - tilt up 9 - tilt down 3 - zoom +-

    uset this keys because I can't get osgGA::GUIEventAdapter::KEY_Left ecc to work yet

Marco Bernasocchi 	2010-11-25

    renamed flytoextenthandler to controlshandler

Marco Bernasocchi 	2010-11-25

    added tilt to gui

Pirmin Kalberer 	2010-11-24

    NavigationControl

Marco Bernasocchi 	2010-11-24

    testing how to get key bindings

Marco Bernasocchi 	2010-11-24

    test github commit hook

Marco Bernasocchi 	2010-11-24

    added all elements to gui

Pirmin Kalberer 	2010-11-23

    moveVControls fixed

Marco Bernasocchi 	2010-11-23

    fixed typo

Marco Bernasocchi 	2010-11-23

    added initial gui to the globe

Marco Bernasocchi 	2010-11-23

    Completed Stereo settings support added reset stereo settings to defaults values button

Pirmin Kalberer 	2010-11-21

    Handle screen distance stereo setting

Marco Bernasocchi 	2010-11-20

    refactoring of setStereoMode done

Marco Bernasocchi 	2010-11-20

    added modal dialog

Pirmin Kalberer 	2010-11-20

    Made settings dialog a member of GlobePlugin

Marco Bernasocchi 	2010-11-18

    typo fixes

Marco Bernasocchi 	2010-11-18

    forgot this files in last checkout

Marco Bernasocchi 	2010-11-18

    refactoring

    TODO: Call QgsGLWidgetAdapter::setStereoMode(QString stereoMode) from GlobePlugin::settings() instead of code duplication in GlobePluginDialog::setStereoMode()

Pirmin Kalberer 	2010-11-18

    Settings dialog

Pirmin Kalberer 	2010-11-17

    Portable cache path

Marco Bernasocchi 	2010-11-17

    Added runtime stereo selection to settings dialog and at plugin start

Marco Bernasocchi 	2010-11-17

    fixing resource file

Marco Bernasocchi 	2010-11-16

    implemented settings dialog with placeholders methods

Marco Bernasocchi 	2010-11-16

    adding place holders for settings dialog adding settings UI file

Marco Bernasocchi 	2010-11-16

    adding new globe images

Pirmin Kalberer 	2010-11-14

    Globe icon

Pirmin Kalberer 	2010-11-14

    Use WorldWind SRTM with pre-populated cache. GlobePlugin code cleanup.

Pirmin Kalberer 	2010-11-14

    Moved sample 3D models to Lech

Pirmin Kalberer 	2010-11-13

    cache configuration

Mathias Walker 	2010-11-13

    - node placement on terrain surface - placement test using generated models

Pirmin Kalberer 	2010-11-13

    Worldwind cache data

Pirmin Kalberer 	2010-11-13

    Remove world.tif from globe.earth

Pirmin Kalberer 	2010-11-13

    Use world.tif from QGIS package

Pirmin Kalberer 	2010-11-13

    HTTP Proxy support

Pirmin Kalberer 	2010-11-13

    world.tif added

Pirmin Kalberer 	2010-11-10

    mouse tracking

Pirmin Kalberer 	2010-11-07

    GLOBE_OSG_STANDALONE_VIEWER

Pirmin Kalberer 	2010-11-07

    Added Controls from 2.0 master branch

Marco Bernasocchi 	2010-11-02

    Fixed mousewheel zoom making it consistent to qgis zoom (scroll up = zoom in)

Pirmin Kalberer 	2010-11-02

    Initial support for non-WGS-84 layers

Pirmin Kalberer 	2010-11-01

    Install globe.earth in QGIS_DATA_DIR/globe

Pirmin Kalberer 	2010-10-10

    include cleanup

Pirmin Kalberer 	2010-10-06

    Mouse wheel zoom

Pirmin Kalberer 	2010-10-06

    Fly to extent handler

Pirmin Kalberer 	2010-09-03

    extent check in tile source

Pirmin Kalberer 	2010-09-03

    Aster DEM

Pirmin Kalberer 	2010-09-03

    layersChanged experiments

Pirmin Kalberer 	2010-08-19

    thread locking removed

Pirmin Kalberer 	2010-08-19

    globe plugin from master branch

Juergen E. Fischer 	2011-07-05

    fix 55a1778 with patched qt on osgeo4w

Juergen E. Fischer 	2011-07-05

    fix windows build

Juergen E. Fischer 	2011-07-05

    add support for mixed case geometry types of PostGIS 2.0

Merge: a637ebc 93fb601
Marco Hugentobler 	2011-07-05

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Marco Hugentobler 	2011-07-05

    Support alpha-transparency in svg markers and fills

Marco Hugentobler 	2011-07-04

    Use svg cache for svg fill layer

Marco Hugentobler 	2011-07-05

    Support alpha-transparency in svg markers and fills

NathanW 	2011-07-05

    Reduce top and side margins for attribute table dialog

Martin Dobias 	2011-07-05

    Python console: consider also Enter on keypad. Fixes #3855.

    Contributed by Steven Mizuno

Martin Dobias 	2011-07-04

    Graduated renderer: handle the case with only one class

Martin Dobias 	2011-07-04

    It does not make sense to classify into zero classes, does it?

Martin Dobias 	2011-07-04

    Remove duplicate menu entries on non-kde platforms (fix #4040)

Martin Dobias 	2011-07-04

    Fix last equal interval break in graduated symbol renderer (#4044)

William Kyngesburye 	2011-07-04

    simplify detection on OS X

William Kyngesburye 	2011-07-04

    OS X frameworks for qgis libs;
    dev frameworks install option;
    cmake cleanup

Merge: 3849742 ff83436
Marco Hugentobler 	2011-07-04

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Marco Hugentobler 	2011-07-04

    Small clean in sip file

NathanW 	2011-07-04

    Updated Python bindings for lable and composeritem

NathanW 	2011-07-04

    Ability to set id of any composer item moved from just qgscomposerlabel to qgscomposeritem
    All items can now have a user set id.  Good for plugin automation eg mapbook builder

Marco Hugentobler 	2011-07-04

    Use svg cache for svg fill layer

Marco Hugentobler 	2011-07-04

    Fix some problems with svg cache

Marco Hugentobler 	2011-07-04

    Fix some problems with svg cache

Tim Sutton 	2011-07-04

    Better ignore options

Merge: 934e56f a946a20
Tim Sutton 	2011-07-04

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-07-04

    More git ignores

Tim Sutton 	2011-07-04

    Try to make the histogram smoother

Juergen E. Fischer 	2011-07-04

    fix lenny build

NathanW 	2011-07-04

    Rename QgsExpressionBuilder to QgsExpressionBuilderWidget

NathanW 	2011-07-03

    Copy layout and code from field calculator for expression builder widget

Juergen E. Fischer 	2011-07-03

    other workaround for Qt#5114 (fixes #3250, #3028, #2598)

Juergen E. Fischer 	2011-07-03

    fix windows build

Merge: 8cddfb8 8e5cd40
NathanW 	2011-07-03

    Merge remote branch 'upstream/master' into expression-labels
    Fixed merge conflict in pallabeling

    Conflicts:
src/core/qgspallabeling.cpp

Marco Hugentobler 	2011-07-02

    Lock render method with mutex. Usefull e.g. for globe plugin which renders in threads

Marco Hugentobler 	2011-07-02

    Fix labeling-ng with utf-8 layers (ticket #3854)

Merge: 4d75a7d 701e35d
Marco Hugentobler 	2011-07-01

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Merge: d954421 4d75a7d
NathanW 	2011-07-01

    Merge remote branch 'upstream/master' into expression-labels

Juergen E. Fischer 	2011-07-01

    postgresql provider: fix 64bit ints

Juergen E. Fischer 	2011-07-01

    search string parser: fix -a expression (fixes #4025)

Giuseppe Sucameli 	2011-06-30

    [FEATURE] Improve SpatiaLite provider to manage non-spatial tables

Marco Hugentobler 	2011-06-30

    Emit signal when showing / hiding composer

Marco Hugentobler 	2011-06-30

    Emit signal when showing / hiding composer

Merge: 4888f51 b6fa94f
Tim Sutton 	2011-06-30

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-06-30

    [backport] Fix bug where histogram can be assigned negative frequency for a pixel range. Also fix potential memory leak as new histogram vector was assigned to band stats without clearing the old.

Tim Sutton 	2011-06-30

    Added section on using QtCreator

Tim Sutton 	2011-06-30

    Fix bugs causing a crash when histogram is gathered due to uninitilised histogram vector

Merge: eb9d610 4546646
Marco Hugentobler 	2011-06-30

    Merge branch 'svg_params'

Marco Hugentobler 	2011-06-30

    Adapt svg param elements also if going via the line edit

Marco Hugentobler 	2011-06-29

    small tweak to svg file

Marco Hugentobler 	2011-06-29

    Small fix for svg parameter replacement

Marco Hugentobler 	2011-06-29

    Added svg parameters to marker files

Marco Hugentobler 	2011-06-29

    Replace svg params also for preview

Marco Hugentobler 	2011-06-29

    Fix replacement in style attribute

Merge: 664317f 85ca9bd
Marco Hugentobler 	2011-06-29

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Marco Hugentobler 	2011-06-29

    Try to consider default parameters

Tim Sutton 	2011-06-28

    Added missing QUrl include

Merge: 6509df2 b664ca0
Marco Hugentobler 	2011-06-28

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Tim Sutton 	2011-06-28

    A neater fix for missing map parameter as suggested by Juergen

Marco Hugentobler 	2011-06-28

    Remove oldest entries from svg cache if cache size is too large

Merge: e79fe4d 0d91c81
Tim Sutton 	2011-06-28

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-06-28

    Removed some very noisy debugging when symbol class not encountered in symbol list

Tim Sutton 	2011-06-28

    Added some extra debug info for project path

Tim Sutton 	2011-06-28

    Fixed a bug where map= was not being published in onlineresource url when project files are not in the same dir as cgi

Marco Hugentobler 	2011-06-27

    Support also style-syntax for svg params

Juergen E. Fischer 	2011-06-27

    fix #3987

Marco Hugentobler 	2011-06-27

    Restore svg marker selection

Marco Hugentobler 	2011-06-27

    Tweak for layer cache

Merge: de5ffb5 8910039
Marco Hugentobler 	2011-06-27

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Marco Hugentobler 	2011-06-27

    Tweak for layer cache

Marco Hugentobler 	2011-06-25

    Notify dialog if svg accepts parameters

Marco Hugentobler 	2011-06-25

    Change color through svg marker dialog

Marco Hugentobler 	2011-06-25

    Use QImage for map and QPicture for composer

Marco Hugentobler 	2011-06-24

    Fix for filtering in qgis server

Marco Hugentobler 	2011-06-24

    Remove debug noise

Marco Hugentobler 	2011-06-24

    Fix for filtering in qgis server

Marco Hugentobler 	2011-06-24

    Remove debug noise

Juergen E. Fischer 	2011-06-23

    add context help

Juergen E. Fischer 	2011-06-23

    [FEATURE] add function to calculator to determine x/y coordinate of nth point of a line
    (xat(i) / yat(i); indexs starts with 0; negative indizes apply to end of the line)

Marco Hugentobler 	2011-06-23

    Add caching, experimental test with QPicture for svg marker

Marco Hugentobler 	2011-06-23

    Further work on the svg cache

Marco Hugentobler 	2011-06-23

    Composer legend: support point symbol sizes in map units

Merge: 1d65377 3bd37ec
Marco Hugentobler 	2011-06-23

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Marco Hugentobler 	2011-06-23

    Composer legend: support point symbol sizes in map units

Juergen E. Fischer 	2011-06-21

    translation fix

Juergen E. Fischer 	2011-06-21

    postgres provider: fix endianess detection

Marco Hugentobler 	2011-06-21

    Started to implement svg cache

Marco Hugentobler 	2011-06-20

    Fix for using ellipses with renderers other than single

Marco Hugentobler 	2011-06-20

    Add line edit to select svg marker

Marco Hugentobler 	2011-06-20

    Fix for embeding layer and groups from project with relative pathes

Marco Hugentobler 	2011-06-16

    Fix bug in case of embeding from other projects with relative path

Juergen E. Fischer 	2011-06-19

    german translation update

NathanW 	2011-06-19

    Use selected text in label combo box for start off expression text

Marco Hugentobler 	2011-06-18

    Add license header to postrequesthandler, clean old code section

Merge: 2a05b54 abe6bb5
Marco Hugentobler 	2011-06-18

    Merge branch 'master' of github.com:mhugent/Quantum-GIS

Marco Hugentobler 	2011-06-18

    Add postrequesthandler

Marco Hugentobler 	2011-06-18

    Support requests with http post. Up to now, only SOAP requests over HTTP POST have been supported

Sergey Yakushev 	2011-06-06

    Fix #3866 for measure angle tool

Merge: 9028bf7 f70aae6
Radim Blazek 	2011-06-18

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2011-06-18

    enabled drag-and-drop from qbrowser to qgis, except wms

Marco Hugentobler 	2011-06-18

    More legend cleanup

Marco Hugentobler 	2011-06-17

    Better layout for composer legend

Marco Hugentobler 	2011-06-18

    More legend cleanup

NathanW 	2011-06-18

    Fix seg fault with using empty expression labels, added checks for empty expression

Marco Hugentobler 	2011-06-17

    Better layout for composer legend

Juergen E. Fischer 	2011-06-17

    fix windows build

Marco Hugentobler 	2011-06-17

    Better consideration of large point symbols in composer legend

Marco Hugentobler 	2011-06-17

    Fix for composer legend issues, e.g. ticket #3346

Juergen E. Fischer 	2011-06-16

    fix warnings

Juergen E. Fischer 	2011-06-16

    [FEATURE] support 64bit feature ids

Radim Blazek 	2011-06-16

    drag layer fix

Merge: 728de00 608d394
Radim Blazek 	2011-06-16

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2011-06-16

    Possibility to delete multiple composer legend entries at once

Marco Hugentobler 	2011-06-16

    Avoid infinite recursion if no log file variable set

Marco Hugentobler 	2011-06-16

    Support for raster legend in composer

Merge: 6ce35e3 cc7e63b
Marco Hugentobler 	2011-06-16

    merge conflict

Juergen E. Fischer 	2011-06-16

    fix lenny build

Giuseppe Sucameli 	2011-06-16

    Correct the output label's text in GdalTools Contour

Marco Hugentobler 	2011-06-15

    Collapse raster symbology items by default, check for graystile raster first and for raster shaders in a second part

Marco Hugentobler 	2011-06-15

    Fix preview with data defined settings, indentation

Marco Hugentobler 	2011-06-15

    Fix python bindings

Marco Hugentobler 	2011-06-15

    Add tooltips for shapes

Marco Hugentobler 	2011-06-15

    Forgot to add support for data defined shape

Marco Hugentobler 	2011-06-15

    Improve legend for pseudocolor, freakout, grayscale

Sergey Yakushevs 	2011-06-15

    fix

Sergey Yakushevs 	2011-06-15

    fix

Marco Hugentobler 	2011-06-14

    Symbol items for pseudo color shader

Marco Hugentobler 	2011-06-14

    Value label for colortable rasters

Marco Hugentobler 	2011-06-14

    [FEATURE]: Show colormap items in legend

Sergey Yakushevs 	2011-06-14

    optimization hit

Merge: 27db9c3 a954488
Radim Blazek 	2011-06-14

    resolved qgsbrowsermodel merge conflicts

Radim Blazek 	2011-06-14

    mime for drag and drop, not finished

NathanW 	2011-06-13

    Revert changes related to v1 labeling. Only going to support v2 labels for now.  Only return needed attributes for labeling to select (like before).  Add handlers for Ok and Cancel in expression dialog box (only temp)

Tim Sutton 	2011-06-12

    Fixed some old svn references and typos in INSTALL docs

Tim Sutton 	2011-06-12

    [BACKPORT] Added missing include for qgslogger

Tim Sutton 	2011-06-11

    [BACKPORT] Removed assert too

Tim Sutton 	2011-06-11

    [BACKPORT] Partially address https://bugzilla.redhat.com/show_bug.cgi?id=712620 - don't assert when things go wrong. Still needs to give user some decent feedback somehow but at least it shouldnt crash QGIS

Marco Hugentobler 	2011-06-10

    Improve data defined rotation

Marco Hugentobler 	2011-06-10

    Fix ellipse rotation

Marco Hugentobler 	2011-06-10

    started rotation / data defined rotation

Merge: d967b71 efb462b
Tim Sutton 	2011-06-10

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-06-10

    Obsoleted QgsMSLogger as it duplicates functionality from QgsLogger

Tim Sutton 	2011-06-10

    Added pre-render layer count to maprenderer

Tim Sutton 	2011-06-10

    Improve formatting of debug output for maprenderer map dimentions

Tim Sutton 	2011-06-05

    added debugging info to mapserver while trying to resolve blank rendering issues

Sergey Yakushev 	2011-06-10

    add support for WKBMultiLineString geometries in RoadGraph plugin

Tim Sutton 	2011-06-10

    Improve formatting of debug output for maprenderer map dimentions

Tim Sutton 	2011-06-10

    Run astyle to cleanup formatting

Tim Sutton 	2011-06-10

    [FEATURE] Added support for logging to a file. To enable it, set the QGIS_LOG_FILE environment variable to a writable file on your file system. When using the QGIS Mapserver, you can enable logging by adding a directive such as 'SetEnv QGIS_LOG_FILE /tmp/qgislog.txt' to the  cgi-bin section of your apache config file.

Tim Sutton 	2011-06-10

    Run astyle to cleanup formatting

Merge: 4bcddc1 be751be
Tim Sutton 	2011-06-10

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Tim Sutton 	2011-06-10

    [FEATURE] Added support for logging to a file. To enable it, set the QGIS_LOG_FILE environment variable to a writable file on your file system. When using the QGIS Mapserver, you can enable logging by adding a directive such as 'SetEnv QGIS_LOG_FILE /tmp/qgislog.txt' to the  cgi-bin section of your apache config file.

Tim Sutton 	2011-06-10

    Don't use exponential notation for wms extents display

Tim Sutton 	2011-06-10

    Added warning that .qgs extension may be missing

Merge: b2fa1b8 fabc66a
Tim Sutton 	2011-06-10

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-06-10

    Added warning that .qgs extension may be missing

Marco Hugentobler 	2011-06-10

    [FEATURE]: zonal statistics plugin

Marco Hugentobler 	2011-06-10

    [FEATURE]: zonal statistics plugin

Sergey Yakushev 	2011-06-06

    fix RoadGraph plugin "path not found" error when start and stop points are equal

Juergen E. Fischer 	2011-06-07

    document impact of using estimated table metadata (and revert last commit)

Gary Sherman 	2011-06-07

    Fix feature count for postgres provider so it doesn't use estimated metadata when reporting results of a subset in the query builder

Tim Sutton 	2011-06-05

    Updated references to bug tracker to point to hub website

Alexander Bruy 	2011-06-03

    remove unimplemented QgsLabel::setLabelFieldName()

Juergen E. Fischer 	2011-06-03

    fix #3866

Marco Hugentobler 	2011-06-03

    Don't list join fields to facilitate 'save as' function (fixes #3857). Don't display the query builder if a layer has joins (#3858)

Merge: 82e9936 1b15528
Tim Sutton 	2011-06-10

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2011-06-07

    Fix for layer order in case of option addNewLayersToCurrentGroup

Marco Hugentobler 	2011-06-07

    Avoid unnecessary canvas refreshes when adding group to legend

Marco Hugentobler 	2011-06-07

    Zoom to filtered layers in wms server if BBOX parameter missing

Marco Hugentobler 	2011-06-06

    Reformating, fix for project cleaning

Marco Hugentobler 	2011-06-06

    Fix order of embedded layers in groups

Marco Hugentobler 	2011-06-06

    More safety checks

Marco Hugentobler 	2011-06-05

    Support embedded layers and groups in server

Marco Hugentobler 	2011-06-03

    Move embed action to layer menu

Marco Hugentobler 	2011-06-03

    Improvements to embed dialogs and stability

Marco Hugentobler 	2011-06-01

    Wire in dialog to select embedded groups and layers

Marco Hugentobler 	2011-05-31

    Add support for embedded legend groups

Marco Hugentobler 	2011-05-31

    Show embedded layers in italic

Marco Hugentobler 	2011-05-31

    remove more redundancy in qgsproject

Marco Hugentobler 	2011-05-30

    embedding of single layer

Marco Hugentobler 	2011-06-09

    Support data defined fields in ellipse renderer

Sergey Yakushev 	2011-06-06

    fix RoadGraph plugin "path not found" error when start and stop points are equal

Sergey Yakushevs 	2011-06-09

    fix sip module

Marco Hugentobler 	2011-06-09

    Add and wire in ellipse symbol layer widget

Marco Hugentobler 	2011-06-09

    Integrated qgsellipsesymbollayer

Marco Hugentobler 	2011-06-09

    Ported single and graduated symbol renderer to use usedAttributes() functions of symbol

Marco Hugentobler 	2011-06-08

    Pass pointer to vectorlayer to all simbol widgets

Marco Hugentobler 	2011-06-08

    Include QgsFeature pointer to symbol render context. Bindings not adapted yet

Merge: 36854d2 a579685
Tim Sutton 	2011-06-08

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Marco Hugentobler 	2011-06-07

    Fix for layer order in case of option addNewLayersToCurrentGroup

Marco Hugentobler 	2011-06-07

    Avoid unnecessary canvas refreshes when adding group to legend

Marco Hugentobler 	2011-06-07

    Zoom to filtered layers in wms server if BBOX parameter missing

Marco Hugentobler 	2011-06-06

    Reformating, fix for project cleaning

Marco Hugentobler 	2011-06-06

    Fix order of embedded layers in groups

Marco Hugentobler 	2011-06-06

    More safety checks

Marco Hugentobler 	2011-06-05

    Support embedded layers and groups in server

Marco Hugentobler 	2011-06-03

    Move embed action to layer menu

Marco Hugentobler 	2011-06-03

    Improvements to embed dialogs and stability

Marco Hugentobler 	2011-06-01

    Wire in dialog to select embedded groups and layers

Marco Hugentobler 	2011-05-31

    Add support for embedded legend groups

Marco Hugentobler 	2011-05-31

    Show embedded layers in italic

Marco Hugentobler 	2011-05-31

    remove more redundancy in qgsproject

Marco Hugentobler 	2011-05-30

    embedding of single layer

Marco Hugentobler 	2011-06-07

    Fix for layer order in case of option addNewLayersToCurrentGroup

Juergen E. Fischer 	2011-06-07

    document impact of using estimated table metadata (and revert last commit)

Gary Sherman 	2011-06-07

    Fix feature count for postgres provider so it doesn't use estimated metadata when reporting results of a subset in the query builder

Marco Hugentobler 	2011-06-07

    Avoid unnecessary canvas refreshes when adding group to legend

Marco Hugentobler 	2011-06-07

    Zoom to filtered layers in wms server if BBOX parameter missing

Marco Hugentobler 	2011-06-06

    Reformating, fix for project cleaning

Marco Hugentobler 	2011-06-06

    Fix order of embedded layers in groups

Merge: 107df1f ba39378
Marco Hugentobler 	2011-06-06

    Merge branch 'embed_layers'

Marco Hugentobler 	2011-06-06

    More safety checks

Merge: 03525ea 6cb4248
Tim Sutton 	2011-06-06

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Sergey Yakushevs 	2011-06-06

    fix: LineVectorLayerDirector work incorectly if vector layer contained WKBMultiPolyline geometry

Marco Hugentobler 	2011-06-05

    Support embedded layers and groups in server

Tim Sutton 	2011-06-05

    Updated references to bug tracker to point to hub website

Merge: 48d82eb 0e318b0
Tim Sutton 	2011-06-05

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-06-05

    Updated references to bug tracker to point to hub website

NathanW 	2011-05-26

    Added expression based labels, simple dialog for entering expressions.
    Code still needs some clean up and testing.

Alexander Bruy 	2011-06-03

    remove unimplemented QgsLabel::setLabelFieldName()

Juergen E. Fischer 	2011-06-03

    fix #3866

Marco Hugentobler 	2011-06-03

    Move embed action to layer menu

Marco Hugentobler 	2011-06-03

    Don't list join fields to facilitate 'save as' function (fixes #3857). Don't display the query builder if a layer has joins (#3858)

Marco Hugentobler 	2011-06-03

    Improvements to embed dialogs and stability

Sergey Yakushevs 	2011-06-03

    Python bindings. Part 3

Sergey Yakushevs 	2011-06-03

    use QgsVectorLayer*, not use LayerId

Sergey Yakushevs 	2011-06-03

    use QgsVectorLayer*, not use LayerId

Juergen E. Fischer 	2011-06-02

    browser changes:
    - use empty string as default wms style
    - update wms preview when render caching is enabled
    - some cleanups

Steven Mizuno <>	2011-06-02

    applied #3863 (fixes #2774)

Sergey Yakushevs 	2011-06-02

    Python bindings. part2

Tim Sutton 	2011-06-02

    Mark icon with 'm' for master branch to make working with multiple installs easier

Merge: 0e12034 edad445
Tim Sutton 	2011-06-02

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Sergey Yakushevs 	2011-06-02

    Launch python bindings for network analysis library

Sergey Yakushevs 	2011-06-02

    a code wash

Juergen E. Fischer 	2011-06-01

    fix #3859

Juergen E. Fischer 	2011-05-30

    implement some workaround to support legacy WMS (fixes #3853)

Marco Hugentobler 	2011-06-01

    Wire in dialog to select embedded groups and layers

Sergey Yakushevs 	2011-06-01

    using only 'vertex/arc' notation

Sergey Yakushevs 	2011-06-01

    fix Doxygen warnings, documentation update

Marco Hugentobler 	2011-05-31

    Add support for embedded legend groups

Merge: 9ab859a c8dd587
Sergey Yakushevs 	2011-05-31

    Merge remote branch 'pb/master' into network-analysis

    Conflicts:
src/analysis/network/qgsdistanceedgeproperter.cpp
src/analysis/network/qgsgraphbuilder.h
src/plugins/roadgraph/graphbuilder.h
src/plugins/roadgraph/linevectorlayerdirector.cpp
src/plugins/roadgraph/roadgraphplugin.cpp
src/plugins/roadgraph/shortestpathwidget.cpp
src/plugins/roadgraph/simplegraphbuilder.cpp

Merge: 8bbdde6 c8dd587
Sergey Yakushevs 	2011-05-31

    Merge remote branch 'pb/master'

    Conflicts:
src/plugins/roadgraph/linevectorlayerdirector.cpp

Marco Hugentobler 	2011-05-31

    Show composer picture preview icons on demand

Marco Hugentobler 	2011-05-31

    Show embedded layers in italic

Marco Hugentobler 	2011-05-31

    remove more redundancy in qgsproject

Sergey Yakushevs 	2011-05-31

    using only 'vertex/arc' notation

Sergey Yakushevs 	2011-05-31

    1. Use real builder-director pattern.
    2. Replase QMap container to QVector, sort and bynary search. RAM saving at the same perfomance.

Marco Hugentobler 	2011-05-30

    embedding of single layer

Sergey Yakushevs 	2011-05-30

    fix dijkstra alogorithm return. Shortest three contain wrong edge.

William Kyngesburye 	2011-05-29

    sync OS X doc updates and cleanup from release 1.7

William Kyngesburye 	2011-05-29

    OS X install updates

William Kyngesburye 	2011-05-28

    add missing version numbers to Mac framework detection

Juergen E. Fischer 	2011-05-28

    windows: browser and helpviewer are gui applications

Juergen E. Fischer 	2011-05-28

    osgeo4w: fix postinstall

Juergen E. Fischer 	2011-05-27

    make pdf generation for txt2tags doc optional

Juergen E. Fischer 	2011-05-27

    cmake: replace deprecated SUBDIRS with ADD_SUBDIRECTORY

Juergen E. Fischer 	2011-05-27

    implement #3850

Sergey Yakushevs 	2011-05-27

    fix excess graph build if topology tolerance > 0

Merge: f49be68 27c9870
Tim Sutton 	2011-05-27

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Sergey Yakushevs 	2011-05-27

    fix compile errors

Sergey Yakushevs 	2011-05-27

    apply #3849

Juergen E. Fischer 	2011-05-26

    create PDFs from t2t files

Juergen E. Fischer 	2011-05-26

    fix grammar warning

Juergen E. Fischer 	2011-05-26

    remove svn Id tags

Merge: ffc267d db4fdee
Tim Sutton 	2011-05-26

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-05-26

    Coding guideline updates for GIT

Merge: c2757d3 0e5baf4
Tim Sutton 	2011-05-26

    Merge pull request #25 from brushtyler/master

    GdalTools clipper, crop to mask layer extent. will cherry-pick to release branch too.

Sandro Santilli 	2011-05-26

    Add support for modulo operator (%) in rule based rendering. See ticket #3845.

Sandro Santilli 	2011-05-26

    Fix missing space between 'Middle' and 'Right' click instructions, consistently use 'vertex' rather than 'point' while adding lines or boundaries. Fixes bug #3846.

Merge: 4be0d71 2670283
Tim Sutton 	2011-05-26

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Sergey Yakushevs 	2011-05-26

    New topology tolerance implementation. Some bug fix.

Giuseppe Sucameli 	2011-05-26

    crop to mask layer extent

Sergey Yakushevs 	2011-05-26

    fix 'on the fly' transform problem

Sergey Yakushevs 	2011-05-26

    QgsDistanceArea copy-construct is bad. Fix it.

Merge: 4070354 21fa438
Radim Blazek 	2011-05-25

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2011-05-25

    fixed #3839

Juergen E. Fischer 	2011-05-25

    osgeo4w: include browser batch template

Merge: 3f50ee2 c3e161a
Tim Sutton 	2011-05-25

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Sergey Yakushevs 	2011-05-25

    modify RoadGraphPlugin for works with QGIS'api. Fix some bug

Juergen E. Fischer 	2011-05-25

    fix fcb001d - affects more distributions than just lenny

Sergey Yakushevs 	2011-05-25

    add qgsgraphanalyzer.*

Juergen E. Fischer 	2011-05-25

    fixx lenny build

Sandro Santilli 	2011-05-24

    Fix wrong arrow orientation when lines end with duplicated points (#3837)

Juergen E. Fischer 	2011-05-24

    debian packaging fixes

Marco Hugentobler 	2011-05-24

    Discard empty http parameters in mapserver

Merge: 4d5455f 0b2317e
Tim Sutton 	2011-05-24

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Sergey Yakushevs 	2011-05-24

    add qgslinevectorlayerdirector

Juergen E. Fischer 	2011-05-24

    fix windows build by cleaning up (dynamic) linkage and some warnings

Sergey Yakushevs 	2011-05-24

    add properter classes

Merge: 09de6da 77d2651
Jürgen Fischer 	2011-05-24

    Merge pull request #24 from pcav/master

    One more typo in IT translation

pcav 	2011-05-24

    Another minor edit to IT translation - thanks Gabriele Monfardini for noticing

Merge: b610620 a075104
Jürgen Fischer 	2011-05-24

    Merge pull request #23 from pcav/master

    Minor change to IT translation

Merge: a075104 b610620
pcav 	2011-05-24

    Merge branch 'master' of git://github.com/qgis/Quantum-GIS

pcav 	2011-05-24

    Minor edit to IT translation

Sergey Yakushevs 	2011-05-24

    add qgsgraphbuilder interface

Sergey Yakushevs 	2011-05-24

    add qgsgraphbuilder interface

Merge: 7c0e900 b610620
Tim Sutton 	2011-05-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-05-23

    fix typos

Juergen E. Fischer 	2011-05-23

    debian and osgeo4w packaging update: include qbrowser

Sergey Yakushevs 	2011-05-23

    add QgsGraph class

Sergey Yakushevs 	2011-05-23

    Launch of integration RoadGraph api in the QGIS

Merge: 4549d0e ffed1d7
Tim Sutton 	2011-05-23

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Juergen E. Fischer 	2011-05-23

    cleanups:
    - use QMetaObject instead of RTTI
    - no get in getters:
      - QgsDataProvider:
       - getProvider => provider
       - getSelectWidget => selectWidget
       - getFunction => function
       - getLibary => providerLibrary
      - QgsProviderRegistry:
       - getLibrary => providerLibrary
    - /* ... */ => #if 0 / #endif
    - reindentation

Merge: 1d3ac80 ee6c516
Sergey Yakushevs 	2011-05-23

    Merge remote branch 'pb/master'

Juergen E. Fischer 	2011-05-23

    osgeo4w update: fix crssync run

Juergen E. Fischer 	2011-05-23

    fix build with Qt 4.6 and some warnings

Juergen E. Fischer 	2011-05-21

    german translation update

Merge: 5fea5a8 bb1a4e6
Tim Sutton 	2011-05-23

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Merge: 9784cd7 cd8ecd6
Tim Sutton 	2011-05-22

    Merge pull request #22 from alexbruy/master

    Make "-dstalpha" parameter in GDALTools Clipper optional

Merge: ffed1d7 9784cd7
Tim Sutton 	2011-05-22

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Alexander Bruy 	2011-05-22

    add checkbox for "-dstalpha" option in GDALTools Clipper tool

Radim Blazek 	2011-05-22

    grass support for qbrowser

Marco Hugentobler 	2011-05-21

    Show only annotation items in composermap, no rubberbands etc. Fixes ticket #3774

Juergen E. Fischer 	2011-05-21

    fix windows build

Marco Hugentobler 	2011-05-20

    Fix rotation of simple marker if cache is not used (ticket #3778)

Merge: 0390131 62db3d7
Martin Dobias 	2011-05-20

    Merge branch 'browser-and-customization'

Martin Dobias 	2011-05-20

    Re-enable recursive WMS layers

Martin Dobias 	2011-05-20

    Move setCrs() back to QgsDataItem from QgsLayerItem.

    The rationale is that some data sources (providers) share CRS for a whole
    set of layers (e.g. GRASS)

Merge: 626c8dd 0390131
Sergey Yakushevs 	2011-05-19

    Merge remote branch 'pb/master'

Radim Blazek 	2011-05-18

    browser double click removed

Radim Blazek 	2011-05-18

    QgsLayerItem uri/providerKey/mapLayerType better vithout virtual methods

Marco Hugentobler 	2011-05-18

    Fix for multipoint bug in wfs provider. Fixes ticket #3829

Radim Blazek 	2011-05-18

    QgsLayerItem::layerInfo replaced by mapLayerType, providerKey and uri methods

Merge: cda5461 c724ce5
Tim Sutton 	2011-05-17

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Radim Blazek 	2011-05-17

    customize mMenuToolbar according to toolbars customization

Marco Hugentobler 	2011-05-17

    Composermapwidget update

Martin Dobias 	2011-05-16

    Hide QgsDataItem members: use getters for access

Martin Dobias 	2011-05-16

    Set data item's parent always in constructor

Martin Dobias 	2011-05-16

    QgsDataItem refactoring

    - hasChildren, rowCount, icon methods made non-virtual
    - shared default icons
    - data item's mType should be used for differentiating classes
    - layer-specific virtual methods moved down to QgsLayerItem

Merge: 6de875a 6062bb5
mhugent 	2011-05-16

    Merge pull request #21 from telwertowski/master

    Integrate Mac window event code with 'Show composer maps on demand'

Tom Elwertowski 	2011-05-16

    Integrate Mac window event code with 'Show composer maps on demand'

Radim Blazek 	2011-05-16

    Deblin removed

Marco Hugentobler 	2011-05-16

    Cleanup

Marco Hugentobler 	2011-05-16

    Show composer maps on demand after project loading

Martin Dobias 	2011-05-15

    Fix the compilation

Tim Sutton 	2011-05-15

    Added fancy pdf generation from t2t docs

Merge: 27e3a8f a942239
Tim Sutton 	2011-05-14

    Merge branch 'master' of github.com:timlinux/Quantum-GIS

Tim Sutton 	2011-05-14

    Fix inconsistent naming of general options

Tim Sutton 	2011-05-14

    Fix inconsistent naming of general options

Martin Dobias 	2011-05-14

    Fixed #3818

Merge: 153ad16 3ec8059
Martin Dobias 	2011-05-13

    Merge branch 'master' into dbl

    Conflicts:
images/splash/splash.png
src/CMakeLists.txt
src/app/main.cpp
src/app/qgsvectorlayerproperties.cpp
src/core/qgsvectorlayer.cpp
src/providers/wms/qgswmssourceselect.cpp

Martin Dobias 	2011-05-13

    All customization and QGIS browser work in one commit.

Merge: 6327b2e 5579560
Marco Hugentobler 	2011-05-13

    Merge branch 'wms_filewatch'

Marco Hugentobler 	2011-05-13

    Use a file watcher also for capabilities cache

Marco Hugentobler 	2011-05-13

    [FEATURE]: use file watcher in wms server to check for updates in project files

Alexander Bruy 	2011-05-12

    allow merging shapefiles with different attribute tables (fix #3010)

Merge: dfeb19b 07da493
Sergey Yakushevs 	2011-05-12

    Merge remote branch 'pb/master'

Marco Hugentobler 	2011-05-12

    [FEATURE]: Possibility to set a WFS filter

Merge: 5b1a9f9 76751f6
Sergey Yakushevs 	2011-05-12

    Merge remote branch 'pb/master'

Tom Elwertowski 	2011-05-11

    Mac Info.plist svn=>git

Radim Blazek 	2011-05-11

    sync QgsRubberBand and QgsMpaCanvasMap antialiasing, this also fixes 1px QgsRubberBand shift with x11 rendering engine if rendered without antialiasing

Juergen E. Fischer 	2011-05-11

    fix #3821

Alexander Bruy 	2011-05-11

    Display current filename in progressbar when merging and add option to
    select encoding for input files

Marco Hugentobler 	2011-05-11

    Maximum 40 entries in config and capabilities cache

Marco Hugentobler 	2011-05-11

    Wire in capabilities cache class

Marco Hugentobler 	2011-05-11

    Add capabilities cache classes and use QHash for config cache

Marco Hugentobler 	2011-05-11

    Add capabilities cache classes and use QHash for config cache

Juergen E. Fischer 	2011-05-11

    debian fix: git used to be in git-core

Marco Hugentobler 	2011-05-11

    Safety check for wms server filters

Merge: d05b140 a48c4ac
Marco Hugentobler 	2011-05-11

    Merge remote-tracking branch 'upstream/master'

Merge: c914c14 a48c4ac
Sergey Yakushevs 	2011-05-11

    Merge remote branch 'pb/master'

Tim Sutton 	2011-05-11

    Added Mayeul to the list of contributors (core) and translators (web client)

Juergen E. Fischer 	2011-05-10

    german translation update

Juergen E. Fischer 	2011-05-08

    more svn=>git stuff

Merge: 41bf4c8 45cc8a7
Tim Sutton 	2011-05-10

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Tim Sutton 	2011-05-10

    Updated splash for master branch

Marco Hugentobler 	2011-05-10

    Added wms filter support

Merge: 1455636 9647ac8
alexbruy 	2011-05-10

    Merge pull request #16 from alexbruy/master

    mask option for gdal_polygonize tool

Alexander Bruy 	2011-05-10

    add mask option to gdal_polygonize

Giuseppe Sucameli 	2011-05-10

    save file instead of open it in select output file dialog

Merge: fefae90 9ffedb4
Tim Sutton 	2011-05-10

    Merge pull request #14 from pcav/master

    IT translation wrong

Merge: 8494cad fb43d16
Sergey Yakushevs 	2011-05-10

    Merge branch 'master' of https://github.com/stopa85/Quantum-GIS

Sergey Yakushevs 	2011-05-10

    Road graph plugin not work or work incorrectly.
    Show message "First point not tied" if:
    1. 'on the fly' CRS transfomation disabled
    2. Source layer CRS not equal project CRS

    This path fix it.

Sergey Yakushevs 	2011-05-10

    Road graph plugin not work or work incorrectly.
    Show message "First point not tied" if:
    1. 'on the fly' CRS transfomation disabled
    2. Source layer CRS not equal project CRS

Werner Macho 	2011-05-10

    translation update: mn by Bayarma sl_SI by Joze

pcav 	2011-05-10

    Minor edits to IT translation

Merge: fb56838 ee20b30
Tim Sutton 	2011-05-10

    Merge pull request #13 from stopa85/master

    add to .gitignore vim swap file

Sergey Yakushevs 	2011-05-10

    Add to .gitignore vim swap files.

Juergen E. Fischer 	2011-05-09

    fix #3671: update view after search in attributetable

Merge: c586afe 7ad75d9
Tim Sutton 	2011-05-08

    Merge pull request #9 from kyngchaos/master

    finish fix for #3497

William Kyngesburye 	2011-05-07

    finish fix for #3497

William Kyngesburye 	2011-05-07

    finish fix for #3497

Jrgen E. Fischer 	2011-05-08

    fix lenny build

Merge: ad494d4 8fb20e0
Tim Sutton 	2011-05-07

    Merge pull request #6 from timlinux/master

    Radims fix for raster otf of wms render issues

Tim Sutton 	2011-05-07

    Radim's patch to fix rendering issues with otf wms reprojection

Merge: 1bff56a ce6588c
Juergen E. Fischer 	2011-05-07

    Merge branch 'master' of github.com:qgis/Quantum-GIS

Juergen E. Fischer 	2011-05-07

    debian packaging update for 1.8

Tim Sutton 	2011-05-07

    fix #3800

Jrgen E. Fischer 	2011-05-06

    osgeo4w: fix path in postinstall for crssync

Jrgen E. Fischer 	2011-05-06

    some more svn to git migration updates/fixes

Juergen E. Fischer 	2011-05-06

    apply #3721: add save edits button to attribute table

Juergen E. Fischer 	2011-05-06

    apply #3770: allow adding parts to line and point features and some refactoring

Juergen E. Fischer 	2011-05-05

    apply #3645: synchronization of srs.db with GDAL/PROJ on installation

Juergen E. Fischer 	2011-05-05

    update version number to 1.8.0 and codename back to Trunk

Juergen E. Fischer 	2011-05-04

    apply #3716: add value relation widget type

Juergen E. Fischer 	2011-05-04

    apply #3768: tile WMS getmap requests by limiting the size

Juergen E. Fischer 	2011-05-04

    apply #3793: libfcgi cannot change mapserv's environment variables on windows

Juergen E. Fischer 	2011-05-04

    update version tracking to git

Merge: 0e17f4e 0b7f5fa
Tim Sutton 	2011-05-04

    Merge pull request #2 from timlinux/master.

    Some minor updates to documentation and added shortname to the quickpackage script

Tim Sutton 	2011-05-04

    Dont point to old gdal lib/include dirs when creating an msvc shell

Tim Sutton 	2011-05-04

    Added shortname option to quickpackage script

Merge: fb01318 758fa49
Tim Sutton 	2011-05-04

    Merge pull request #1 from rudilinfiniti/master.

    Small install procedure updates for linux from Rudi Thiede

Rudi Thiede 	2011-05-04

    fixed minor errors in install documentation

Merge: 2f86b4f 6455628
Tim Sutton 	2011-05-02

    Merge branch 'master' of /home/timlinux/qgis-git-migration/qgis_all

jef 	2011-04-30

    fix gcc 4.6 warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15857 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-30

    Better fix for restoring custom layer properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15856 c8812cc2-4d05-0410-92ff-de0c093fc19c

telwertowski 	2011-04-30

    Workaround for Mac Cocoa freeze when adding a stop to a gradient color ramp (call QColorDialog::getColor after QInputDialog::getInt instead of before).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15855 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-30

    fix GRASS support in osgeo4w

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15854 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-30

    translation update:pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15853 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-29

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15852 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-29

    translation updates: mn new coordinator bayarmar enkhtur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15850 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-29

    Fix for save and read layer properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15849 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-29

    fix #3784

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15848 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-28

    fix #3782

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15847 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-28

    fix for epsg 32661 Polar Stereographic

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15846 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-28

    keep row col in limits to avoid crash with 32661; decrease max cp matrix size

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15845 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-28

    osgeo4w update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15844 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-28

    Fix for placement of map items in composer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15843 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-28

    draw grass region without fill

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15842 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-28

    oh, well - complete r15835

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15841 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-28

    osgeo4w update: adapt to new GRASS 6.4.1 and gdal-mrsid packages

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15840 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-04-28

    another part of dutch grass translation, translated by Carlo van Rijswijk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15839 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-28

    Port zoom rectangle from QRubberBand to QgsRubberBand. Fixes zoom rectangle fill on x11 platform after resize bug workaround

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15838 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-28

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15837 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-28

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15836 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-27

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15835 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-27

    plugin installer: do not consider an empty repo as invalid

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15832 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-27

    Fix windows build issue - moc headers needed for grassprovider too

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15831 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-27

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15830 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-27

    translation updates: ru by artem


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15829 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-26

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15827 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-26

    translation update: context help fr by JRM


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15826 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-26

    translation update: bunch of updates for 1.7 ru by artem, hr_HR by Zoran, fr by JRM, sl_SI by Joze, ja by yoichi, cs_CZ by jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15825 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-04-26

    Updated IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15824 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-26

    rollback r15636, partly r15792 and r15795

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15823 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-26

    More ignore rules

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15822 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-24

    Better error handling for polygon clipping

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15817 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-23

    Use epsg number for output crs in rastercalculator if possible (ticket #3649)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15815 c8812cc2-4d05-0410-92ff-de0c093fc19c

esseffe 	2011-04-23

    fixing several issues related to SpatiaLite 3D Geometries


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15814 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    fix mac build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15813 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    fix #2829

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15812 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15811 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15810 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    improve handling of empty extents (fixes #2997)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15809 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    raster provider: reenable Q_OBJECT and fix comments

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15808 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-22

    Fixed some typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15807 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    fix warning & comment

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15806 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-22

    creatensis.pl: update ecw/mrsid package reference

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15805 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    ouch, fix debug build on mac II

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15804 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    fix debug build on mac

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15803 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-21

    Updates for selection icons in git theme by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15802 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-21

    Updated license from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15801 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    missed a file in r15797

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15800 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    fix starting qgis_help on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15799 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    fix #3766

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15798 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    add options to creatensis.pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15797 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    add runtime warning if loading of translation fails

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15796 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    windows build without BINDINGS_GLOBAL_INSTALL

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15795 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-21

    german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15794 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-21

    Added a note about not enabling python bindings global install on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15792 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-21

    Fix internal function of wms server

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15791 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-21

    newgis + dodo = best friends (last removal of the newgis theme)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15790 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-21

    Removed deprecated newgis theme

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15789 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-21

    GIS Theme updates from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15788 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-21

    Improve python bindings for adding legend groups (#3263). Patch from Marco Bernasocchi

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15787 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-20

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15785 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-20

    fix #2227

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15784 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-20

    reduce raster reprojection debugging noice

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15783 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-20

    translation update: BIG Stringfreeze for 1.7 second try


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15782 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-20

    fix #3413

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15781 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-20

    fix progressbar behaviour in Merge shapefiles tool


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15777 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-20

    fix debug build for Qt <4.7

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15775 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-20

    translation update: pt_BR by arthur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15774 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-19

    fix crashes on exit (follows up r15751)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15773 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-19

    Fix for resize crash, ticket #2714

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15771 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-19

    re-add wms tile extension workaround

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15769 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-19

    Commited patch for #3263 with small modifications

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15766 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-19

    translation update: pt_BR by Arthur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15765 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-18

    fix #3757

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15764 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-18

    improve wms error and progress reporting (fixes #1576)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15763 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-18

    revert r15747

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15762 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-18

    fixed crash when zooming out so that raster map extent is smaller than canvas pixel

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15760 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-18

    GRASS region another bug fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15759 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-18

    GRASS region transformation resent on mapset change

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15758 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-18

    GRASS region reprojection fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15757 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-18

    GRASS region reprojection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15756 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-18

    translation update: es by carlos and el_GR by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15755 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-17

    fix #2426: dateline split

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15754 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-17

    Change default setting for layer space in legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15753 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-17

    save timestamp in project file

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15752 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-04-17

    Delete QgisApp on destruction in order to get the destructor called (#3531).

    Let's hope it will not bring any crashes when qgis exits...


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15751 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-17

    legend refresh after data reload

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15750 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-17

    completely reload provider if GRASS source data have changed

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15749 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-17

    postgres provider: fix numeric types with precision

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15748 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-17

    fix #7: GetCapabilities no done twice anymore

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15747 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-17

    fix #3750

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15746 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-17

    disable Build Pyramids button if no pyramids levels selected. Also reset progressbar state after building pyramids


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15745 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-17

    Fix missing return statement. Thanks, jef

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15744 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-17

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15743 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-17

    higher tolerance for segment snap

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15742 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-17

    Changed tolerance to make topological editing more reliable (related to ticket #2921)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15741 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-17

    fix eVis Event Browser and ID tool


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15740 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-17

    extend default field width in fTools Export/Add Geometry column to fix #3500


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15739 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-04-17

    Show an icon for open attribute table action in legend


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15738 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-16

    translation update: pt_BR by Arthur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15737 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-16

    Improve raster performance if no clip and stretch is used on multi band color layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15736 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-16

    raster layer update - first step

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15735 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-16

    update epsg:42180 proj string (compatibility version of epsg:2180)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15734 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-16

    The current CRS not highlighted in the projection selector when called from the layer context menu

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15732 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-16

    test if crs are equal

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15731 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-16

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15730 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-04-16

    fix #3712

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15729 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-16

    fix #3439

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15728 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-16

    more robust fix for #2762 as suggested by Martin


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15727 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-16

    fix #3745

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15726 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-16

    fix wms(-c) usablility issue:
    switch to tileset tab automatically when tilesets are found.
    Some WMS-C server act like WMS servers although they actually
    aren't.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15725 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-16

    Raster reprojection in QGIS server

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15724 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-16

    new vector dialog: fix resize and prepopulate with an entry

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15723 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-16

    fix lenny build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15722 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-16

    use layer count from QgsMapLayerRegistry instead of QgsMapCanvas. Fixes #2762


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15721 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-16

    Fix for bug grid annotation distance to map frame (#2899)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15720 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-16

    properly clear list of the invalid lines. Also don't display invalid lines message. Addresses #3741


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15719 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-15

    translation updates: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15718 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-04-15

    fix #2810


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15717 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-04-15

    More pt_PT GUI translation. Thanks Duarte Carreira

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15715 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-15

    enable/disable better stretch histogram action

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15714 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-04-15

    avoid changes of the input layer when layers in canvas changed


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15713 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-04-15

    add cutline option to clipper to fix #3066


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15712 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-15

    keep qgis.g.info process open and get values through stdin/stdout

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15711 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-15

    fix wmc-c support broken in r15559

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15710 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-04-15

    Fix #3715, don't overwrite source file


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15709 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-15

    Added missing pyramid.h

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15708 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-15

    More flexible limit of layer number in qgis server depending on number of layers in project. Fixes bug #3502

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15707 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-15

    fix #3606

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15706 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-15

    greetings from Maxim and Alex at the QGIS Hackfest in Lisbon. Just fixed (again)bug #3519


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15705 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-04-15

    Dutch translation, thanks Carlo van Rijswijk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15704 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-15

    Fix for #3739 - wms transparency not working when set from layer properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15703 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-15

    gdal slow rendering when zoomed in fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15702 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-04-15

    IT GUI translation completed - needs final revision

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15701 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-14

    Fix for bug #3692 (QGIS segfaults after removing table join)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15700 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-14

    dpi fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15699 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-04-13

    fixed #3662 and #3663


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15698 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-04-13

    fall to precise reprojection if thresh wasnt reached

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15697 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-13

    Fix for bug #3685, take2

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15696 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-12

    Use filename for title of WMS top layer if project title empty (ticket #3719)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15695 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-12

    fix #3720

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15694 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-11

    Return error code in zonal statistics if operation canceled by user

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15693 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-11

    Fix label and diagram editing if otf reprojection is enabled (ticket #3685)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15692 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-10

    cleanup and fix attribute widget configuration

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15691 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-09

    fix geometry descriptions list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15690 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-09

    translation update: af by Hendrik and FR Context Help by JRM


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15689 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-04-09

    Symbol props dialog: Locked/unlocked icons instead of just showing locked icon.
    This should allow users easily identify the current state.

    Default icons from Nuvola icon set, gis/newgis icons from Robert.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15688 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-09

    fix #3057

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15687 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-09

    fix restore of initial extent of startup project

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15686 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-04-09

    Place project properties action in File menu correctly (Gnome/Mac)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15685 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-09

    Updated index.html for release

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15684 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-08

    Fix for jumps if moving diagrams and labels with rotation point other than lower left

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15683 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-04-08

    Show actions only if there are no actions? (Catch 22 strikes again!)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15682 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-08

    fix wms source select:
    - allow selection of named layers
    - allow individual selection of all layers of a group to allow layer order management
    - show upcoming layer name unless one is manually given


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15681 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-07

    translation update: fr by JRM and bg by Zahari


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15680 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-07

    translation update: lv by maris and tr by Osman


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15679 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-04-07

    More IT translation, one more GRASS module (thanks Markus Neteler)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15678 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-06

    translation update: pt_BR by Arthur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15677 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-05

    synchronize eVis with latest changes in delimited text provider (fix #3701)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15676 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-04-05

    python console: another fix for pasting


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15675 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-04-05

    Minor fix to a GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15674 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-05

    translation update: af by Hendrik


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15673 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-04-04

    Fix for scaling of rotated svg pattern. Ticket #3700

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15672 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-04

    translation update: introduce new language afrikaans on request


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15671 c8812cc2-4d05-0410-92ff-de0c093fc19c

esseffe 	2011-04-04

    supporting SpatiaLite's 3D Geometries


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15670 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-04

    update debian build dependencies in INSTALL

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15668 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-04-04

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15667 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-03

    translation updates: sl_SI by Joze, es by Carlos, hu by Zoltan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15666 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-03

    add docstring for previous commit


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15665 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-04-03

    make Raster toolbar accessible from Python


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15664 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-04-02

    Shortcuts for easier creation of symbology-ng symbols


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15663 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-04-02

    translation update: es by Carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15662 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-04-01

    IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15661 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-04-01

    IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15660 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-01

    Minor comments cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15659 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-01

    And another place to look for grass and enjoy the true elixr of happiness

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15658 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-04-01

    Added lib64 to grass search path

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15657 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-04-01

    fix: #3688

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15656 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-31

    Added a little more detail on the final packaging step

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15655 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-31

    Added a little more detail on the final packaging step

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15654 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-31

    setAuthorization for GetFeatureInfo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15653 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-31

    Fix for disappearing small labels in printout

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15652 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-03-31

    tranlsation update nl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15651 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-03-31

    new parts of translation by Raymond Nijssen



    git-svn-id: http://svn.osgeo.org/qgis/trunk@15650 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-31

    zoom to best scale with reprojection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15649 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-31

    more crs debug

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15648 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-03-31

    fix #3689

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15647 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-31

    avoid fragile pointer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15646 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-30

    Use vector layer methods to test queries (instead of provider methods)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15645 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-30

    fix nsis installer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15643 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-30

    nsi updates: commented out reboot which causes nsis to fail for me. Updated quickpackage to set version name to 1.7

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15642 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-30

    Added note about fixing path to flex and bison

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15641 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-30

    Added note about path for flex and bison

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15640 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-29

    translation update: hr_HR by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15638 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-29

    Applied modification from strk to fix label direction, ticket #3643

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15637 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-29

    don't build astyle in source directory

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15636 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-29

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15635 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-28

    ts update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15634 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-28

    add bindings to QgsProjectVersion

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15633 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-28

    translation update: ja by Yoichi
    context_help translations fr by JRM


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15631 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-28

    Dont use my personal username in docs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15628 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-28

    Added a few lines about using git in win build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15627 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-28

    Added a few lines about using git in win build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15626 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-03-28

    handle DESTDIR

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15625 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-28

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15624 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-03-27

    mac install update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15623 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-27

    minor german translation fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15622 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-27

    translation update: is by Thordur
    fr by JRM
    el_GR by Mike
    cs_CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15621 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-27

    Fixed #3681


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15620 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-27

    PyQGIS: added new destination CRS methods, deprecated old ones.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15619 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-27

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15618 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-27

    sync srs.db with current trunk of proj

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15617 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-27

    man, 2 commits - 2 missed files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15616 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-27

    fix enabling of field edit buttons in vector properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15615 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-27

    fix #3682

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15614 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-27

    Avoid duplicate SVG paths


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15613 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-27

    Added header for 1.7 release in index.html

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15612 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-26

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15611 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-26

    fix #3661

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15610 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-26

    ng-symbology dialogs fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15609 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-03-26

    fix empty build type bug

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15608 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-26

    translation update: ru by Artem


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15607 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-25

    Apply patch for #2230 by sunilkcube

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15606 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-25

    Fix simple marker transparency (#3658)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15605 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-25

    Follow up for #3605

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15604 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-25

    Fixed scaling of simple line offset (#3479)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15603 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-25

    Draw a polyline only if it is empty? (Catch 22 strikes back)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15602 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-25

    Default value for limit


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15601 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-25

    translation update: 2 typos in english original..


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15600 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-25

    Remove a legacy tooltip


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15599 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-25

    Fix for zonal statistics: continue if attributes are already there

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15598 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-25

    translation update: es by Carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15597 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-25

    update postgis capabilities detection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15596 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-25

    translation update: .ru by Artem


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15595 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-25

    patch #3263 from mbernasocchi

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15594 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-24

    translation update: hr_HR by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15593 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-03-24

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15592 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-24

    Fix for ticket #3643, direction symbol of label

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15591 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-24

    Removed this as its redundant with patch from Juergen at #3645

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15590 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-24

    Added utility script from Mathieu Pellerin for updating the srs.db from gdal

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15589 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-23

    Fixed a crash (clicking zoom to layer with no active layer)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15588 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-23

    Improvements to splash - reduce capitation levels

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15587 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-23

    fix #3674

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15586 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-23

    Python console: do not run the last line of the pasted code.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15585 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-23

    sync srs.db with PROJ 4.7

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15584 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-03-23

    dutch translation percentage going up ...

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15583 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-23

    Added the default color configuration file for DEM tool


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15582 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-23

    Write projection info to raster calculator output

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15581 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-23

    Update splash for wroclaw

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15580 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-23

    connect solitary help button

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15579 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-23

    translation update: String Freeze - preparing for 1.7 release



    git-svn-id: http://svn.osgeo.org/qgis/trunk@15578 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-23

    fix error when output file is not created

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15577 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-23

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15576 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-23

    fix build error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15575 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-23

    unicode string tr

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15574 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-23

    fix release name

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15573 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-23

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15572 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-23

    typo fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15571 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-22

    take out non working functions in the help file. Will be moved to QgsQueryBuilder help


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15570 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-22

    fix the release name

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15569 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-22

    automatic indentation update (r15302-r15567)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15568 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-22

    Updated 'whats new' for string freeze. Updated version name to Wroclaw.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15567 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-22

    fix #2554:
    - apply heavy modified patch from sunil.
    - introduces QgsFieldValidator including sip bindings
    - add missing sip bindings to QgsAttributeEditor


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15566 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-22

    translation update: ja by yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15564 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-22

    fix related to r15547, manage lines out of the drawing rectangle (empty vectors of points)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15563 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-22

    remove the clipping rectangle closing clipper, to fix #3664


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15562 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-22

    Apply patch #3263 to fix adding of groups to Legend. Provided by Marco Bernasocchi

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15561 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-22

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15560 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-22

    [FEATURE] move option to ignore GetMap and GetFeatureInfo URI from WMS GetCapabilities to connection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15559 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-22

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15558 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-22

    Server: only show wkt geometry in feature info response if selected by user

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15557 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-22

    fixed bug in gdaltools clipper

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15556 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-21

    trying to avoid strange closing of the tools

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15555 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-21

    translation update: fr by JRM


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15554 c8812cc2-4d05-0410-92ff-de0c093fc19c

ddehaan 	2011-03-21

    Re-enabled toolbar button for SQL Anywhere plugin.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15553 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-21

    fix #3656

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15552 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-21

    fix #3654

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15550 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-21

    translation update: renaming of sr_CS to fit upcoming cyrillic version

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15549 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-21

    translation update: hr_HR by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15548 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-21

    Modify polygon clipping to clip close to the drawing rectangle. Should now solve the clipping for print composer too

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15547 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-20

    fix version strings in german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15546 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-20

    optimize snapping dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15545 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-20

    add translation: new translation Serbia by Goran Ivankivic .. many thanks


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15544 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-20

    translation update: es by Carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15543 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-20

    translation update: cs_CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15542 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-20

    translation update: ru by Artem



    git-svn-id: http://svn.osgeo.org/qgis/trunk@15541 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-19

    fix build error introduced with r15539

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15540 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-19

    fix some warnings and other cleanups

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15539 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-19

    progress signals

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15538 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-19

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15537 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-19

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15536 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-19

    another shift fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15535 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-19

    tmp block size calc fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15534 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-18

    align extent according to src resolution/origin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15533 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-18

    fix #3637


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15532 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-18

    fix nightly build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15531 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-17

    throw away all the tricks and do second resampling, it is quite fast

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15530 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-17

    update field map after zonal statistics

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15529 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-17

    Fix for raster printing, #3622

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15528 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-17

    heck, fix #3620

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15527 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-17

    Add support for unary minus in raster calculator. Fixes ticket 3627

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15526 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-17

    fix nightly build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15525 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-16

    translation update: es by Carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15524 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    fix #3624

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15523 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15522 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    ogr provider: fix redraw after attribute table update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15521 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    fix #3626

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15520 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-03-16

    minor fixes in russian RoadGraph online help


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15519 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    allow multiple extensions in save as (eg. for mapinfo mif/tab)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15518 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-16

    fix #3590

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15517 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15516 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-16

    make field calculator geometry netbook-friendly

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15515 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-16

    better resampling alignment

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15514 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-16

    Fix diagrams

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15513 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-16

    fix related to #3100 and missed in r15474


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15512 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    exclude pal headers from API and install qgsdiagramrendererv2.h

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15511 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-03-16

    fix deprecated warnings: mapCanvas()->mapRenderer()->distanceArea()

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15510 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    fix build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15509 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-16

    fix histogram crash

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15508 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-15

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15507 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-15

    gdal provider: change handling of crs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15506 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-15

    Add some core_exports

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15505 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-15

    fix warnings and windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15504 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-15

    [FEATURE] Add diagram system that uses the same pal instance as labeling-ng

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15503 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-15

    ogr provider: improve detection of CRS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15502 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-15

    improve english roadgraph online help and add german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15501 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-15

    Port polygon clip for symbology-ng from threading branch. Fixes freezes when zooming in

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15500 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-03-15

    Add help system to Road graph plugin. Please check english text.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15499 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-15

    [FEATURE] default to last selection when prompting for CRS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15498 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-15

    added algorithm option to gdaldem


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15497 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-15

    translation update: .ja by Yoichi (best wishes for Japan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15496 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-15

    [FEATURE] added GUI for gdaldem, to fix #3064


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15495 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-15

    translation update: BIG string update to prepare 1.7


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15494 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-15

    translation string fix and german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15493 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-15

    Small change to spatial query text

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15492 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-15

    Updated icons for spatial query plugin from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15491 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix #3582

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15490 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2011-03-14

    Amend previous commit: call method after null-pointer check (sorry).

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15489 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2011-03-14

    Fix VRT wrapping for south-up datasets.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15488 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2011-03-14

    Clean up a few assignments I left abandoned.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15487 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-14

    more gis theme icons from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15486 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-03-14

    added a warning when using 'new symbology' see #2994

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15485 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-14

    Updates for spatial query plugin from Luiz.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15484 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix #3611

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15483 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix #3617

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15482 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2011-03-14

    Fix #3596

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15481 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15480 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix #3616

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15479 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix #3615

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15478 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix #3614

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15477 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-14

    added -cutline option to gdaltools warp tool, to fix #3066


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15476 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-03-14

    fix for #2875 unit list in mapserver export plugin untranslatable

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15475 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-14

    refresh list of layers when layers in TOC change


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15474 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix/reintroduce wms layer transparency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15473 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-14

    fix #3608

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15472 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-14

    allow output size in grid tool to fix #2941


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15471 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-13

    make gdaltools clipper working with the raster provider


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15470 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-13

    added raster creation in rasterize tool, to fix #3545


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15469 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-13

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15467 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-13

    language fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15466 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-13

    fix #3602

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15465 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-13

    Renamed removeAddLayer to removeAddLayerAction

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15464 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-13

    Replaced addAddLayer with insertAddLayerAction

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15463 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-13

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15462 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-13

    [FEATURE] layer menu function
    - deprecated QgisInterface separator methods
    - add addAddLayer/removeAddLayer methods to QgisInterface to
      add entries to the layer menu
    - port plugins to use it


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15461 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-13

    Added zoom 1:1 to zoom bar, icon updates from robert. Disallow hist stretch for wms layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15460 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-13

    make tools working with the raster provider


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15459 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-12

    fix #3591

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15458 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-12

    fix #3585

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15457 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-12

    fix r15455

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15456 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    On discussion with Robert, also use desaturated icons for layer type icons. Updated stop rendering icon with one contributed by Robert.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15455 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-12

    "fix" #3593

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15454 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-12

    apply #3594

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15453 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-12

    fix: center selected item in CRS selection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15452 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-03-12

    fixes problem with output type when using multipart to singleparts tool. Thanks to Luiz Motta for the fix.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15451 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-12

    Fix loading of joined layers with old symbology, #121

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15450 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-12

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15449 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-12

    fix #3590 and crs warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15448 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    [FEATURE] show active crs in status bar. Closes #3590

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15447 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    Use muted icons in status bar (based on article I read on a non distracting ui)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15446 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    Deprecate the use of SRS in favour of CRS in api

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15445 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    Try better default arrangement of icons

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15444 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    Be a little more generous with the space allocated for coordinate and extent display so it doesnt get truncated.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15443 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    Deleted this file - I think it was added by mistake

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15442 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-12

    Added null based transformer rules for qgis 1.6 - 17 projects and other missing ones for older releases.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15441 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-12

    more gis theme icons from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15440 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-11

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15439 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-11

    fix #3595

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15438 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-11

    update old delimited text provider datasources on load

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15437 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-11

    missed two files in r15435

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15436 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-11

    replace our QGISDEPRECATED with Qt's Q_DECL_DEPRECATED

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15435 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-11

    Minor change for raster calculator dialog to get the gdal layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15434 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-11

    Enable/disable raster icons based on context of which layer is active

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15433 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-11

    [FEATURE] Added histogram stretch to full dataset icon to raster toolbar

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15432 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-11

    Fix histogram stretch tool so that it works with multiband colour images too

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15431 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-03-11

    part of dutch translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15430 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-11

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15429 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-03-11

    Updated IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15428 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-11

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15426 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-10

    Don't apply CRS settings to current project after closing options box - it should only be used when a new project is created. - continuation of r15421

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15425 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-10

    [FEATURE] Assign layer CRS to project (legend context menu)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15424 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-10

    alignment better, avoid artifacts

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15423 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-10

    alignment better

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15422 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-10

    Dont apply otf settings to current project after closing options box - it should only be used when a new project is created.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15421 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-10

    fix #3573 and apply #3570

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15420 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-10

    apply #3586

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15419 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-10

    GDALWarpOperation -> GDALRasterIO

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15418 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-10

    translation update:pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15417 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-10

    fix raster reprojection crash on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15416 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-10

    revert to marcos 0 instead of NULL - sorry for commiting that


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15415 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-10

    some more cleanup of dupicate includes


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15414 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-10

    Fix for compilation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15413 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-10

    Removed windowTitle since for some reason it caused crashes on Mac


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15412 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-10

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15411 c8812cc2-4d05-0410-92ff-de0c093fc19c

telwertowski 	2011-03-10

    Use QFileOpenEvent to handle double clicking a file icon in the Mac OS X Finder. This works for both Cocoa and Carbon. Remove Carbon-only OpenDocument code.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15410 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-09

    temporary? ugly fix for not georeferenced images

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15409 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-09

    add QgsCoordinateReferenceSystem::authid() to python bindings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15408 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-09

    translation string fixes and german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15407 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-09

    remove duplicate inclusion of qgslogger.h (probably introduced with r9138)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15406 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-09

    translation update: german


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15405 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-09

    pl translation update by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15404 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-09

    translation update: the next big string update after raster merge and app.ui change


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15403 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-03-09

    Improved v.distance and v.generalize GRASS modules

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15402 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-09

    patch #3354 by John Donovan

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15401 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-03-09

    Updated manpage

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15400 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-09

    translation update: another update for .ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15399 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-09

    translation update: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15398 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-09

    stretch to current extent with reprojection fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15397 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-09

    less debug output

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15396 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-08

    fix #3542

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15395 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-08

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15394 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-08

    fix a few warnings and indentation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15393 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2011-03-08

    merged raster-providers branch r15390

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15392 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-08

    some string fixes and german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15391 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-08

    Fix graduated classifications for joined fields

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15389 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-08

    Saver attribute map handling (no insertion of additional entry if a column does not exist)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15388 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-08

    Fix r15383 on Mac.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15387 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-08

    fix doxygen warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15386 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-03-08

    dummy commit to reflect changes to address #3148: writing output with conflicting field names now handled gracefully by writer (or caught ahead of time by fTools)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15385 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-03-07

    python/plugins/fTools/tools/doJoinAttributes.py
    python/plugins/fTools/tools/frmJoinAttributes.ui
    python/plugins/fTools/tools/doReProject.py
    python/plugins/fTools/tools/frmReProject.ui
    python/plugins/fTools/ftools_help.xsl
    python/plugins/fTools/doAbout.py
    python/plugins/fTools/frmAbout.ui
    python/plugins/fTools/__init__.py
    python/plugins/fTools/CMakeLists.txt
    python/plugins/fTools/fTools.py
    python/plugins/fTools/ftools_help.xml


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15384 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-07

    Moved creation of actions, menus and toolbars to UI file


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15383 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-07

    add online help for r15381

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15382 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-07

    [FEATURE] add $x, $y and $perimeter to field calculator


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15381 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-07

    fix #1308

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15380 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-07

    - use online API documentation, when no local is found
    - remove "set layer CRS" from toolbar


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15378 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-07

    Applied patch from JCTull - show no pen and no fill as second entry in lists for symbology. Thanks. Closes #3557

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15377 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-03-07

    Use Qt color picker to avoid Qt Cocoa crashes (#3497), part 1

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15376 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    txt2tags should have been optional

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15375 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-06

    FEATURE: Select default CRS for new projects. Fixes #363

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15374 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-06

    translation update: preparing for next release


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15372 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-06

    typo fix


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15371 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-03-06

    add option to select shapefile geometry in merge shapes tool


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15370 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-06

    fix r15352

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15365 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-06

    Logger updates:
    - evaluate QGIS_DEBUG environment variable just once
    - QgsDebugMsgLevel macro will evaluate the passed string only when it will really print it.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15364 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-06

    translation update: es by carlos and fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15363 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-06

    Added 'sponsor us' tip

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15362 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    be less restrictive on interpreting CRSes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15361 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-06

    For global crs option show nice user friendly name instead of proj4 string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15360 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    fix r15352

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15359 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-06

    Added tip relating to the use of default on the fly reprojection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15358 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    debian packaging fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15357 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    restore documentation used in about box

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15356 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15355 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    ogr provider: use utf8 also for SQL statements with GDAL 1.8

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15354 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    [FEATURE] allow managing missing layers in a list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15353 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    [FEATURE] allow setting CRS for multiple layers at once

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15352 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-06

    email address update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15351 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15350 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    missed added files in r15348.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15349 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-06

    [FEATURE] documentation improvements
    replace AUTHORS, CONTRIBUTORS, DONORS, SPONSORS and TRANSLATOR with t2t version
    in doc, run txt2tags within the build and install documentation.  Optionally
    build and install api documentation


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15348 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-05

    More robust detection for domain constraint

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15347 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-05

    deprecate QgsMapLayer::srs()

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15346 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-05

    Show more user friendly projection name for qgis default project CRS (relates to #393)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15345 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-05

    Applied patch for #363 from Alex Bruy to enable on the fly projection by default.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15344 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-05

    fix debian/changelog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15343 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-03-05

    fix #3450

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15342 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-05

    revert r15340 as it doesn't solve anything

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15341 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-05

    fix #3362

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15340 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-03-05

    fix #3311

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15339 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-05

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15336 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-05

    Cleanup some about text as suggested by users at the last hackfest

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15335 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-03-05

    fix: road graph not clean GUI when unload

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15334 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-04

    Better wording for the load missing layers dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15333 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-04

    Partial fix for loading projects with missing layers from Sunilraj at KCube. see #3468

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15332 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-04

    Removed ogr converter: 1. its not maintained 2. its mostly duplicated by the layer save as... option.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15331 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-03-04

    Add progress bar.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15330 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-04

    fix #3542

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15329 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-03-04

    Updates to IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15328 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-03

    Added missing python bindings for table joins


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15327 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-03

    Also enable antialiasing with QPixmap in options dialog


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15325 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-03-03

    Rendering to QPixmap supports antialiasing nowadays


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15324 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-03-03

    use Qt font dialog for Qt Cocoa

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15323 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-03-03

    use crs() instead of deprecated srs()

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15322 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-03

    Changed gpl2->gpl3 in readme because of gpl3 parts in the QGIS sources

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15321 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-03-03

    get uniquie values from provider instead of using own function


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15320 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-03-03

    display correct fTools version in About dialog


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15319 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-03

    translation update: sv by emj


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15318 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-03

    fix r15315

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15317 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-03

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15316 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-03

    fix #926

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15315 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-03

    fix deprecation warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15314 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-02

    Removed quick print plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15313 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-02

    unique values from layer also for sqlanywhere

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15312 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-02

    Use layer method for unique values in query builder and old symbology

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15311 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-02

    Add uniqueValues() method for vector layer. Fixes #3528

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15310 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-02

    Use transparent png rather

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15309 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-02

    Center image in tip

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15308 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-02

    Added new images folder for tip images and new tip from Alister Hood which demonstrates how to add a tip with an image. Note the use of alias in the qrc file.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15307 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-02

    implement #3535

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15306 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-03-01

    Fix crash in ticket #3528

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15305 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-03-01

    update version number again

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15304 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-01

    automatic indentation update (r15222-r15302)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15303 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-01

    Applied latest spatialquery_X_full.zip patch from Luiz Motta from #2634. This adds a number of improvements in functionality and usability to the spatial query tool. Muito Obrigado Luiz.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15302 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-01

    Updates from Luiz for spatial query plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15301 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-03-01

    Updates from Luiz for spatial query plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15300 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-03-01

    fix help viewer on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15299 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-03-01

    translation update: fr by Jean Roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15298 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15297 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    missed a file in r15294

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15296 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    debian packaging: qgis_help moved to libexec

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15295 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    move qgis_help to libexec

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15294 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    cleanup: remove QgsApplication::msexportAppPath() and app/qgshelpviewer*

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15293 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-02-28

    removes symbology which may cause problems with new/old symbology

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15292 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-02-28

    Increases QGIS minimum version, and increases fTools version

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15291 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-02-28

    [FEATURE] Adds 'Lines to polygons' tool to fTools. Thanks to Piotr Pociask for the patch.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15290 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-02-28

    adds marker at location of geometry errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15289 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-28

    Minor re-wording for ease of reading

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15288 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    fix #3534

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15287 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15286 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    db source select: move 'add' back to the first position in the button box

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15285 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    postgres provider: use set application_name (fixes r15280) and verify that pg_is_in_recovery() is false

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15284 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-28

    database source select: 'move build query' to button box

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15283 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-02-28

    update labels in roadgraphplugin settings dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15282 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    allow switching between geometry and all tables in the selection dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15281 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    postgres support: include application_name in connections

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15280 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    FindQGIS.cmake cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15278 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15277 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    translation string fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15276 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    fix runtime warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15275 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    ogr provider: add support for ignoring fields (adapted from threading branch)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15274 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    fix csv save as support

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15273 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-27

    context help update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15270 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-27

    Added a couple more tips

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15266 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-02-25

    manage connections dialog cleanup and usability improvement. Also add support for service parameter in PostgreSQL connection introduced in r15258


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15264 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-25

    More translation of the IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15263 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-02-25

    remove unnecessary return statement


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15262 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-02-25

    roadgraph GUI update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15261 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-24

    Higher limit for number of layers in WMS project, use hash instead of map in layer cache

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15260 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-24

    Set the use of symbology ng and anti aliasing to default for qgis 1.7

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15259 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-24

    implement #3522

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15258 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-24

    ouch - missed the real change in r15255

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15257 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-02-24

    save default bands combination and stadard deviation. Also use this values when loading new raster layer (fix #3519)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15256 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-24

    skip rendering while size is still 1x1

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15255 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-02-23

    fix canvas refresh to avoid crashes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15254 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-02-23

    dutch translations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15253 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-23

    fix warning and enable pedantic mode by default

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15252 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-23

    Removed message box left in by mistake while testing user defined plugin dirs.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15251 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-23

    [FEATURE] Added option to load c++ plugins from user specified directories. Requires application restart to activate.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15250 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-23

    fix canvas refresh

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15249 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-23

    Added find rule for QGIS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15248 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-22

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15247 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-22

    deprecated special handling of EPSG - just one authority

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15246 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-22

    translation string fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15245 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-22

    Some cleanups and additions to Andreas' tips

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15244 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-22

    Added another tip by Andreas Neumann

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15243 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-22

    Fix layer space if layer title element is removed

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15242 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-22

    add note about debug libraries to msvc INSTALL section

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15241 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-22

    Added some more great tips from Andreas Neumann

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15240 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-02-22

    add topology tolerance

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15239 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-21

    fix #3137

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15238 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-02-21

    Prompt whether to overwrite a symbol. Contributed by Alex Bruy (#3405)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15237 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-02-21

    [FEATURE] Export and import of styles (symbology-ng). Contributed by Alex Bruy (#3425)

    (finally we have an easy way for sharing of symbols and color ramps!)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15236 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-21

    Move reading/writing of label style to qgsvectorlayer. Change argument in readCustomProperties to const. Fixes problem with mixed label settings between qgis server projects

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15235 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-02-21

    Refactored the tips dialog to use a single QTextBrowser to display
    content.
    This makes better use of the available space and cleans up the dialog a
    bit.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15234 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-21

    fix #2996

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15233 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-02-21

    pre topology tolerance changeset

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15232 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-20

    update update-indent.sh

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15229 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-20

    fix typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15228 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-20

    automatic indentation update (r14435-r15226)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15227 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-20

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15226 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-20

    apply (slightly modified) #3512

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15225 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-20

    set plugin name and parent of c++ plugins - to allow other plugins to connect via mainWindow().findChild()

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15224 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-02-20

    fix #1904


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15223 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-02-20

    Implemented renaming of symbols and color ramps. Fixes #3509


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15222 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-02-20

    [FEATURE] zoom to group of layers. Contributed by Alex Bruy - thanks! (#2783)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15220 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-02-20

    Fix #3510


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15219 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-02-20

    [FEATURE] Labels for rules in rule-based renderers and some other goodies.
    Applied patch #3222 from Mayeul Kauffmann with various modifications.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15217 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-19

    apply #3506

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15215 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-02-19

    Merged the source select UIs for both PG and SL to allow to use a subset query loading a SL layer


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15214 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-19

    fix msvc fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15213 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-19

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15212 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-19

    r15197 worked with SIP 4.12.1 on OSGeo4W
    r15205 breaks SIP 4.12.1 again, but apparently works on SIP 4.12.0 on OSX
    This hopefully works with both.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15211 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-19

    fix internal use of deprecated methods and fix related warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15210 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-19

    add 'deprecated' annotation to SIP bindings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15209 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-19

    deprecate QgsMapCanvas::pixmap() following QgsMapCanvasMap::pixmap()

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15208 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-19

    Added Municipia to sponsors list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15207 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-19

    Updated icon from local histogram stretch from Robert (thanks Robert)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15206 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-02-19

    Fix failure when compiling on OS X with Sip version 4.12.
    sipClass_QVariant was undefined so it appears it is still
    required to be defined at Sip 4.12. This has not been tested on
    other platforms with this Sip version so may not be a final fix.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15205 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-02-19

    Fixed composer icon sizes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15204 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-02-18

    "in"/"not in" is a predicate (#3503)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15203 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-02-18

    fix typo in tip (replace openModeller with Quantum GIS)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15202 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-18

    missed a gcc warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15201 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-18

    fix sip macro change from r15197

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15200 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-18

    [FEATURE] Not sure how we coped without this till now...we now have a tip presented at startup. You can en/disable tips in the options panel. To contribute more tips, please add them to src/app/qgstipfactory.cpp

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15199 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-18

    [FEATURE] Not sure how we coped without this till now...we now have a tip presented at startup. You can en/disable tips in the options panel. To contribute more tips, please add them to src/app/qgstipfactory.cpp

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15198 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-18

    add QGISDEPRECATED macro and fix a bunch of warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15197 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-18

    fix wms server settings tab title in project properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15196 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-18

    Added dedicated dialog for the sponsors. No longer parse sponsors from sponsors text file, just edit the html in the dialog directly.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15195 c8812cc2-4d05-0410-92ff-de0c093fc19c

dassau 	2011-02-18

    small hint where to find the medals at qgis.org

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15194 c8812cc2-4d05-0410-92ff-de0c093fc19c

dassau 	2011-02-18

    added sponsor medals from 2010 and 2011

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15193 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-18

    Added local histogram stretch icon to the new raster toolbar and wired it up so it works

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15192 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-02-18

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15191 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-18

    Fix but where layer does not refresh when applying local histogram stretch and render caching is enabled. Also update legend pixmap if performing a local stretch

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15190 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-18

    Raster Layer Props tidy up: Used friendlier crs description in general props. Also don't use deprecated maplayer::srs method anymore

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15189 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-18

    Dont use deprecated call to maplayer::srs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15188 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-18

    Minor improvements to IT GUI - thanks to Leonardo Ricci

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15187 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-17

    mapserver: use default message handler for debugging output on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15186 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-17

    doxygen fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15185 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-17

    fix #3499

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15184 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-17

    strip off superfluous parameters from WMS server url (for the common case that GetCapabilities request urls are advertised)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15183 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-17

    record which SSL errors are ok to ignore

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15182 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-17

    Show all layer fields in labeling dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15181 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-17

    Safer handling of layers with unknown geometry

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15180 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-16

    add support to set fields to NULL in field calculator and fix following update of attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15179 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-16

    fix #3945 (following up on r15148)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15178 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-16

    fix #3490

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15177 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-16

    [FEATURE]: possibility to set label distance in map units

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15176 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-15

    apply patch for #3347 from kcube

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15175 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-15

    Fix for other multiple redraws

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15174 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-15

    Fewer redraws if toggeling editing from vector props

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15173 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-13

    Remove some duplicated code

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15169 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-13

    fix API QgsMapLayer::getLayerID() to id()), some warnings and use doxygen deprecation tag.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15168 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-13

    Updated IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15167 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-13

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15166 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-13

    fix #3477 & #3778

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15165 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-13

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15164 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-13

    Improve the description of some GRASS modules

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15163 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-12

    mapserver: semicolon removed from QgsMSDebugMsg macro

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15162 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-12

    mapserver: fix crash when layer cache is to small for project

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15161 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-12

    fix crash

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15160 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-12

    allow setting mapserver service properties in project properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15159 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-12

    add more debugging output to mapserver

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15158 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-12

    Fix multiple redraws when adding join from dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15157 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-11

    fix #2551

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15156 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-11

    [FEATURE]: experimental table join support refactored and ported from branch to trunk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15155 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-02-10

    fix bug where k+1 closest feature are measured in point distance tool

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15153 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-02-10

    allow for more precise grid dimentions in vector grid tool

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15152 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2011-02-10

    quick fix for problem when assigning crs of existing layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15151 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-09

    add support for UTF8 in GDAL/OGR 1.8 (fixes #2551)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15148 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-09

    doxygen fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15147 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-09

    Minor improvements to the IT GUI - thanks to the GFOSS.it community

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15146 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-09

    fix debugging output for Qt<4.5

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15145 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-08

    restore arrow cursor when asking for credentials

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15144 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-08

    revert debian part of r15142

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15143 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-08

    Minor improvement to the IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15142 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-08

    also use 24px as default icon size in options

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15141 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-02-08

    don't close Manage connections dialog after processing selected file.
    Allow user select another file and run save/load operation again


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15140 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-08

    [FEATURE]: rotation for svg fills

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15139 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-08

    Use qIsNaN and qIsInf for QgsRectangle::isFinite

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15138 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-08

    Improvements to spatial select plugin from Luiz Motta (#2634)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15137 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-02-08

    Option for user to set icon size to 16, 24, or 32 px.
    Contributed by madmanwoo (NathanW)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15136 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-02-08

    Applied the patch attached to #3331 to implement gdaltindex. Thanks alexbruy!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15135 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-07

    Fix for ticket #3471

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15131 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-05

    paintEvent isn't a signal

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15130 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-05

    Minor improvements to IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15129 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-04

    optionally use external qwtpolar library

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15128 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-04

    Read composer legend content from project file for WMS print (ignoring the possibility of dynamically added layers for now)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15127 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-02-04

    Revert "Applied patch from #3447. Button group for add layer"

    This reverts commit d1dfeae396b244bcb76076ef9ab80bfc42d05587.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15126 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-02-03

    fixed #3449 making sure the clipping result has the layers order as in TOC


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15125 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-03

    Option to print as raster also via WMS (mainly as a workaround because of some Qt pdf problems

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15124 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-03

    update indentation of roadgraph plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15123 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-02-03

    roadgraph plugin refactoring. Step 1 of 3.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15122 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-02

    Remaining fix for bug #3459

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15121 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-02

    german translation update (followup on r15119)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15120 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-02-02

    Remove JPL WMS server - fixes #3464

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15119 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-01

    INSTALL fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15118 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-02-01

    debian packaging fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15117 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-01

    Handle negative rotation values in composer map grid

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15116 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2011-02-01

    batch of new dutch translations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15115 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-01

    Fix #3459 (uncheck feature count)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15114 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-01

    Fix #3411

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15113 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-02-01

    Set composer grid intervals x/y from WMS getPrint request

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15112 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-31

    Change getPrint syntax to use several parameters for composer maps, e.g. map0:extent=xmin,ymin,xmax,ymax or map0:rotation=45

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15111 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-01-31

    fix: Road graph plugin crash qgis when use spatelite as source layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15110 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-01-31

    fix NULL pointer assigment.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15109 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-30

    fix #3374

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15108 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-29

    fix #3451: don't recheck saved primary key column for views when 'use estimates' is on

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15107 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-29

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15106 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-29

    missed to update the qgis.bat.tmpl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15105 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-29

    update osgeo4w build to use standard GDAL (now 1.8) to build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15104 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-29

    Fix v.sample GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15103 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-28

    mapserver: don't crash when WIDTH or HEIGHT are missing.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15102 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-28

    Fix reprojection problem for polygons too

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15101 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-28

    russian translation update (merged road graph plugin translations)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15100 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-28

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15099 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-28

    some translation string fixes in road graph plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15098 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-28

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15097 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-28

    build with -fno-strict-aliasing on powerpc (see bugs.debian.org/603986)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15096 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-28

    Fix line coordinate transform

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15095 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-01-28

    Applied patch from #3447. Button group for add layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15094 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-01-28

    Separate gui-part and graph construction part. Added message box in shortestpath widget.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15093 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-28

    Better description for button

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15092 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-27

    Minor IT GUI improvements

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15091 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-27

    Use 'fast clip' line clipping algorithm for long lines. Huge improvement for wms benchmark performance (long contour lines)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15090 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-27

    Add a scale parameter for maps in the getPrint request

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15089 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-27

    Use full page for pdf in getPrint request

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15088 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-26

    Prevent rounding error if point is on segment. Fixes bug #2921

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15087 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-26

    Support relative project pathes in wms server

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15086 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-26

    Fix output format for getPrint

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15085 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-01-26

    translation update: fa by mola

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15084 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-01-26

    add RoadGraphPlugin doxyfile. Fix doxygen warnings.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15083 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-26

    Add element to group composer templates in WMS capabilities

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15082 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-25

    gitmarker: fix cmake warning and don't append something w/o local changes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15080 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-25

    skip empty parts of QGIS_PLUGINPATH

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15079 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2011-01-25

    use correct expand option when combobox items translated


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15078 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-25

    Improve GetLegendGraphics output in wms server

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15077 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-25

    fix #3434

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15076 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2011-01-25

    #3420 fix for map canvas rerender not working under python

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15075 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-01-25

    Patch for delimited text, ticket #3414. Submitted by ccrook.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15074 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-25

    don't split QGIS_PLUGINPATH at colon on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15073 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-24

    postgres provider update: use st_ functions only with postgis>=2 and the old one with earlier postgis version

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15072 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-24

    fix windows build, warnings, typos and roadgraph plugin indentation


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15071 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-24

    Different format for embedded wms service metadata

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15070 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-24

    Fix for accessing groups in mapserver

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15069 c8812cc2-4d05-0410-92ff-de0c093fc19c

stopa85 	2011-01-24

    Road-Graph plugin added

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15068 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-24

    [FEATURE]: Optionally specify wms service capabilities in the properties section of the project file (instead of wms_metadata.xml file)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15067 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-22

    show number of local git commits since last svn revision

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15066 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-22

    retrieve svn revision from git log instead of git svn info

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15065 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-21

    WMS print: manual setting for exported label ids, display paper width and height in capabilities

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15064 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2011-01-21

    pl translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15062 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-21

    Wms print: keep not referenced labels with default text

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15061 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-20

    drop special projection path handling on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15059 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-19

    fix NULL support in attribute editor

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15057 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-18

    fix #3424

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15056 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-17

    [FEATURE] feature form updates:
    - make NULL value string representation configurable
    - fix feature updates in feature form from attribute table
    - add support for NULL values in value maps (comboboxes)
    - use layer names instead of ids in drop down list when loading value
      maps from layers.
    - support feature form expression fields: line edits on the form
      which name prefix "expr_" are evaluated.  Their value is interpreted
      as field calculator string and replaced with the calculated value.
    - support search for NULL in attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15054 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-17

    Minor improvements in IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15053 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2011-01-15

    allowing unicode error messages


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15051 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-14

    fix #2884:
    crashed when two map renderers are simultaneously rendering the layers
    for the canvas and overview (eg. on resize, when overview is docked).
    This might fix it.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15050 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-14

    fix warning & typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15049 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-14

    postgres provider: fix enumeration parsing

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15048 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-14

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15047 c8812cc2-4d05-0410-92ff-de0c093fc19c

ddehaan 	2011-01-14

    Fixed typo returning max attribute value in SQLA provider.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15046 c8812cc2-4d05-0410-92ff-de0c093fc19c

ddehaan 	2011-01-14

    Changed SQLA provider to output WKB format 1.1 instead of 1.2.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15045 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-14

    Consistent handling of outputformat in mapserver and better error handling

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15044 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-14

    More minor improvements in IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15043 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-14

    Add scroll area to composer table attribute selection dialog. Fix for bug #3406

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15042 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-14

    Add a label id to distinguish different composer labels. Allow label string replacement in GetPrint request of qgis server and return more verbose error messages

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15041 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-14

    Safer generation of ids for composer map

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15040 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-14

    More minor improvements in IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15039 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-01-13

    translation update: fr by JRM


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15038 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-13

    followup on r15028: more postgis st_ fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15037 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-13

    fix #3401

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15036 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-13

    Fix for restoring selection color from project. Fixes bug #3400

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15034 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-13

    Very minor improvements in it GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15033 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-13

    Minor improvements in it GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15032 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-13

    Remove map items not referenced in the GetPrint request

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15031 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-13

    Fix usage of composer legend in mapserver print

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15030 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-13

    Minor edit of IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15029 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-13

    fix r15023: restore use of geometrytype as it's not deprecated and use
    different geometry type notation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15028 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-12

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15025 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-12

    revert debian/control change

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15024 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-12

    update postgis support to use st_ variants instead of old deprecated
    (and now removed) versions.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15023 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-12

    fix typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15022 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-12

    Typo in IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15021 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-12

    Fix for wms server print. Add composer pictures after the composer maps

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15020 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-12

    Add missing handler in label property dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15019 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-11

    fix #3313

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15018 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-01-11

    translation update: croatian by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@15017 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-11

    Apply only default size (not all other default settings) when adding scalebar to composer view

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15016 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-10

    add 'internal' pyspatialite

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15015 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-10

    fix #3399

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15013 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-01-09

    remove debug message

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15012 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-01-09

    libpq may link libintl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15011 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-09

    Revert symlinks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15007 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-09

    Changed several GRASS icons (thanks Robert Szczepanek), first test with symlinks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15006 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-07

    fix #3246

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15004 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2011-01-06

    fix sql anywhere plugin and debian package

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15003 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-01-06

    forgot to rename link side (r14500)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15002 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-06

    Typo in it GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15001 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2011-01-06

    prefix library name with 'qgis' like other provider support libraries (ie grass); add OSX properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@15000 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-01-05

    Added clearConsole() to Python console. Contributed by Nathan Woodrow - thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14999 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2011-01-05

    Docking of Python console - contributed by Nathan Woodrow - with some improvements.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14998 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-05

    Updated it GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14997 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-01-05

    Revert "Adding docking support to python console"

    This reverts commit f371465e122e525e3e3b10038090bb29be0d0ab7.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14996 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-01-05

    Default the disable_enter_attribute_values_dialog value to false for
    users that have not set this option. This keeps it in sync with the
    checkbox in the options dialog that, by default, is unchecked.
    Previously on a new install the attribute dialog doesn't appear, leaving
    users confused about how to enter attribute information.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14995 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2011-01-05

    Adding docking support to python console

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14994 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2011-01-04

    New db.* GRASS modules icons - Thanks Robert Szczepanek

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14993 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2011-01-04

    Apply patch #3384 by Sergey Yakushev with few modifications. Mark QgsMapRenderer::distanceArea as deprecated

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14992 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2011-01-02

    translation update: fr updates by JRM and Mehdi SEMCHAOUI


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14990 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-31

    catch necessary reboot from OSGeo4W postinstall scripts

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14989 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-31

    fix #3378

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14988 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-31

    Update item positions explicitely in zoom previous / zoom next. Fixes part of bug #3369

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14987 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-31

    translation update: pt_PT by Duarte Carreira


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14986 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-31

    translations update: cz by Jan

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14985 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-12-30

    Fix empty _LIBRARY left from framework check when fw not found

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14984 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-30

    fix #3377

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14983 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-29

    added new persian translator to TRANSLATORS file


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14981 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-29

    translation update: fa by mola


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14980 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-28

    fix #3363

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14979 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-27

    PyQGIS fixes: added few typedefs (IIRC they were not supported by some old SIP versions) and added missing signals in QgsVectorLayer


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14978 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-27

    fixed minor issue refreshing extent


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14977 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-27

    define extent for grid analisys, to fix #3332


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14976 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-27

    translation update: adding persian language on request


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14975 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-24

    Remove obsolete comments

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14974 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-24

    [FEATURE]: initial support for wms printing with GetPrint-Request

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14973 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-24

    Apply patch #3295 to draw SVG composer pictures as vectors, provided by JD

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14972 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-23

    translation update: gr by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14971 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-12-22

    Minor improvements to GRASS messages

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14970 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-12-22

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14964 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-22

    create VRT with recurse scan of dirs, to fix #3095
    some code cleanup,
    updated labels when in batch mode to follow up the QGis HIG guideline


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14963 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-21

    Enhance precision for wfs-t coordinates if srs is in degrees. Fixes bug #3358

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14961 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-12-21

    Revert accidental changes to debian/control

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14959 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-12-21

    Minor improvements to GRASS modules

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14958 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-21

    Fix patch #14951. Read/Write auto update to xml, initialize mAutoUpdate and guard against multiple connections

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14957 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-12-21

    Applied patch from ticket #3240 with some tweaks. Allows unprojected measurement of distances

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14956 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-12-21

    Updated IT GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14955 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-21

    translation update: pt by Alexandre Neto

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14954 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-12-21

    Adds median value to summary when joining layers with numeric data

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14953 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-12-21

    Fix spelling error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14952 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-12-21

    applied patch from NathanW for ticket #3339

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14951 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-12-21

    fix var that needed to be hard coded

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14950 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-12-21

    fix var that needed to be hard coded

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14949 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-20

    Added separate option to BuildVRT tool, to fix #3180


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14939 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-20

    allow multiple values in proximity tool,
    allow multiple no-data values in warp tool,
    fixed error in retrieving srs



    git-svn-id: http://svn.osgeo.org/qgis/trunk@14938 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-20

    Fix #3356


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14937 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-17

    Little fix for more efficient refresh after editing a lot of features (e.g. deleting many features at once)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14936 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-17

    allow vector data provider to record errors (currently only used in query
    builder to report errors in where clauses from OGR and postgres provider).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14935 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-16

    Fixed a crash when refreshing layer symbology - if the currently selected item has been removed (#3326 and #3003)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14934 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-16

    Enabled sorting of classes (#3322)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14933 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-16

    Use case insensitive comparison for column names. Fixes #3298


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14932 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-16

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14931 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-16

    fix #3344

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14930 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-16

    fix #3343

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14929 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-16

    don't overwrite wms error messages

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14928 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-16

    fix crash on quit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14926 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-16

    german translation of sql anywhere online help

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14925 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-16

    debian packaging fix: separate sql anywhere package, fix lenny build (Qt<4.5)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14924 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-15

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14923 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-15

    sql anywhere: fix warnings (and obligatory reindentation (using scripts/prepare-commit.sh)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14922 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-15

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14921 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-15

    include sqlanywhere plugin in debian package

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14920 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-15

    use both schema and table name retrieving oid, to fix #3329
    fixed endian deduction corrupted in r13340


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14919 c8812cc2-4d05-0410-92ff-de0c093fc19c

ddehaan 	2010-12-15

    Contributing a native SQL Anywhere plugin+provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14918 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-15

    added some new translators


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14916 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-15

    translation update: pt by giovanni

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14915 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-14

    Rotate also marker's offset, not just the marker itself (fixes #3334)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14914 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-14

    Better style manager dialog with icons from Robert Szczepanek.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14913 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-14

    translation update: .is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14912 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-14

    PyQIS: subclassing code for QgsDataProvider


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14911 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-14

    Set view box for svg export explicitely (thanks to JD)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14910 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-14

    Notify plugins about composer addition / deletion also when loading a composer template

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14909 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-14

    translation update: pt by giovanni and is by thordur

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14908 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-13

    Write / read strikeout and underline for label-ng. Fixes bug #3323

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14905 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-13

    Handle GEOS exception when parsing WKT


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14904 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-13

    fix #3283

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14903 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-13

    Fixed typo (#3227)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14902 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-13

    Removed code of (unused) postgres geoprocessing plugin


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14901 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-12-13

    fixes bug when specifying number of classes greater than number of features. Fixes #3325

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14900 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-12

    translation update: more .is updates by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14899 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-12

    [FEATURE] Support for icons of plugins in the plugin manager dialog.

    Both C++ and Python plugins now can implement icon() metadata function which returns path to the icon file name.
    The icon file is passed to QPixmap() constructor. For C++ it's preferred to use an icon from the resource file
    (e.g. ":/plugins/foo/foo_icon.png") because plugin's resource file gets loaded automatically when the plugin is loaded.
    Python plugins can use either relative path to the icon ("images/plugin-icon.png") or icon from the resource file
    (starting with a colon). The relative path is preferred, since it doesn't require the plugin to load its resource file
    and plugin repository will not have a trouble to fetch the icon automatically.

    Updated C++ plugins and Python plugins to include icon where applicable.

    Default plugin icon is (c) Anna Shlyapnikova, licensed under Creative Commons (Attribution 3.0 Unported).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14897 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-12

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14895 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-12

    [FEATURE] Font marker: possibility to set X,Y offset. Contributed by Nathan Woodrow - thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14894 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-12

    translation update: pt more strings by alexandre


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14893 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-11

    [FEATURE]: AND and OR operator for raster calculator

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14892 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-11

    translation update: is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14891 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-12-11

    Patch for ticket #3320 to fix delimited text plugin crash

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14890 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-11

    translation update: pt by giovanni


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14889 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-12-11

    Merge branch 'master' of github.com:qgis/qgis

    Conflicts:
README

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14888 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-12-11

    Updated README

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14887 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-10

    translation update: pt by giovanni


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14886 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-10

    translation update: is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14885 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-10

    translation update: pt by giovanni

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14884 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-10

    Remember last raster calc output dir

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14882 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-10

    Enabled add result to project by default

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14881 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-09

    fix typo spotted by macho

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14879 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-09

    Added query builder to rule properties dialog (rule-based renderer). Patch from #3303 - contributed by Nathan Woodrow


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14878 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-09

    Little improvement for label preview (box), better handling of situations where rotation is not possible

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14877 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-09

    Managed the render flag in batch tools to avoid waste of time loading many layers, to fix #3254


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14875 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-08

    translation update: pt_PT by Giovanni


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14874 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-08

    It's a good habit to use initialize a variable before adding to it


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14872 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-08

    Marker line - vertex placement - behave correctly with polygon's rings.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14871 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-08

    Added missing bindings in QgsComposerLegend (#3310)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14870 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-08

    Allow usage of search query builder with no layer, fixed python binding


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14869 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-08

    move QgsSearchQuery builder from app to gui

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14867 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-08

    added tamil language


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14864 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-07

    fix #3245

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14860 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-07

    fix identify result update after attribute change

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14859 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-12-07

    More IT GUI translations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14858 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-06

    use system qt translations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14856 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-06

    [FEATURE] Allow the line symbol layers to be used for outline of polygon (fill) symbols


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14855 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-06

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14854 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-06

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14853 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-06

    translation update: is by thordor


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14852 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-12-06

    fix error in median value calculation


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14851 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-12-06

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14849 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-05

    Use GDALAutoCreateWarpedVRT to handle south-up (or rotated) rasters also for calculator. Fixes bug #3281

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14842 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-05

    translation update: gr by Mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14841 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-04

    [FEATURE] Option to put marker on the central point of a line


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14838 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-04

    Added arrowheads (filled and unfilled) to simple markers


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14837 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-12-04

    [FEATURE] Option to put marker only on first/last vertex of a line (#3279) - contributed by Cedric Moeri - thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14836 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-04

    fix build error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14835 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-12-03

    fix adding features on geometryless tables


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14834 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-03

    Move composer undo buttons to layout menu

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14832 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-03

    Added undo/redo buttons in composer, fix undo problems when deleting grouped items

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14831 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-02

    Read / write labeling-ng to qml files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14830 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-12-02

    Fix poor english on gdal job completion dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14829 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-12-02

    Typos in IT GUI - thanks Rocco for spotting them

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14828 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-02

    Add python bindings for composer command classes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14827 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-12-02

    apply patch #3280 from Jeremy Palmer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14826 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-12-02

    delimited text provider: fix indentation, some warnings and use
    intersection only when requested in select().

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14825 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-12-02

    Applied patch to correct selection issue (ticket #3259)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14824 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-01

    translation update: more .is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14823 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-12-01

    apply patch #2938

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14820 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-12-01

    translation update: .ja by yoichi kayama


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14819 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-12-01

    Only compile offline plugin if spatialite is enabled

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14816 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-30

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14815 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-30

    fix #3274

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14814 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-30

    translation update: .is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14813 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-30

    Use transparent background color for symbol / symbol layer preview


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14811 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-30

    [FEATURE] Added "centroid fill" symbol layer which draws a marker on polygon's centroid.

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA].
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14810 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-30

    Fixed changing of marker color in marker line symbol layer.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14809 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-30

    fix r14798: label tools work independently from current layer. Thanks Marco!

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14803 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-29

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14802 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-29

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14800 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-29

    catch attribute additions and deletions in attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14799 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-29

    activate/deactivate labeling tools

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14798 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-29

    integrate 'Avoid intersections of new polygons' into snapping dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14797 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-29

    [FEATURE]: Undo/Redo support for the print composer. Dummy commit for the docu team as the last commit missed the feature keyword

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14787 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-29

    Initial implementation of composer undo / redo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14786 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-11-29

    Squashed commit of the following:
    Application of patch from ticket #3259 - support WKT field in delimited
    text plugin.
    commit 0dc370a39c7349d85859fac462e91e346bf8fb83
        Modified context help to reflect addition of WKT capability to the
        delimited text plugin.
        Tightened up the delimited text dialog a bit.
    commit 25484867621d6b4760952a8f00a07d253273ecfd
        Added *.wkt to file open filter
    commit 9f16a276b6b2ecbea2eebede50e3275a1df0389b
        Patch for providing wkt support in delimited text plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14781 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-28

    Fixed scaling of line decoration symbol layer.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14780 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-28

    [FEATURE] Allow the marker line symbol layer draw markers on each vertex.

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA].
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14779 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-28

    apply #3258

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14778 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-28

    apply #3232

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14777 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-28

    Fix for composer attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14776 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-27

    fix lenny build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14775 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-26

    fix link error in mapserver with internal spatialite & some warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14774 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-26

    debian packaging: fix natty build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14773 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-26

    add support for ttyACM devices

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14772 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-26

    Uncomment convert code for attribute table item

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14771 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-26

    Added binding files for composer attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14770 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-25

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14769 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-25

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14768 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-25

    Proper conversion to subclasses for composer items.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14766 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-25

    fix form actions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14765 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-25

    debian packaging: switch to internal spatialite

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14764 c8812cc2-4d05-0410-92ff-de0c093fc19c

esseffe 	2010-11-25

    upgrading to SpatiaLite 2.4.0-RC4


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14763 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-25

    Omit flex debug output

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14762 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-25

    Fix for paint event problems in case of multiple composer maps

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14761 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-24

    translation update: the long awaited string update :)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14760 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-24

    translation update: another .is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14759 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-24

    some quick fixes to voronoi and delaunay tools

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14758 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-24

    Removed duplicated entry in GRASS modules list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14757 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-24

    Further improvements to v.in.ogr GRASS modules

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14756 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-24

    also save edit types and actions for geometry-less layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14755 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-23

    fix #3248

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14754 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-23

    translation update: even more .is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14753 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-23

    Added snapping option to GRASS vector import commands

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14752 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-23

    Fix composer item selection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14750 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-23

    allow opening attribute table from plugins

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14749 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-23

    apply #3242

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14748 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-11-23

    Remove developer image as requested

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14747 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-23

    adds option to use selected features only; addresses #2476

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14746 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-22

    add some copywrite info

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14745 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-22

    [FEATURE] Adds voronoi polygon tool to Vector menu, addresses #2825; Also (partially) addresses #2546

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14744 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-22

    Make signal QgsComposerView::selectedItemChanged with non-const pointer to avoid problems with some PyQt versions


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14743 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-22

    fix warnings (gcc 4.5.1, Qt 4.7.1)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14742 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-22

    debian packaging: add support ubuntu natty support

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14741 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-22

    translation update: more .is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14740 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-22

    reduce attribute table debugging noise

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14739 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-22

    fix capabilities detection for postgres >=8.4

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14738 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-22

    Apply fix for ticket #3236, provided by NathanW

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14736 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-22

    small fix: gentoo stores pyqwt in qwt5 dir


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14735 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-21

    Removes extraneous minimum distance option (not currently a real option) from random points tool. Addresses #3213

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14734 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-21

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14733 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-21

    translation update: .is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14732 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-21

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14731 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-21

    nsis installer: remove desktop icon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14730 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-21

    [FEATURE] attribute editing improvements:
    - refactor attribute dialog calls to QgsFeatureAttribute
    - add QgsVectorLayer::featureAdded signal
    - improve interactive attribute editing in table (adding/deleting
      features, attribute update)
    - allow adding of geometryless features
    - fix attribute undo/redo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14729 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-21

    - update .gitignore
    - typo fix
    - fix ui permissions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14728 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-21

    Fixed some soft coded values which should have been hard coded

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14726 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-21

    Added small script to build the package only

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14725 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-20

    fix rubberband in node tool (probably introduced with r14679)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14723 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-20

    Ignore extract dirs and installer exe

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14722 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-20

    Updated packaging notes a little

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14721 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-20

    Add some more directories to the git ignore list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14720 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-20

    creatensis.pl: creating the postinstall/preremove batchs is cheap

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14719 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-19

    build from osgeo4w qgis-full package

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14718 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-19

    update osgeo4w version nsis installer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14717 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-19

    Reinstated this as it got trampled by a copy of coding guidelines in a previous commit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14715 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-19

    [FEATURE]: Add possibility to show number of features in legend classes. Accessible via right click legend menu

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14714 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-19

    use Qt macros also for min/max/abs/fabs - removes OSX cmath kludges

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14713 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-18

    Also write features without geometry in vector filewriter

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14712 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-18

    use Qt for isnan/isinf/abs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14711 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-18

    Fix restoring selection color from project and allow alpha values for selection color

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14710 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-18

    Added git ignore rules for more git zen

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14709 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-18

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14708 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-18

    fix lenny build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14707 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-17

    fix legend handling of collapsed layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14705 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-17

    improve dragging legend layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14704 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-17

    Put label icon on label toolbar. Some cleanups for labelling ui

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14703 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-17

    Use 22x22 icons in label dialog tab bar

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14701 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-17

    Fix bug in rotate label tool (thanks, Juergen)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14700 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-17

    Added CORE_EXPORTs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14699 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-17

    Forgot to add two files in last commit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14698 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-17

    [FEATURE]: move/rotate/change label edit tools to interactively change data defined label properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14697 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-17

    Allow more characters in raster ref names. Fixes r3172

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14696 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-17

    Updated tab bars to use 22x22 icons and updated HIG guideline accordingly

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14695 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-17

    Allow hyphen in raster refercnes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14694 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-16

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14693 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-11-16

    add missed GUI elements in GdalTools settings dialog


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14692 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-16

    add some git support

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14691 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-16

    apply #3220

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14690 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-11-16

    only post-process mapserver if configured

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14689 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-15

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14688 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-15

    fix build errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14687 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-11-15

    add new simplify tool to the fTools. Completed changes introduced in r14678


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14686 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-15

    added usage message into selection GRASS gui


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14683 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-15

    Updated HIG guidelines

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14682 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-15

    Fix broken behaviour in raster props dialog for reset original null value

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14681 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-15

    Stretch columns in transparency list on raster props dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14680 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-15

    fix starting point duplication in rubberband when using addPoint thought the API

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14679 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-15

    commit missing files for new simplify implementation by alexbruy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14678 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-15

    change shortcut for vector menu from V (and e) to t... again

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14677 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-15

    change shortcut for vector menu from V to e (conflict with View)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14676 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-15

    created the Raster menu and moved the "raster calculator" to it


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14675 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Show more user friendly CRS in vector props dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14674 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Remove field type indicators in attribute form

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14673 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Also resize the alias column

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14672 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    moved "oracle raster" plugin to the Database menu


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14671 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-14

    adds option to specify encoding for input tables. addresses #2628

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14670 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-14

    update for splash screen .. hope the ugly frame is gone now


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14669 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Fix broken activation of label dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14668 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Small ui tidy ups

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14667 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Remove stray shortcut indicator

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14666 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Automatically sample on field calculator and gui tidy ups

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14665 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Stretch table column in attribute list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14664 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    shrinked some GUIs,
    used GUI guideline for Browse buttons text


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14663 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-14

    reenabled menu icons - apparently some system default was changed on
    desktop environments

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14662 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    disable the attribute table's "toggle editing" button when the layer is read-only


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14661 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    cleaned the "select region" GUI for GRASS,
    fixed validation of input


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14660 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Added apply button for label dialog for the lazy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14659 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Added icons to labelling tabs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14658 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-14

    revert accidental change

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14657 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-14

    new trunk splash.. Wrozlaw Hackfest nearly over


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14656 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-14

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14655 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-14

    update translation: lv by peteris and added correct name into TRANSLATORS


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14654 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Cleanups for label dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14653 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-14

    show snapping menu entry also when docked

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14652 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    reverted to svn trunk of this file

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14649 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Tidy up table headers in vec props dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14648 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    In progress update of label dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14647 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-14

    translation update: pl by Alicja Włodarz

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14645 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    moved to the new Database menu


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14644 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-14

    change toolbar toolbuttons to menupopups and remember their last selection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14643 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-14

    improve delimited text plugin ui and allow skipping lines

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14642 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    database menu iface


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14641 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-14

    quick typo fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14640 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-14

    patch from alexbruy to make sure check_geometry works with current version of qgis (previous commit required SIP SIP >= 4.9.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14639 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    added Database menu and related methods add/remove plugins


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14638 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-14

    Fix QgsProjectProperties dialog - first cpp patch from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14637 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    gui tweaks for project properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14635 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-11-14

    Add warning when no output file selected in the Merge tool in fTools. Fix #3210


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14634 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Use nicer terms for start and end colours

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14633 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-14

    Read wfs layer crs from url, not from the GetFeature output

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14632 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Small tweak to make symbol layers dialog vaguely clearer sort of

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14631 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-14

    refactored the addvector, addraster and selectmapset GUI for the GRASS plugin


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14630 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-14

    Updates for raster props dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14629 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-14

    More icons for GRASS tools

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14627 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-13

    modified the donors page


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14626 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    fix typo - ouch

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14625 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-13

    translation update: pl by Henia Netzel (great thanks to the new contributor)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14624 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    apply #3206

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14623 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-13

    Cleanups for vector layer properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14622 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-13

    adjusted GRASS list GUI


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14621 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-13

    Better default value for the number of classes in graduated symbol renderer (old symbology)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14620 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-13

    Patch from Volker Froehlich. Fixes ticket #2252

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14618 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-13

    Better png arrow and + sign for GRASS


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14617 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-11-13

    option to select separate shapefiles for merging with fTools


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14616 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-13

    Tidy up for the options window to use top tabs as per gui discussion at Wroclaw Hackfest

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14614 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-11-13

    executable_path for pyqt bin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14613 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-11-13

    fix bundling for latest cmake

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14612 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-13

    Better arrow and + for GRASS, and more

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14611 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-13

    Use validator for nodata line edit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14610 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-13

    Remove the word renderer from the vector props dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14609 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-13

    Use add column for consistency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14608 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-13

    Fix grammar on label

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14607 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-13

    [FEATURE] completely new geometry checking tool for fTools. Significantly (big time) faster, more relevant error messages, and now supports zooming to errors. Thanks to jef for the new QgsGeometry.validateGeometry function. Fixes #3169 and #2611.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14606 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-13

    Refresh the style manager only when a change has been done to it.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14604 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-11-13

    add missing configure option;
    fix mac build for release source

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14602 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    add isnan to qgis.h

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14601 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-13

    More tuning to the grass toolbox

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14600 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    [FEATURE] improve attribute handling
    - optionally reuse entered attribute values for next digitized feature
    - allow merging/assigning attribute values to a set of features


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14599 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    missed a file in r14597.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14598 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    add old astyle version, adapt prepare-commit.sh to it and include it in the CODING guide

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14597 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-13

    Improving the appearance of GRASS toolbox - take 3: first new icons from Robert Szczepanek

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14596 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-13

    Improving the appearance of GRASS toolbox - take 2


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14594 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-13

    Followup of r14591 - some icons done

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14593 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-13

    Added several GRASS modules - thanks Maciej Sieczka. Icons still missing, TBD

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14591 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-13

    Improving the appearance of GRASS toolbox - take 1

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14585 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    apply #1468

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14582 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-13

    Plugin installer - fix typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14581 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-13

    apply #2999

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14580 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-12

    Plugin Installer update. New features: Upgrade All button, plugin count in the window title and Horst's repository

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14577 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-12

    Updates from Wroclaw hackfest to let the vector properties dialog fit on a small screen

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14572 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-12

    Handle non-ascii characters in traceback when showing an exception


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14571 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-12

    Minor updates to the IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14565 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-12

    [FEATURE] allow OGR save as without attributes (for eg. DGN/DXF)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14562 c8812cc2-4d05-0410-92ff-de0c093fc19c

mwalker 	2010-11-12

    Offline editing plugin: add option to filter editable remote layers using capabilities


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14560 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-12

    fix 8bit character in qgis_help

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14558 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-12

    Continue field calculation upon error only for division through zero

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14557 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-12

    Hello from Wroclaw QGIS Hackfest November 2010! Tidy up for vector symbology dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14556 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-12

    save last used selection tool

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14555 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-12

    Catch nans and infs in clipper. Fixes #3081

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14554 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-12

    Fix a crash in Symbol properties dialog when removed a layer. (#2995)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14553 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-12

    compile debian and osgeo4w package with mapserver (default changed)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14552 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-12

    Turn off compilation of map server by default (so that fastcgi is not required by default)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14551 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-12

    Minor improvement to a GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14550 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-12

    Add option to turn on / off printing of canvas item in composer map (ticket #2734)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14549 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-12

    Added QgsSpatialIndex to QGIS API (#3198).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14548 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-11-11

    no OUTLINECOLOR if outlinestyle is None (thanks Michele De Santis)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14547 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-11

    Improvements to the GRASS toolbox - take 1 from the hackfest

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14546 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-11

    fix Python error when unloading the OSM plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14545 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-11

    Allow users to open the local gdal documentation by clicking on the Help button, to fix #3040


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14544 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-11

    Show something different for trunk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14543 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-11

    Part 2 of first HF commit (previously gui cleaning, now translation update) - patches from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14542 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-11

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14541 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-10

    fix debian version

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14540 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-09

    Improve geometry type detection for wfs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14539 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-09

    translation update: .ja by Yoichi and some context files in .es by Carlos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14538 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-08

    updates to union tool: more checks on GEOS processing; when geometry collection created, take only relevant geometries; should address #3071 (and possibly #3013); also adds ability to run almost all geoprocessing tools on almost all geometry types

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14537 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-11-08

    quick fix for exporting the geometry of 2.5D features, fixes #3149

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14536 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-08

    update version number

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14534 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-08

    [FEATURE] add field calculator functions (implements #3177)
    - add support for functions with 2 or three arguments
    - add function atan2(y,x)
    - add length(string) to determine string length
    - add replace(string,from,to) to do string replaces
    - add substr(string,from,length) to retrieve substrings
    - add (preliminary) online help to field calculator with a listing of operations.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14533 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-08

    reset default page for raster properties dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14532 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-08

    translation update: bg by Zahari

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14530 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-08

    translation update: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14529 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-07

    translation update: last minute update for es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14528 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-07

    Updated it GUI translation - almost complete

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14527 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-07

    more legend refactoring to fix it

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14526 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-07

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14525 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-07

    translation update: pt_BR by Arthur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14524 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-06

    fix legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14523 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-06

    fix georeferencer plugin gis style icon - patch from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14522 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-06

    Translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14521 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-06

    translation update: zh_TW by yao


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14520 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-06

    translation update: Slovenian by Joze and Hungarian by Siki Zoltan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14519 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-06

    Moved g.proj.wkt GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14518 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-05

    Better handling of relative / absolute pathes for fill symbol layer. Fixes bug #3154

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14515 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-05

    Small tweaks to docs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14514 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-11-05

    split extent on comma in GdalTools Merge tool, to fix #3092


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14513 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-04

    fix vc warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14508 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-04

    fix #3188

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14507 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-04

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14506 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-04

    translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14505 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-04

    translation update: lv by Maris

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14504 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-04

    Fix consideration of nodata values in raster calculator, code cleanups

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14503 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-04

    translation update: ru by artem

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14502 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-11-04

    support DESTDIR in bundling

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14501 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-03

    also use pixmap cache in old symbology

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14500 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-11-03

    Further improvements in the speed when opening symbol properties dialog (symbology-ng)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14499 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-03

    fix attribute replacement in actions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14498 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-03

    Apply non-string parts of patch #2938

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14497 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-03

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14496 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-02

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14495 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-11-02

    Remove unused QDebug include.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14494 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-11-02

    Addendum to r14491 / ticket #3141 which addresses the root cause of the problem.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14493 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-02

    fix filewriter crash

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14492 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-11-02

    fix georeferencer transformation type dropdown menu (#3141).
    Patch from lynxID - thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14491 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-02

    fix #2903

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14490 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-01

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14489 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-01

    translation update: and the first response hr_HR by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14488 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-11-01

    translation update: string update for all languages to prepare freeze (already frozen?)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14487 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-01

    what's new fix and german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14486 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-11-01

    Fixes and cosmetcs fro GRASS toolbox - Thanks Markus Neteler. Fixes #3104

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14485 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-01

    add missing paren

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14484 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-01

    Apply patch #3178

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14483 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-01

    fix #3176

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14482 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-01

    Updated whatsnew

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14481 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-01

    Removed some stray colons

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14480 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-01

    fix build error on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14479 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-11-01

    fix symbol selection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14478 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-11-01

    Updated whats new for Copiapo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14477 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-11-01

    Reverse alt-key modification to be compatible with the old selection tool

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14476 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-11-01

    some mac cmake cleanup, update mac folder notes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14475 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-11-01

    framework bundling placeholder

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14474 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-01

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14473 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-11-01

    Plugin installer update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14472 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-10-31

    Plugin installer update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14471 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-31

    translation update: uk by sergey, changed name in Translators


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14470 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-31

    osgeo4w update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14469 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-31

    documentation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14468 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-31

    update OS X install

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14467 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-31

    rollback accidentally commit file of r14465

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14466 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-31

    fix r14462

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14465 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-31

    Added reference to algorithm description for ruggedness index

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14464 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-31

    Store svg fill pathes relativ to default svg directory. Fixes bug #3154

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14463 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-31

    add python bindings to QgsGeometry::validateGeometry

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14462 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-30

    fix detection logic, remove unused setting

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14460 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-30

    fix GSL detection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14459 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-30

    Mac cmake update:
    cleaner framework detection;
    optional bundle Qt/PyQt and libraries, and fixup paths

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14458 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-30

    Patch from Mathias Walker: improvement of geometry detection in offline plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14457 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-30

    Plugin manager: set focus to the filter edit box so that it is possible to search immediately after opening the dialog


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14456 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-30

    fix lenny build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14455 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-30

    Fixed #3006 and added a convenience spin box for setting symbol levels (constrained to 0-999)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14454 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-30

    Fix occasionally appearing bug in OSM plugin (#3150, #3076, #3025)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14453 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-30

    Added new project and project read signals to the qgis interface (#3160).
    Contributed by Alexander Bruy - thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14452 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-10-29

    applied patch to make a vector layer read-only, to fix #3157


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14451 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-10-29

    applied the patch suggested in ticket #3151,
    fix in translate to use the GdalTools_utils to get the crs,
    managed invalid extent in merge tool


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14450 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-29

    translation update: improvements and correction on delimited text plugin


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14449 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-29

    fix #1022

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14448 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-29

    layer removal action depends on selected layers and not the current layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14447 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-29

    Fix for bug #3143, apply double values for label sizes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14446 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-29

    fix nightly build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14445 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-28

    Fix bug #3114

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14444 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-28

    Also add rastercalc bison file to svn

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14443 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-28

    [FEATURE]: Add rastercalculator

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14442 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-28

    fix r14440

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14441 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-27

    update install/build documentation & cmake updates:
    - split install document into multiple files
    - reorder chapters
    - update msvc part (shortend add reference to OSGeo4W dependencies)
    - update CMake files to look in $ENV{LIB} and $ENV{INCLUDE}


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14440 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-27

    partly revert r14399 (all except srs updates):
    - proj.4 user paths mask standard directory
    - gsb file warning doesn't make sense for optional grids.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14439 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-27

    translation update: es by Carlos and new context help by Edwin Amado


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14438 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-27

    Catch crs transformation exceptions in gpsmarker

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14437 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-26

    automatic indentation update (r14312-r14435)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14436 c8812cc2-4d05-0410-92ff-de0c093fc19c

esseffe 	2010-10-26

    a) applied the patch suggested in ticket #3139
    b) fixed the SourceSelect dialog so to avoid
       showing RasterLite-1 related tables


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14435 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-25

    Make calls to python api safer by ensuring we have global interpreter lock


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14434 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-25

    fix #3153

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14433 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-25

    Unblocking of signals already done in updateGuiElements() method

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14432 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-23

    fix creatensis.pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14431 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-23

    Add method to convert double precision device coordinates to map coords (important for print composer). Change pallabeling to use FontMetricsF and toMapCoordinatesF. Fixes bug #3065

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14430 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-23

    Bugfix for format list and improvement for output file validation in raster terrain dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14429 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-22

    Correct arrow size for print (#3144)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14428 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-22

    Fix a crash (#3147)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14427 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-22

    sync with r14416, r14421

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14426 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-21

    Fix crash in raster props when histogram tab is last used and props dialog is opened.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14425 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-20

    [FEATURE] Data defined label position in new labeling - from Marco Hugentobler.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14423 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-20

    Added "style manager..." button to symbol selector so that users will find the style manager more easily.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14422 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-20

    [FEATURE] Allow creation of color ramps in color ramp combo box.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14421 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-20

    don't allow dropping layers into legend classes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14420 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-20

    apply #3136

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14418 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-19

    translation updates: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14416 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-19

    fix #2950

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14414 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-19

    translation update: ja by yoichi kayama

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14413 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-19

    fix #3134

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14412 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-19

    german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14411 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-19

    remove files not directly processed by Xcode to make updating project simpler

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14410 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-18

    updated list of Translators


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14409 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    don't show legend checkbox for geometryless layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14408 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-18

    Fix for missing table icons for non spatial layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14407 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-18

    Remember the classification mode in graduated symbol renderer (v2)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14406 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-18

    Applied part of #2832 (show rules in legend).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14404 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14403 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-18

    Added missing python bindings for graduated symbol renderer v2


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14402 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-10-18

    [FEATURE] adds 3 new classification algorithms, including natural breaks (jenks), standard deviations, and a 'pretty' algorithm for generating 'human readable' class breaks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14401 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-18

    Make the unit test more explicitly test result size and use a proper attribute list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14400 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    [FEATURE] allow user specific PROJ.4 search paths and update srs.db to include grid reference (fixes #3099)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14399 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-18

    Applied #2963 (fix crash with quantiles) from Jeremy Palmer. Thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14398 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-18

    translation update: proudly present - new language slovenian by Joze Detecnik


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14397 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-18

    Beginnings of unit test for vector layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14396 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    fix #3132

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14395 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    [FEATURE] add support for nested layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14394 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    disable query change while editing

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14393 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    change list to view in single symbol dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14392 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-18

    improve support for geometry-less layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14391 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-17

    Fix crash and corruption of project file when saving project with non spatial layers. Fix issue preventing projects with non-spatial layers being loaded.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14390 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-17

    Copiapo it the new in thing...

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14389 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-17

    debian packaging: trim dependencies

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14388 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-17

    Fixed bug where histogram disappears when defocussing then focusing histogram tab

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14387 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-16

    fix #3124

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14386 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-16

    find more Mac frameworks; extra default search paths for postgres

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14385 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-16

    misc updates, fixup mapserver build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14384 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-10-16

    Polished GRASS modules tree. Thanks Markus Neteler. Applies #3104

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14383 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-10-16

    Updated DONORS and added some IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14382 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-15

    Show actual pixel values on x axis of raster histogram

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14381 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-14

    ask for postgres credentials on any connection error (not only missing password)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14380 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-14

    use username and password for pg connection test, even if they are not going to be saved

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14379 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-13

    fix gpsd device selection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14378 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-13

    fix #3109

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14377 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-13

    fix #3110

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14376 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-13

    Fixed some typos in docs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14375 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-13

    Fix typo in docs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14374 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-13

    Small fix to doxygen docs for maprenderer class

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14373 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-13

    Added option to generate thumbnail using qimage rather than qpixmap

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14372 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-12

    fix cmake warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14370 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-11

    Field calculator: insert NULL feature value in case of calculation error (instead of stopping and reverting calculation for all features)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14369 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-11

    Fix side effect of last commit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14368 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-11

    [FEATURE]: Sorting for composer attribute table (several columns and ascending / descending)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14367 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-10-11

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14365 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-11

    fix build error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14364 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-10-11

    New GRASS command. Applied patch from #3104 by Markus Neteler, with modifications

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14363 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-10-10

    symbology-ng: Improved loading speed of the symbol properties dialog.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14362 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-08

    [FEATURE]: add capability to show and manipulate composer item with/ height in item position dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14356 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-10-07

    fix typo


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14354 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-07

    Fix for dateline labeling problems

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14352 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-10-07

    sync with r14331, r14335, r14325

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14351 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-06

    fix #3082

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14350 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-06

    revert debian change from 14348.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14349 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-06

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14348 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-06

    fix more warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14347 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-06

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14346 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-06

    fix qgis mapserver on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14345 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-05

    change attribute action notation from [%attr%]/%attr% back to [%attr]/%attr

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14341 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-05

    fix assertion in gps detector

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14340 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-05

    fix com port detection on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14339 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-05

    include offline editing plugin in debian package

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14338 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-05

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14337 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-05

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14336 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-05

    [FEATURE]: offline editing plugin from Mathias Walker

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14335 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-05

    fix qextserial in mingw?

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14333 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-04

    fix #3080

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14332 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-04

    [FEATURE] add gpsd support to live gps tracking

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14331 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-04

    fix cmake warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14330 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-10-04

    Added option to save histogram and also refactored dialog filetype list for saving images into qgisgui

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14328 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-04

    add geoimage austria wms to default servers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14327 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-03

    [FEATURE]: Composer items can also be deleted with the backspace key. Especially usefull for keyboards without delete (frequent e.g. on Macs)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14326 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-03

    fix for #2985 (take III)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14325 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-03

    fix for #2985 (take II)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14324 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-10-03

    fix for #2985

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14323 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-02

    Block spinbox signals in simple fill widget while setting offset. Fixes bug #3073

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14322 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-10-01

    Remember user specified image directories in composerimage widget. Fixes bug #3072

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14321 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-30

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14320 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-30

    doxygen fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14319 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-30

    fix WMS selection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14318 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-30

    QWT now required

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14317 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-30

    missed a comment in r14298

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14316 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-30

    fix build errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14315 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-29

    automatic indentation update (r13658-r14312)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14313 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-29

    api documentation on qgis.org

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14312 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-29

    GRASS 6.4.0 in OSgeo4W

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14311 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-09-29

    Adds three new classification modes to graduated symbol renderer (version 2), including Natural Breaks (Jenks), Standard Deviations, and Pretty Breaks (based on pretty from the R statistical environment)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14308 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-28

    Possibility to set prefix path for mapserver by environment variable

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14303 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-27

    fix max/min values in spatialite provider for non-numeric fields

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14298 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-27

    Zen minimalism for raster graphing page

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14296 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-09-26

    translation update: pl (last-minute commit from a train for a qgis training;)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14288 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-09-26

    sync with r14283;
    misc cleanup;
    default single native arch to match compilation instructions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14287 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-25

    missed a file in r14284

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14286 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-25

    save feature attribute changes from plugins to layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14284 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-25

    allow attribute and alias names in actions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14283 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-25

    also report provider errors when not debugging

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14281 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-24

    Flag geometry as derived attribute in feature info

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14279 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-23

    fix #3036

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14276 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-23

    [FEATURE]: append the feature geometry to the feature info (probably make that optionally in the future with a new request parameter)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14275 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-23

    Use qwt to plot raster rather than my my homegrown charting stuff

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14274 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-09-21

    Typos in IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14270 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-20

    default to geometry postgres tables

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14267 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-20

    fix #3021

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14266 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-20

    Fix typo in last commit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14265 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-20

    [FEATURE]: added reload method to map layers and provider interface. Like this, caching providers (currently WMS and WFS) can synchronize with changes in the datasource

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14264 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    remove Qt translations (fix #2855)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14260 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    apply #2973

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14259 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    fix postgres layer beautification

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14258 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    fix #3011

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14257 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-09-19

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14256 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    more comment fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14254 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    add symbol ASSERTions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14253 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    comment fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14252 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-19

    fix #3022

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14251 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-19

    Consider toplevel group in mapserver

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14250 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-18

    hide symbology on renderless layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14249 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-18

    [FEATURE] allow adding geometryless layers from postgres

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14248 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-18

    [FEATURE] add search string support for feature ids ($id)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14247 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-18

    Implement featureAtId for wfs provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14246 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-18

    Added two 0 pointer checks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14245 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-17

    missed a file in r14243

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14244 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-17

    implement #3015

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14243 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-16

    Applied patch from #3005 - allow entry of scale without leading 1:

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14242 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-16

    Applied patch to close #25 - allow case insensitive search of attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14241 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-16

    Added attribution for some map icons

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14240 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-16

    Fixed small typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14239 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-09-16

    updated list of TRANSLATORS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14235 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-15

    Improve update of canvas item in case of size changes. Maybe fixes bug #2929

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14234 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-09-15

    More IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14232 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-15

    Fix for #889 - show selection count in atribute table dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14231 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-09-15

    Update to v.kernel GRASS module - fixes #3009

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14230 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-14

    fix #3001

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14228 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-14

    fix #3000

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14227 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-14

    New splash for 1.6

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14225 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-13

    Improved interaction with extents widget in statusbar so that the text contents of the widget can be copied and pasted

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14222 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-09-11

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14220 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-11

    Fix for memory leak in getFeatureInfo (bug #2990)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14219 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-10

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14218 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-10

    keep layer selection on legend right click

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14217 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-10

    add table icon and fix warnings related to geometryless layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14216 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-09-09

    simple changes for better usability


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14215 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-09-09

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14207 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-09-08

    Soft code start id for user crs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14202 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-05

    Apply patch #2948 from Stefan Ziegler (PDF map for georeferencer)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14192 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-04

    Apply patch #2936 (Units and decimal places of measure tools) from Stefan Ziegler with small modifications

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14191 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-04

    Return NoGeometry type if provider is attribute only

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14190 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-03

    More efficient clipping parameter (same as in threading branch)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14185 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-02

    fix #2978

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14183 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-02

    Fix another memory leak

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14178 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-09-01

    fix memory leak

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14177 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-01

    Fix memory leak

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14173 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-09-01

    Support for non-spatial tables with delimited text provider. Legend shows a table icon for non-spatial layers (also possible with ogr)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14172 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-31

    Fix feature info in mapserver

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14171 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-29

    old cvs cleanup (r14165); context_help updates (r14166, r14168)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14169 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-28

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14168 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-28

    [FEATURE] allow selection and removal of several layers at once

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14167 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-28

    [FEATURE] add support for OGR creation options to and improve error handling of file writer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14166 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-28

    remove .cvsignore files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14165 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-28

    add sip bindings for groupLayerRelationship (fixes #2969)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14164 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-08-27

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14162 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-27

    fix bison warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14158 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-27

    fix debian dependency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14157 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-27

    add ilike, in and not in to search string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14156 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-27

    add lower/upper support to search string (fixes #2970)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14154 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-26

    followup r14150 again

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14152 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-26

    followup r14150

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14151 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-26

    fix for postgis data crossing the dateline

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14150 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-26

    remove old snow python 32/64bit hacks for pyuic (use pyqt 4.7+)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14149 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-26

    sync with r14131

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14148 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-08-25

    fix iconnames


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14147 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-25

    fix kpty on BSD (#2021)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14146 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-24

    add concat button to field calculator

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14138 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-08-23

    Added SJJB icons - see http://www.sjjb.co.uk/mapicons/introduction

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14131 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-08-23

    More useful debug error message when trying to write a vector attribute with an invalid QVariant type. Message displayed now looks like this: Invalid variant type for field lon 1: Expected Type float : Received Value: 20.375

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14130 c8812cc2-4d05-0410-92ff-de0c093fc19c

dassau 	2010-08-23

    updates and fixes from Volker Froehlich

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14128 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-22

    clean up grass build; fix pyqt utility bundling error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14126 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-22

    bundle pyqt utilities

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14125 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-22

    add mapserver (r14110, r14120)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14124 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-22

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14122 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-22

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14121 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-22

    Use install prefix for the mapserver to locate vector provider libs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14120 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-22

    debian packaging fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14119 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-21

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14118 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-21

    include FCGI lib in osgeo4w build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14117 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-21

    Fix problem with parameter map in getrequesthandler

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14116 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-21

    debian packaging fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14115 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-21

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14114 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-21

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14113 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-21

    mapserver indentation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14112 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-21

    Also add cmake file for fcgi

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14111 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-21

    [FEATURE]: Add QGIS mapserver sources to svn repository

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14110 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-18

    make toolbuttons delayed

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14109 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-08-18

    applied patch attached to #2932 to improve build overviews (gdaltools).
    Thanks to Duarte!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14105 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-17

    show selected selection or measure tool in toolbutton

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14102 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-17

    select and measure toolbar flyouts and submenus (followup #2938)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14101 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-17

    fix r14087

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14096 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-16

    improve legacy support for CRS/SRS in wms provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14090 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-16

    fix typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14089 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-16

    fix #790 again

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14088 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-16

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14087 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-16

    sync with r14071

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14086 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2010-08-16

    -Added ability to interactively select pixels from the canvas to populate the transparency table in the raster layer properties dialog
    -Closes ticket #2259
    -Updated the color ramp shader to empty the color cache when a new color ramp is set

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14085 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-14

    fix ubuntu maverick dependency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14084 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-14

    revert rest of r14077 and another update_ts_run

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14083 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-14

    Avoid overwriting of printing page with width/height from composition

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14082 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-14

    fix create_new_ts.sh

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14081 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-14

    german translation update (and r14077 reversion)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14080 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-08-14

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14079 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-08-14

    add python console strings to translations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14078 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-08-13

    added new language pt_PT and the usual string update


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14077 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-13

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14075 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-08-13

    fixed nodata max and min value
    corrected the spinboxes width
    fixed issue using Arc/Info ASCII Grid as output format


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14074 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-12

    add GEOS_INCLUDE_DIR to georeferencer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14073 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-12

    fix linux build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14072 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-12

    add advanced selection tools from Jeremy Palmer. Thanks. (apply #2938)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14071 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-08-12

    Fix off-by-one calculation of element sum (raster stats).

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14069 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-11

    fix r14018 (reenable pal label reprojection)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14068 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-08-11

    Interim splash screen for trunk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14067 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-11

    fix #2933

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14066 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-11

    separate grass plugin package for osgeo4w

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14065 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-11

    apply #1040

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14064 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-11

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14063 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-11

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14062 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-08-11

    Fixed setCacheImage() python binding.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14053 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-08-10

    Tweak to debugging plugins url from Volker

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14051 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-10

    french translation update from Jean Roc

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14049 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-08-10

    Make sure not to delete the shader function if it is the same.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14046 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-10

    update german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14045 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-10

    fix some typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14044 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-10

    fix #2934

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14043 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-08-10

    Fix typo in raster enum for MultiBandsingleBandGray and kept old enum with identical value for backwards compatibility

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14042 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-09

    add support for non-numeric fields in generic minimumValue/maximumValue fallback method

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14034 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2010-08-09

    -Fix for bugs introduced by patch attached to ticket #1683
    -Closes ticket #2885

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14033 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2010-08-09

    -Added check to make sure preferred bands combinations are valid
    -Closes ticket #1852

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14032 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2010-08-09

    -Added a new option to the legend menu that will stretch the current layer using the min and max pixel values of the current extent
    -Added a convenience function QgsRasterLayer::setMinimumMaximumUsingLastExtent that will set the min max of the current band or bands being displayed using the pixel values from the last extent

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14031 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-08

    fix build with Qt 4.4

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14030 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-08

    Avoid filtering of https requests in wfs provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14029 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-08-07

    Added convenience constructor for color ramp shader


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14023 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-08-07

    Raster shader fixes:
    - memory leaks when changing shader functions
    - PyQGIS: subclassing of raster shader function instances
    - PyQGIS: transfer ownership of the shader function to c++


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14022 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-08-07

    Typo in IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14021 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-08-06

    Applied patch from #2930: improve GdalTools Translate dialog.
    Contributed by Duarte Carreira, thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14020 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-08-06

    aligned to GdalTools v1.2.8

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14019 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-08-06

    new labeling: do not crash on invalid geometries


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14018 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-08-06

    Fixed wrappers from QgsRasterLayer::computeMinimumMaximumFromLastExtent, computeMinimumMaximumEstimates


    git-svn-id: http://svn.osgeo.org/qgis/trunk@14017 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-06

    fix typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14016 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-05

    debian packaging fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14014 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-05

    sync with r14009

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14012 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-04

    add QgsAttributeAction::doAction to python bindings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14010 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-04

    followup r14006: add QgsLongLongValidator

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14009 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-04

    Don't add empty attribute fields to the insert statement in wfs-t (some servers complain about it)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14007 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-04

    Support for long int in attribute dialog and editor. Fixes bug #2928

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14006 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-08-03

    fix compiling error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14004 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-03

    show wms get capabilities error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14003 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-03

    debian packaging update (fixes #2926)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14001 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-03

    fix a bundling bug, missed lib subdir in config header

    git-svn-id: http://svn.osgeo.org/qgis/trunk@14000 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-08-02

    split bundle step to separate target;
    misc cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13999 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-02

    [FEATURE]: data defined font and buffer settings for labeling-ng

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13998 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-08-02

    Use floating point numbers for size and dpi. This is necessary to avoid distortions on devices where painter units are not pixels (e.g. graphics scene in print composer)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13995 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-01

    fix build error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13993 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-08-01

    Indentation cleanups, before jef beats me to it :-)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13992 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-08-01

    Remove debugging output.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13991 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-08-01

    Georeferencer: Normalize coordinates in order to improve numerical conditioning of homography estimation.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13990 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-01

    fix warning, indentation and little cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13989 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-08-01

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13988 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-07-30

    Add support for projective transformations, which can relate
    perspective images of a plane.

    Fits a homography to the GCP using total least squares, which
    minimizes algebraic error.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13987 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-30

    fix #2874

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13986 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-30

    [FEATURE]: WFS-T support (experimental). Additionally ported wfs to network manager (code from Juergen, patch #2892)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13985 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-07-29

    new north arrows (r13978)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13979 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-07-29

    Tidy up north arrows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13978 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-07-28

    Fix #2449: enables numerical sorting and automatic updates of gcp list.

    -Use proxy model to implement dynamic sorting.
    -Remove some legacy code.
    -Employ user role for correct numerical sorting.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13977 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-07-27

    Fixed v.univar GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13972 c8812cc2-4d05-0410-92ff-de0c093fc19c

alexbruy 	2010-07-25

    allow users to enter path to shapefiles manually in Merge shapefiles tool (apply #2897)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13963 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-07-25

    Patch by Luiz Motta: adds the ability to move GCPs in the qgis canvas (partial commit of #2890). Thanks.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13962 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-07-25

    Fix a bug where user was not prompted whether to save or discard modified GCPs.

    Prompt-on-exit did not catch the case were only the source, but not
    the destination coordinates of a GCP were modified.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13961 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-07-25

    Patch by Luiz Motta: re-add georeferenced raster to qgis layers after project reload (partial commit of #2890). Thanks.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13960 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-07-25

    Patch by Luiz Motta: Do not translate gdal compression arguments, fixes #2881. Thanks.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13959 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-24

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13958 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-07-24

    changed wrong key used retrieving from settings the last used image filter, to fix #2901

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13957 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-24

    Apply patch #2891, WFS exception. Thanks to strk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13956 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-07-24

    Added north arrows from Nikos Alexandris


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13955 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-07-23

    removed obsolete &SERVICE=WMS from status-message for mode=map url

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13954 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-07-23

    sync installed headers with cmake lists \(I'll try to stay on top of this in the future\!\)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13952 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-21

    [FEATURE] Added --configpath option that overrides the default path (~/.qgis) for user configuration and forces QSettings to use this directory, too.\
    This allows users to e.g. carry QGIS installation on a flash drive together with all plugins and settings.

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA].
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13951 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-21

    added missing conversions from expression tree nodes to string.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13950 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-07-21

    Updated DONORS list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13949 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-20

    Remove legacy file from interpolation plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13948 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-20

    Use size scale also for line symbols to modify line width.

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA].
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13947 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-20

    [FEATURE] Data-defined rotation and size for categorized and graduated renderer (symbology-ng)

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA].
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13946 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-20

    [FEATURE]: multiline labels for labeling-ng

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13945 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-20

    Add a convenience constructor from QString to QgsSearchString


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13944 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-20

    Better handling of python path and plugins paths.
    Additionally, plugin paths in QGIS_PLUGINPATH can be separated by either semicolon or colon.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13943 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-20

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13942 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-20

    Added "$rownum" token to syntax of expressions. In field calculator it can be used for counting rows. The counter starts from 1. Outside field calculator it returns always zero.

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA].
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13941 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-20

    Support string concatenation using the standard sql concatenation operator ||

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA].
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13940 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-19

    Fix bug #2772 (dropping gpx files onto qgis didn't open the file
    correctly).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13939 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-19

    Apply patch #2868 (adds label alignment) with modifications. Thanks medspx

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13938 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-19

    fix #2894

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13937 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-19

    gui string fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13936 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-19

    Apply patch in ticket #2891 and some more verbose error reporting. Thanks strk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13935 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-18

    Implement suggestion in #2882 (make the Mac build use the configurable
    directory for the lib install directory - rather than the hard-coded
    'lib').


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13930 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-18

    Apply patches in #2863 (configuration changes to make ccmake work with
    less manual configuration).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13928 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-07-17

    version bump (r13926);
    context help update (r13924);
    fix path to user bundle script

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13927 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-17

    update trunk version

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13926 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-17

    context help pl update by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13924 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-17

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13923 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-17

    apply #2730

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13922 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-17

    apply #2791

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13921 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-17

    apply #2858

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13920 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-07-17

    Updated web banner images - version is 1.5 - thanks Milena :-)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13918 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-07-17

    Updated web banner images

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13917 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-14

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13916 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-07-14

    Select by location now works on full layer extent. Fixes #2210.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13915 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-13

    fix OGR converter menu removal

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13914 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-12

    update osgeo4w build to use GDAL 1.7

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13913 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-12

    Fix ticket #2882 (not using QGIS_LIB_SUBDIR to determine pathname to the
    qgis library directory for linux builds)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13912 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-12

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13911 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-11

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13910 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-11

    update german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13909 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-11

    translation update: th by Man


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13908 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-11

    Improvement to fix for 2878

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13907 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-11

    Remember last wfs connection in dialog (ticket #2878)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13906 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-11

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13905 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-11

    Option for raster icon in legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13904 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-09

    fix #2879

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13903 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-08

    Disable raster legend icon for release because of performance problems

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13899 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-08

    translation update: ja by yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13898 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-06

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13895 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-07-06

    fix for #2848: exported style better in line with qgis style

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13894 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-06

    fix #2869

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13893 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-06

    the "are we really in string freeze" commit ;)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13892 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-06

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13891 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-05

    fix #2864

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13890 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-07-05

    Fix crash if raster width is below 1 pixels (ticket #2846)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13889 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-05

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13888 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-04

    Fix for #2820, layer extents use scientific notation for large numbers
    when it would be better to stick with non-scientific notation


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13887 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-04

    Fix for ticket #2228. Also enhanced to offer a couple more conversion
    options between tracks, waypoints, and routes.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13886 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-07-04

    Patch to fix (second problem) #2735. Patch thanks to brushtyler.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13885 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-04

    When qgis is installed in a non-standard place, qgis doesn't find the
    python plugin library. This may help resolve #2618.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13884 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-07-04

    Fix #2862


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13883 c8812cc2-4d05-0410-92ff-de0c093fc19c

gjm 	2010-07-04

    Update my email address


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13882 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-07-02

    fix qgis.g.browser linking

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13880 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-02

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13879 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-07-02

    context help updates (r13848, r13877)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13878 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-02

    fix context help file name

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13877 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-02

    new fix for #2836

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13876 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-02

    revert r13855

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13875 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-07-02

    Last minute fixes for IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13874 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-02

    translation updates: de and ru last minute fixes ;)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13870 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-02

    translation update: ru by artem


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13869 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-01

    translation update: ja by yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13867 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-01

    fix layer creation in ogr converter plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13866 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-07-01

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13865 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-07-01

    workaround for #2853

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13864 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-01

    string freeze update ;)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13863 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-07-01

    translation update: th by man


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13862 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-06-30

    patch to fix additional problem with #2430 thanks to brushtyler

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13861 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-06-30

    fixes #2430 and speeds up random point generation on top of vectors significantly

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13860 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-06-30

    patch from alex to fix #2735

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13859 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-30

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13858 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    apply #2784

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13857 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    apply #2824 from Florian Hof

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13856 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    fix #2836

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13855 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    fix #2844

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13854 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    fix #2852

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13853 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-30

    translation update: fi my marko


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13852 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    fix #2849

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13851 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-30

    Fix initialisation of format combo box (mainly important for kml layers)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13850 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    fix #2674

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13849 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-30

    translation updates: ru by artem, pt_BR (with context help) by arthur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13848 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13847 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-30

    fix for #2833 and #2843

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13846 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-29

    Plugin Installer minor fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13845 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-06-29

    fix for #2847 layers with identical names have problems with data/filter statements

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13844 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-29

    fix python feature form identifier in case of non-ascii layer ids

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13842 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-29

    context help fix: newlines are no blanks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13838 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-28

    translation update: hr by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13837 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-28

    german translation update and a context help fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13836 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-28

    context help typo fixes, german context help additions and german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13835 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13834 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13833 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    Plugin installer update: r13830 follow-up

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13832 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-28

    translation update: catalan by xavi and czech by jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13831 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    Plugin installer fixes: fix error when uninstalling installer itself, support for  repo tag, remove my repository

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13830 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13829 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13828 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13827 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13826 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-28

    add a translation string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13825 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13824 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-28

    translation update: lv by Maris


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13823 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13822 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-28

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13821 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-28

    translation update: CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13820 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-28

    translation update: zh_TW by nungyao


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13819 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-27

    translation update: bg and es by zahari and carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13818 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-27

    fix crash on layerless OGR data sources

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13817 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-27

    translation update: tr by Osman


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13816 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-27

    translation update: small qt_ru changes by Artem


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13815 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-27

    separate libexec subdir (r13792);
    set SVN version dynamically in Info.plist

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13814 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-27

    context help update (r13806)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13813 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-27

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13812 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-26

    translation update: ru by artem


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13811 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-26

    fix r13808

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13810 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-26

    german translation fixed

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13809 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-26

    fix #2819

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13808 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-26

    translatex context help by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13806 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-26

    Clear crs list after parsing a toplevel layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13805 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-26

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13804 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-24

    translation update: ja by yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13803 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-24

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13802 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-06-24

    update_ts file for nl needed for Raymond

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13801 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-06-24

    update nl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13800 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-24

    show identify results in layer display order

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13799 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-24

    Fix for problem with mix of toplevel layers and nested layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13798 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-24

    IT GUI translation finished; this round also thanks to Anne Ghisla

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13797 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-24

    translation update: ja by yoichi and hu by zoltan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13795 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-23

    german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13794 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-23

    debian packaging update (following up r13792)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13793 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-23

    fix #2822

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13792 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-23

    bundle Qt codecs plugins, in case #2419 affects OSX;
    allow configuration for custom Qt installation, should help #2760 which needs a PPC cocoa Qt

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13790 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-23

    initialize pointer to optional settings menu - thanks Bruno Binet for spotting this

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13788 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-23

    fix #2833

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13785 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-23

    More IT GUI translations - Thanks also to Luca Casagrande and Flavio Rigolon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13784 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-22

    translation update: el_GR by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13783 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-22

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13782 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-22

    allow adding features to postgres layers with oid

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13781 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-22

    translation update: string freeze - as usual - bring in important strings for 1.5 - please dont kill me for that ;) (as im away for a week anyway)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13779 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-22

    More IT GUI translations - Thanks to Pasquale Di Donato

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13778 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-22

    fix typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13777 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-22

    More IT GUI translations - Thanks to Luca Casagrande

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13774 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-21

    Better cleanup of resources when unloading plugins


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13773 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-21

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13772 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-21

    fix german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13771 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-21

    Plugin Instaler update: add translateable strings for future switch to the central contributed repository

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13770 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-21

    translation update: german to 100%


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13769 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-21

    More IT GUI translations - Thanks also to Pasquale Di Donato and Anne Ghisla

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13768 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-21

    context_help updates (r13762, r13763)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13767 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-21

    translation update: time for string freeze!!!!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13766 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-21

    Fix layout problems in georef pdf output by making size of left and right margins a user option

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13765 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-21

    Show checkbox for worldfile. Save output rasters in the same dir as the original raster if no path is given

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13764 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-21

    translation update: some context help by carlos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13763 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-21

    translation update: context help ja by Yoichi

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13762 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-20

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13761 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-20

    tranlation update: ja by yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13760 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-20

    more translation string fixes and german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13759 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-20

    context_help updates (r13707);
    rule-based renderer (r13710);
    misc xcode fixes and updates

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13758 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-20

    fix translation string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13757 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-20

    Added copyright notices to CMake modules, BSD license has been set to the modules (typical license for CMake modules).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13756 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-20

    Fixed #2766.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13755 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-20

    Fixed #2346 - allow quoting of column references using double quotes.
    Quoting is done in both search query builder and search from attribute table.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13754 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-06-20

    Updated whats new texts

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13753 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-20

    fix #2826

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13752 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-20

    Report python errors when running python commands from qgis gui (e.g. run actions, feature form init).
    Try to delete feature form only if exists (#2590).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13751 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-19

    fix #2457

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13750 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-18

    Fix typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13749 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-18

    More GUI IT translations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13748 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-18

    Fix for bug #2683

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13747 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-17

    fix #2817

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13746 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-17

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13745 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-17

    fix #2815 - including more missing translation strings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13744 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-17

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13743 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-17

    fix #2775

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13742 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-06-17

    update dutch translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13741 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-17

    apply #2813

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13740 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-17

    Fix for ticket #2814

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13739 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-16

    add dch reference to INSTALL

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13738 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-16

    Fix 0 coords in gps feature capturing (appears sometimes when loosing gps connection)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13737 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-14

    Added annotation icons provided by Robert. Thanks\!

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13736 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-14

    fix unix build after ugly workaround r13732

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13735 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-14

    fix initial sip binding creation on windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13734 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-14

    fix ugly workaround r13732

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13733 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-14

    workaround #2239

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13732 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-14

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13731 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-14

    fix msvc build errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13730 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-06-13

    adds spin box to choose the number of nodes to approximate a circle for the buffer tool

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13729 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-13

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13727 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-13

    translation update: es and fr with some french context help added


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13726 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-13

    applied patch to show GDAL version in about dialog, to fix #2804


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13725 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-13

    fix #2324

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13724 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-13

    round residual plot scale bar to reasonable number

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13723 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-12

    Set maximum to composer picture rotation to 360

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13722 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-12

    fix dirty canvas on startup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13721 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-06-12

    Capitalise first letter of renderer name for consistency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13720 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-12

    Fix bug with georef pdf report scale bar units

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13719 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-12

    gis theme icons for annotation tools from Robert Szczepanek

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13718 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-06-12

    mapserver export plugin always defaulted to epsg:4326 in mapfile because code still used old elementnames (epsg) instead of new (srid) in .qgs files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13717 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-12

    fix #2677: colorful answer from Robert Szczepanek

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13716 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-12

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13715 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-12

    fix lrelease warning and translation string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13714 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-12

    Rule-based renderer: show 1:inf instead of 1:0 when there is no max. scale denominator


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13713 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-12

    Partial fix for #1873

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13712 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-12

    Rule-based renderer: respect the original scale range when refining the rule based on scales.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13711 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-12

    [FEATURE] Added rule-based renderer for symbology-ng.

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana -
    Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA]".
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13710 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-12

    Fixed #3630, edited v.db.what.connect, updated DONORS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13709 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-06-11

    fix for #2726 labels no labels in mapserverexport

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13708 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-11

    translation update and added context help: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13707 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-11

    replaced all QFormLayouts with QGridLayouts


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13703 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-06-11

    dutch translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13702 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-10

    load modules only on menu triggers, skip the local traslator

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13701 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-10

    More decimals in georef pdf report

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13700 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-09

    Show rotation in degrees in georef status bar

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13696 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-08

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13695 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-08

    fix #2592

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13694 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-08

    Fixed unloading of python modules which were imported using "from X import Y,Z".
    Modules Y,Z have been missed by the import wrapper and the unloader did not remove the plugin completely/correctly.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13693 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-08

    Fix for marker size in map units

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13687 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-07

    add __init__.py (r13682)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13686 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-07

    followup r13683

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13685 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-07

    import the modules without use the path


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13684 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-07

    fix template cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13683 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-07

    Removed the unnecessary setted paths


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13682 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-07

    fix #2788

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13681 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-06-07

    Updated DONORS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13680 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-07

    (visibly) complain about missing $DISPLAY

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13679 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-07

    Consider changed pkgDataPath in default svg paths

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13678 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-07

    install symbology-ng headers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13676 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-07

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13674 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-06

    debian packaging update: include templates in clean

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13673 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-06

    translation update: fr by jeanroc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13672 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-06

    integrate GdalTools translations from faunalia repository

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13671 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-06

    translation update: el_GR by Mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13670 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-06

    update_ts_files.sh run after GdalTools integration

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13669 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-06

    make GdalTools about box translatable

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13668 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-06

    translation update: hr_HR by Zoran, fr and ja string update


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13667 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    fix wms legacy CRS/SRS mixup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13666 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    remove second RequestExecutionLevel

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13665 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    add script to build nsis standalone installer from OSGeo4W packages

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13664 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-05

    bundle programs and python stuff from GDAL for use by plugins

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13663 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-05

    OSX install updates

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13662 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-05

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13661 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-05

    Some changes to use qgslegendmodel without a running x-server

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13660 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    automatic indentation update (r12600-r13658)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13659 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-05

    Added code to fix bug #2755 also for Qt<4.6

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13658 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13657 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    fix typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13656 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13655 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13654 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-05

    string fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13653 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-04

    wms provider fix: shift tile requests a bit NE

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13652 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-06-04

    Added over to google projection parameters as per fwarmerdam.blogspot.com/2010/02/world-mapping.html

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13651 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-06-04

    Make version name tethys for the upcoming release

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13650 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-04

    translation update: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13649 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-04

    add gdaltools (r13639)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13648 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-04

    unquote field names in delimited text plugin like in the provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13646 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-04

    manage string in release name

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13644 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-04

    manage string in release name

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13643 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-04

    undoing change committed in r13640. This test become unnecessary from r13641

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13642 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-04

    applied patch to fix #699

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13641 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-04

    fixed #2711: avoid jumping items in legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13640 c8812cc2-4d05-0410-92ff-de0c093fc19c

brushtyler 	2010-06-04

    added GdalTools plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13639 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-03

    translation update: pl by Borys

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13638 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-03

    fix wrong status tip

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13637 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-06-03

    translation update: pl by Robert Szczepanek

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13636 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-03

    Revert accidental commit


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13635 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-06-03

    Added Giuseppe Sucameli to authors list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13634 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-03

    Fix for canvas item order in print composer (ticket #2755)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13633 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-03

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13632 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-03

    Fixed #2744


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13631 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-06-03

    Fixed #2780


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13630 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-06-02

    Updated splash for release

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13629 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-02

    automatically append pdf and svg suffixes (#ticket 2776)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13628 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-02

    fix python runtime error when no HOME is set

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13627 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-02

    show residuals in pixel for non-linear transformations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13626 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-02

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13625 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-02

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13624 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-06-02

    translation update: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13623 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-06-02

    move labelling to core (r13607, r13608)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13622 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-01

    [FEATURE] delimited text provider: allow empty values in numeric columns

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13621 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-01

    osgeo4w update: qgisconfig.py was dropped

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13620 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-01

    change map unit in project dialog when user selects a new crs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13619 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-06-01

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13618 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-01

    Add pallabeling to core header files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13617 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-06-01

    Small enhancements for labeling dialog: disable minimum size ui for points, add pt to font name and set two decimal places for distance spin boxes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13616 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-05-31

    add GDAL compatible CRSes (without +towgs84 parameters) for Polish epsg: 2172-2180, 3120, 3328-3335 and 4179 as epsg+40000

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13615 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-31

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13614 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-31

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13613 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2010-05-31

    dutch translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13612 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-31

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13611 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-31

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13610 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-31

    Fix for previous label commits

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13609 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-31

    Remove legacy files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13608 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-31

    Move Martins labeling-ng from plugin to core/app

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13607 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-31

    [FEATURE] georeferencer: possibility to configure if residuals should be showed in pixels or map units

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13606 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-31

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13605 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-30

    revert r13584 noop

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13604 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-30

    fix #1683

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13603 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-30

    Fix a crash when using map composer within python


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13602 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-30

    [FEATURE] manual adding of categories in symbology-ng. Patch contributed by Lynx, thanks!
    + added missing python bindings and fixed some issues.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13601 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-30

    fix #2763

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13600 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-29

    Applied patch #2739 from Marco - correct scaling of labeling from the labeling plugin in composer.
    Includes few tweaks and improvements, additionally the buffer is not considered for the label frame.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13599 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-29

    Project file transform from 1.4 to 1.5. Improved project loading for composers and annotation items to use the modified dom, not the original file. Fixes ticket #2751

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13598 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-05-29

    fix moc compile rule

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13597 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    ogr provider update: lazy determine extent (fixes #2752)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13596 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    fix #2753

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13595 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    followup r13593: mention oracle in georaster tooltip

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13594 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    fix #2759 and some cleanups

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13593 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    followup r13591: force KML encoding to utf-8 in save as dialog and move filename/encoding validation to vector file write

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13592 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-29

    Use utf-8 if saving to kml to prevent invalid xml

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13591 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    fix #2756

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13590 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    fix #2761

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13589 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    add length() and area() methods to QgsGeometry
    and use it in labeling and zonal statistics


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13588 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-29

    Applied patch #2747 from Marco.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13587 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-29

    fix #2601

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13586 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-29

    Fix for zList sort problem and added call to composer item readXML in composer arrow

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13585 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-28

    postgres provider update:
    - lazy determine extent and invalidate extent on subst string change (fixes #2752 for postgres)
    - use estimate extent when "use estimate metadata" is set (reverts r13499)
    - remove rest of unused threading


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13584 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-28

    fix #2757

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13583 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-28

    apply #1683 (completes r13568)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13582 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-28

    translationi update: CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13581 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-28

    fix typo in english context help and update german context help

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13580 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-28

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13579 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-26

    fix for compile problem

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13578 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-05-26

    Fix initial page of the option stackedWidget - patch from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13577 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-05-26

    more help updates and ui cleanups from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13576 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-05-25

    help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13575 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2010-05-25

    -Fix for ticket #2621
    -Also fixed a bug in the select tool that was causing qgis to crash if no feature was selected.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13574 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-05-25

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13573 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-25

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13572 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-25

    [FEATURE]: Load/save queries created in the query builder. Added method columnRefNodes() in qgssearchtreenode and added some consts

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13571 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-25

    Reenable legend icons for rasters

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13570 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-25

    translation update: el_GR by Mike and Nikos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13569 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-05-25

    UI updates from Milena Nowotarska

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13568 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-05-24

    remove postgres threading (r13557);
    fix missing 'new spatialite layer' function (#2745);
    misc cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13567 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-24

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13566 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-24

    translation update: String update and new German


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13565 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-24

    fix warning in german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13564 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-24

    translation update: bring german to 100% ;)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13563 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-24

    translation update: czech by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13562 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-24

    georeferencer: fix closeEvent handling for dock widget.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13561 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-24

    georeferencer: fix crash which occured when adding GCPs after the widget
    docking has been disabled.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13560 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-24

    georeferencer: Fix crash due to deletion of parent dock in destructor.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13559 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-24

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13558 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-24

    postgres provider: remove unused threading code

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13557 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-24

    es_CA should be ca_ES

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13556 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-23

    added catalan translation file ..


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13555 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-23

    georeferencer: Fix parameter reporting when enabling/disabling GCPs.

    Updates the model before emiting pointEnabled signal, so that downstream
    handlers work with up-to-date transform parameters.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13554 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-23

    Print units of residual as well.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13553 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-23

    Applied patch #2731 by mhugent: show georeferencer residuals in map units when possible.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13552 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-22

    let attribute table follow canvas extent

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13551 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-22

    translation update: mainly grass translations


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13550 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-22

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13549 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-22

    remove progress indication from symbology-ng rendering:
    sometimes featureCount() is expensive and moveover only applies when the canvas
    covers the full layer extent, which is not always the case.



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13548 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-22

    [FEATURE] forward port r9689 to model based attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13547 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-22

    select current value when lineedit gets focus in attribute dialog (fixes #2742)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13546 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-22

    Applied patch #2159 from ctimko

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13545 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-21

    Amend previously ommited docking feature of patch #2673.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13544 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-21

    Fix for crash with composer legend during project file save

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13543 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-20

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13542 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-20

    translation update: es by Carlos and the monthly string update for alle files on request


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13541 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-20

    fix attribute table position restore

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13540 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-20

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13538 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-20

    Fix for crash if removing a layer with a related composer attribute table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13537 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-20

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13536 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-20

    Fix typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13535 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-20

    More IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13534 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-20

    followup r13529

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13533 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-19

    Reenabled update for composer legend layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13532 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-19

    More coherence in IT GUI translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13531 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-19

    translation update: el_GR by nikos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13530 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-19

    lazy fill meta data page in vector layer properties

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13529 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-18

    fix #2732

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13528 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-18

    Fix output folder selection for split vector layers tool. Patch from alexbruy. Fixes #2725.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13527 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-18

    Fix raster item in composer legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13526 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-18

    Fix legend item label problem #2727

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13525 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-18

    postgres provider: lazy feature count

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13524 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-18

    Add transformation name in georef pdf report

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13523 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-18

    small changes in german translation


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13522 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-18

    fix #2361

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13521 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-18

    added new most active translators to the translators list


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13520 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-17

    append space to list widgets in options and vector and raster layer property dialogs (fixes #2554)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13519 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-17

    fix #2531

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13518 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-17

    apply #2712 and #2716 with slight modification.  Thanks to Charles Timko.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13517 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-17

    fix query translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13516 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-17

    Fix calculation of mean error in georeferencer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13515 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-17

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13514 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-17

    translation update: cs_CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13513 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-17

    Automatically append pdf suffix for georef report

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13512 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    fix #2627

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13511 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    [FEATURE] label only selected features (implements #2717)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13510 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-05-16

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13509 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    fix #2670

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13508 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    fix position restore of identify results

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13507 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-16

    Fix merge all functionality in singleparts to multipart ftools function. Fixes #2550.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13506 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    [FEATURE] add multiple features at once (implements #2710)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13505 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-16

    translation update: el_GR by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13504 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-16

    More specific warnings for geoprocessing tools when missing crs are detected. Addresses #2547.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13503 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    update german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13502 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    [FEATURE]
    - save edits button added (implements #2579)
    - subset option to layer menu (implements #2660)
    - show selected feature count in status bar (implements #2708)
    - temporary workaround for #2714
    - refactored redundant code from legend to qgisapp:
      attribute table, save as, layer removal, layer properties
    - some more cleanups



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13501 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    temporary workaround for #2714

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13500 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    postgres provider: fix feature count, when subset string is set

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13499 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-16

    fix ftools typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13498 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-15

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13497 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-15

    translation string fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13496 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-15

    improve image format selecting in wms selection dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13495 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-15

    Move setWindowIcon from qgsapplication.cpp to main.cpp. Because QGIS mapserver uses qgsapplication, but it does not have access to an x-server instance

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13494 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-15

    Fix minimum size of composer legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13493 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-15

    Fix drag drop behaviour of composer legend items

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13492 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-15

    Drag and drop support for composer legend model

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13491 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-15

    translation update: bg by Zahari and cs_CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13490 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-15

    working fix for #2670 and fix for GRASS 6.2 support (as found on debian lenny)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13489 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-15

    fix #2720

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13488 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-05-14

    SIP proxy factory by PyQt version (r13468)
    composer legend item (r13476)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13486 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-14

    More typos and updates in IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13485 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-14

    Fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13484 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-14

    Remove Qt 4.6 dependency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13483 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-13

    New warning when creating empty multipart layer; Ok button disabled on all functions while running; General bug fixes. Fixes #2260, #2057, and #1986. Another great patch from alexbruy :-)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13481 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-13

    Quick typo fix.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13480 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-13

    Some simple bug fixes. Fixes #2695. Patch from alexbruy.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13479 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-13

    now supports fields containing non-ascii chars. Fixes #2496. Patch from alexbruy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13478 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-05-13

    now supports fields containing Cyrillics. Fixes #2566. Patch from alexbruy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13477 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-13

    [FEATURE]: Export legend groups and layers with legendinterface and use this information to display groups in the composer legend. Todo: fix drag and frop in composer legend, readXML, cleanups in composer legend model

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13476 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-13

    next take on #2620 - not reproducable here

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13475 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-13

    make PyQt4 detection work with CMake 2.6.0 as found in Debian lenny

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13473 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-12

    implement #2696

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13472 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-12

    apply #2692. Thanks again Jeremy.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13471 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-12

    fix #2707

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13470 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-12

    fix #2682

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13469 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-11

    tie proxy factory support in SIP bindings to PyQt4 version instead of Qt

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13468 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-11

    [FEATURE] (re-?)add identifyAsHtml to raster layer and use it in identify

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13467 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-11

    Two typos in IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13466 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-10

    implement #2702

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13465 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-10

    update permissions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13463 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-10

    fix ssl preprocessor logic

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13462 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-10

    fix signal signature of QgsNetworkAccessManager::requestAboutToBeCreated

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13461 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-10

    append kml extension automatically for easier interoperability with GE

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13460 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-10

    Consider also files without extensions in the file dialog filters

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13459 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-10

    translation update: cs_CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13458 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-10

    Add gpl headers for residual plot item

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13457 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-05-10

    Changed georef pdf report layout and font sizes to address bug #2698

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13456 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-10

    translation update: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13455 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-10

    translation update: el_GR by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13454 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-09

    emit signals before and after QgsNetworkAccessManager creates requests

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13453 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-09

    missed files in r13438

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13452 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-05-09

    network updates (r13443)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13449 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-09

    handle ssl errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13448 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-09

    resolve Qt 4.5 dependency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13447 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-08

    fix sip bindings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13446 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-08

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13445 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-08

    network manager changes:
    - add QgsNetworkAccessManager to core as singleton
    - add support for multiple proxy factories
    - remove qgisNetworkAccessManager property hack
    - python bindings

    wms provider:
    - use QgsNetworkAccessManager
    - some precision changes



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13443 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-08

    cosmetic changes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13442 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-08

    apply #2634

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13441 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-05-08

    georef residual plots (r13436, r13437)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13440 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-08

    revert debian unrelated part from r13438

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13439 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-08

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13438 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-07

    Add missing files.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13437 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-05-07

    Partial patch #2673 by mhugent:

    -Configurable GCP labeling
    -Ability to generate PDF report of residuals and transform parameters
    -Allow resampling to output file even for linear transforms

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13436 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-07

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13435 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-07

    Added the possibility to use $area, $length when searching in attribute table.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13434 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-07

    Added optional geometry parameter when evaluating predicates


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13433 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-06

    fix url exclusion changes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13432 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-06

    fix #2620

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13431 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-06

    include qgis.g.browser in debian package

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13430 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-06

    make spatialite optional again

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13429 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-06

    Fixed typos in IT transaltion

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13428 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-06

    Fixed r.sunmask.date.time. Thanks Markus Neteler

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13427 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-05

    Translation of the IT GUI - Thanks to Flavio Rigolon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13426 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-05

    Fixed CRS for OSM and GPX providers. Should fix #2661.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13425 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-05

    minor pg provider fix: oid==0 is invalid

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13424 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-05

    Fixed #2615.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13423 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-04

    More portable selection of monospaced font


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13422 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-04

    MarkerLine symbol layer: fixed usage with map units, set minimal interval to avoid infinite loop, simpler markerline symbol handling.

    Developed for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per la Gestione del Territorio e dell' Ambiente [RT-SIGTA]".
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti QuantumGIS e Postgis (CIG 037728516E)"


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13421 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-04

    MarkerLine symbol layer widget: Fixed handling of floating point marker intervals


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13420 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-04

    SimpleMarker symbol layer: do not cache marker symbol if the vector output is enforced, fixed scaling


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13419 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-04

    Do not force vector output by default (use only in composer map), enable setting of the flag


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13418 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-03

    PyQGIS: added missing annotation


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13417 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-05-03

    PyQGIS: Fixed wrappers for symbology-ng renderers (were claimed to be abstract classes)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13416 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-05-03

    german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13415 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-05-03

    Fixed v.generalize, adding copy of attributes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13414 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-05-02

    translation update: CZ from Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13413 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-04-30

    Fix missing actions. Patch #2686 by christophgysin + sip bindings.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13412 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-30

    translation update: fr by Jean Roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13411 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-04-30

    fix edit actions remaining active when switching to a raster layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13410 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-29

    Fixed resizing of font marker when units are map units.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13409 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-29

    [FEATURE] symbology-ng: possibility to offset for simple fill.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13408 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-29

    translation update: fr by Jean Roc and cs_CZ by Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13407 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-28

    fix #2681

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13406 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-27

    translation update: fi from Marko and CZ from Jan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13405 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-27

    fix #2680

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13404 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2010-04-27

    -Removed spaces from connection string for MS Access files that may be cause the connection on windows to fail

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13402 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-27

    fix typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13401 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-26

    bundling: QtWebKit 4.6 needs QtXmlPatterns

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13399 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-26

    fix runtime error in fTools' spatial join

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13398 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-26

    fix relative paths, when project is on unc path

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13397 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-26

    fix sip 4.7 support

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13395 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-26

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13394 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-26

    ignore '&' when ordering the plugin menu

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13393 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-26

    fix crash in spatialite srid selection on creation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13392 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-26

    fix common typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13391 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-25

    Added notes to newly added methods


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13390 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-25

    [FEATURE] Data-defined size and rotation for single symbol renderer in symbology-ng. (ticket #2585)

    Developed by for Faunalia (http://www.faunalia.it) with funding from Regione Toscana - Sistema Informativo per
    la Gestione del Territorio e dell' Ambiente [RT-SIGTA]".
    For the project: "Sviluppo di prodotti software GIS open-source basati sui prodotti
    QuantumGIS e Postgis (CIG 037728516E)



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13389 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-04-25

    Alphabetised contributors list and added Luiz Motta and Diego Moreira (authors of spatial query plugin)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13388 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-25

    translation update: el_GR by Mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13385 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-25

    Applied patch from #2672 by Andres Manz: more legend interface functionality.
    Thanks for contributing.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13383 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-25

    more spatial query cleanup (r13367)
    lupdate fixes (r13370)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13382 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-25

    fix spatialquery combobox resizing issue

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13381 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-25

    some cleanups:
    - macros TRUE/FALSE to keywords true/false
    - replace boolean comparison (x==true => x / x==false => !x)
    - return(x); => return x;


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13380 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-25

    also set feature validity in featureAtId of memory and spatialite provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13379 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-25

    translation fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13378 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-25

    spatial query: cosmetic changes and set svn keywords

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13377 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-25

    set feature validity in QgsPostgresProvider::featureAtIt

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13376 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    postgres provider: fix error handling

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13375 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    postgres provider: improve error handling

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13374 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13373 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    missed python binding to additional GEOS operators

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13372 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    remove Qt 4.5 dependency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13371 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    make update_ts_files.sh less noisy and a bit more failsafe and fix a bunch or lupdate warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13370 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13369 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    integrate spatial query plugin translations

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13368 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    spatial query plugin: port to new QgsGeometry operators, gui cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13367 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    [FEATURE] support more GEOS operators

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13366 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-24

    spatial query cleanup (r13360)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13365 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-04-24

    Added geos to include search path and library linking for geos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13364 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    fix crash introduced in r13360

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13362 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-24

    PyQGIS: added subclassing code for QgsComposerView


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13361 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    spatial query plugin: fix warnings, reindent, include in debian package

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13360 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-24

    implement #2676

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13359 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-24

    spatial selection plugin (r13356)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13358 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-04-23

    Added note about using Qt style includes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13357 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-04-23

    [FEATURE] Applied patch #2634 from Luiz  Motta which provide a new c++ plugin for carrying out spatial selections

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13356 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-23

    fix #2675

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13355 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-23

    Fix point displacement renderer to work with the new selection parameter

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13354 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-23

    Added python wrappers from QgsSymbolLayerV2Utils


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13353 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-23

    Added QgsApplication::iconPath utility function (and removed its declaration from QgsSymbolLayerV2Utils)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13352 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-23

    Added QgsSearchTreeNode::referencedColumns() utility function.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13351 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-23

    Fixed rendering of selection for multipolygons (symbology-ng)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13350 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-04-22

    Checks for long field names and warns when this will be a problem. Patch from Alex.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13348 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-04-22

    fixes copy and pasting of results from several analysis tools. Patch from Alex.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13347 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-22

    Marked updateFeatureCount() in QgsVectorLayer and QgsVectorDataProvider as meaningless functions.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13346 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-22

    Fix calculation of feature count in OGR provider (FeatureCount function works with current spatial filter)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13345 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-22

    Remove canvasPressEvent in cpp and header (forgot to commit the header yesterday)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13344 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-22

    fix windows link error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13343 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-21

    [FEATURE]: center map if user clicks into the map (patch 2278 provided by smizuno)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13342 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-21

    context help update (r13337)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13341 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-20

    apply #2662. Thanks Giuseppe.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13340 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-20

    set attribute dialog parent and save geometry

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13339 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-20

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13338 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-20

    allow creation of multiple layers in spatialite creation dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13337 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-20

    improve database uri quoting (eg. for table names with quotes)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13336 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-20

    save style when closing style manager only if it was modified


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13335 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-20

    added description of native types to memory provider (to allow adding columns in GUI)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13334 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-20

    [FEATURE] gradient color ramps now support multiple stops - for adding intermediate colors


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13333 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-20

    Move setRenderContext() method to mapcanvas item class

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13332 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-20

    Simplified composerView function

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13331 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-20

    Fix typo in last commit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13330 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-20

    Consider frame width for annotation item minimum size

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13329 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-19

    Move code to draw arrow head from composer arrow to composer item

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13328 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-19

    Remove some debug code

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13327 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-19

    Possibility to adapt composer table rect to content size before painting

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13326 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-18

    SVG fill widget: don't require user to "activate" the svg item (by double clicking) - apply new fill when current item is changed


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13325 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-18

    In symbol selector, omit decimals when displaying the transparency %


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13324 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-18

    Fixed simple symbol marker sizes in the symbol layer widget


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13323 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-18

    Applied patch from #2640: improved rendering of selected features (symbology-ng).
    + fixed font marker scaling for printing
    Contributed by Chris Crook. Thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13322 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-16

    fix #2654, take III

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13321 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-04-16

    translation update: pl by Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13320 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-16

    fix wrong link in documentation


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13319 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-16

    refactor composer table (r13316)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13318 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-16

    Add TransferThis to annotation python constructors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13317 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-15

    Refactor composer table to a base class that has vector attribute table and normal text table as subclasses

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13316 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-04-15

    Restore previous version of dissolve function (previous changes should not have been commited yet.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13315 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-04-15

    Much faster centroid computation, and simplified code. Also adds Alexander Bruy as fTools contributor.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13314 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-04-15

    Ensures that field names for output shapefiles remain less than 10 chars. Patch contributed by Alexander Bruy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13313 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-04-15

    Adds validators for numeric input text edits. Patch supplied by Alexander Bruy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13312 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-14

    implement #2650, #2651, #2652

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13311 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-14

    fix #2549

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13310 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-14

    fix #2654

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13309 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-14

    Fix rounding for WMS stripes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13308 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-13

    show message in status bar, when CRS of an added layer is undefined

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13307 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-13

    fix #2647

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13306 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-13

    fix #2639:
    - use asynchronous WMS GetMap requests only when render caching is active
    - also cache WMS GetMap replies


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13305 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-13

    show layer name in title of layer properties dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13304 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-12

    translation update: fr and el_GR by Jean Roc and Mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13303 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-11

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13302 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-11

    remove another Qt 4.5 depencency

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13301 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-11

    remove Qt 4.5 dependency and fix a warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13300 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-11

    Fix for retrival of WFS capabilities

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13299 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-04-11

    Revive thin plate spline transform.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13298 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-04-11

    Disable world-file in command line generator. Remove some code duplication.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13297 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-04-11

    Patch #2633 by mhugent: adds "snap to background" option when taking gcp coordinates from main canvas.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13296 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-04-11

    Fix gcp coordinate sign in generated gdal script.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13295 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-04-11

    Fix for compile failure when buiding without spatialite.
    Changed shortcut key for creating new spatialite layer/database to
    Ctrl+Shift+A (previous value conflicted with existing shortcut)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13294 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-04-10

    Use a little less white space around identify results dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13293 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-10

    Use more accurate tolerances for some geometry modification methods if geom values in degrees

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13292 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-09

    Remember last annotation form for a layer and store it in project

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13291 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-09

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13290 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-08

    re-enable opening projects by drag&drop

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13289 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-08

    fix filters in Save as Image

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13288 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-08

    apply #2376

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13287 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-08

    new spatialite layer features (r13240)
    qwt bundle always, since it depends on PyQt/Qt which is always bundled

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13286 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-08

    r13280 - restore part not dealing with PyQt

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13285 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-08

    revert r13280 - problem is in PyQt compilation, and there is already a note to fix it in that section

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13284 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-08

    Ask user what template to use if default composer templates are found

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13283 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-08

    Show displacement renderer symbols in composer legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13282 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-08

    Added 0 pointer checks to saveAs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13281 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-04-08

    A few changes to the Mac build section from jctull

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13280 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-04-08

    Add the option to include a primary key when creating a new spatialite
    layer.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13279 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-04-07

    apply patch #1743 from jctull

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13278 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-07

    Remove warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13277 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-07

    rest of blanks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13276 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-07

    More blanks translated

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13275 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-07

    Added some spaces to german translations (composer scale bar)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13274 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-07

    Change filter string for DTED raster (patch #1925 provided by kyle)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13273 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-07

    instantiate proxy factory only once

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13272 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    show PostgreSQL and SpatiaLite version in about

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13271 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    missed a directory in r13269

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13270 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13269 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    apply #2385

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13266 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    fix #2631

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13265 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    [FEATURE] legend interface added to retrieve layers in legend order (supplied by Maxim Dubinin)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13264 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-04-06

    Fixed a crash in the plugin that occurs when the epsg code for a web section cannot be parsed

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13263 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-04-06

    Fixed a crash in the plugin that occurs when the epsg code for a layer cannot be parsed

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13262 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    followup r13227

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13261 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    ogr provider: update layer extent after feature deletion and debugging improvements

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13259 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-04-06

    Fix loading of spatialite table after creation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13258 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-06

    fix crash when added features were deleted

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13257 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-05

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13256 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-05

    don't implictly add the same CRS over and over

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13255 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-05

    Fixed compilation with internal spatialite
    (src/core/spatialite/headers/spatialite/spatialite.h was shadowing the wanted src/core/spatialite/headers/spatialite.h)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13254 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-05

    use list instead of buttons for popular/recent projections

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13253 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-05

    add widget support for dials and calendar

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13252 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-05

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13251 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-05

    spatialite improvements:
    - support geometry column name
    - remove unnecessary id field
    - fix windows build
    - better identifier quoting and utf-8 support
    - update python binding
    - fix some translation strings



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13250 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-05

    translation update: hr by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13249 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-04-05

    Create new database immediately on selection of the location. This prevents errors when attempting to lookup an srid before the database exists

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13242 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-04-05

    Added missing header to qgsspatialitesridsdialog.cpp

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13241 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-04-05

    Implementation of the "Add New Spatialite Layer/Database" feature.
    Squashed commit of the following:

    commit e6e01ec0b3955d1cf9cb2756dfcf1aac27a0725e
    Author: Gary Sherman 
    Date:   Sun Apr 4 17:45:05 2010 -0800

        Implementation of the add new spatialite layer dialog with ability to search for epsg srid

    commit c1d46e35715e4f8baa137800c88483f612ebcb89
    Author: Gary Sherman 
    Date:   Sun Apr 4 17:44:23 2010 -0800

        Spatialite database template used when creating a new database

    commit 6d4fd8d80e610d6f0f6d22ed49815134292924c5
    Author: Gary Sherman 
    Date:   Sun Apr 4 17:43:31 2010 -0800

        Context help for the Add New Spatialite Layer dialog

    commit 1a6398be174d62df1bf74428bcf898b8d1ea8455
    Author: Gary Sherman 
    Date:   Sun Apr 4 17:42:51 2010 -0800

        Dialog for finding an SRID from the spatialite spatial_ref_sys table

    commit 197a65c134ed06b12fd6c8d96900dcf8197f802d
    Author: Gary Sherman 
    Date:   Sat Apr 3 11:32:58 2010 -0800

        Renamed the spatialite srids dialog selector to the proper form

    commit 66c7cafa78f71b7f06504fe3b7bd4577614bfe67
    Author: Gary Sherman 
    Date:   Fri Apr 2 22:25:09 2010 -0800

        Implemented create new db. Can now create a new db and an empty layer in
        one pass.

    commit 088730293ad4722e7d6045e8661e6c28488b8cae
    Author: Gary Sherman 
    Date:   Fri Apr 2 20:43:12 2010 -0800

        Adjust new spatialite layer dialog. Add field for geometry column name

    commit d7c60012ddce6a70d0512bc9195524e6d672b372
    Author: Gary Sherman 
    Date:   Fri Apr 2 12:46:49 2010 -0800

        New spatialite layer menu item does not show up if qgis is built with internal spatialite

    commit 1343dfe7ac7868c38e8b7bd17ef1dd5a4a04ebad
    Author: Gary Sherman 
    Date:   Fri Apr 2 11:35:26 2010 -0800

        Test of geometry column creation in the dialog

    commit c8785f4aaee9d5b08fe0c0dd6f6bbfcd9cf6c7a5
    Author: Gary Sherman 
    Date:   Wed Mar 31 21:39:03 2010 -0800

        Added multi geometry types to the radio button group

    commit 06350192b9dfa6d6cc5c6ac9c4d0b1a65f260476
    Author: Gary Sherman 
    Date:   Wed Mar 31 21:13:20 2010 -0800

        SQL for creating the new spatialite table complete---still needs the code to actually push it to the database

    commit 0e05d6ab9904d003d9c7c7704f53392fc478cee1
    Author: Gary Sherman 
    Date:   Wed Mar 31 21:12:25 2010 -0800

        Added field for the layer name to be created

    commit 3c372b4da3097981d824c2dbb7a661c916d9cf7b
    Author: Gary Sherman 
    Date:   Tue Mar 30 21:39:10 2010 -0800

        Removed unneeded fields from the spatialite dialog (width and precision). Added methods for getting the attributes

    commit 1871db18a5d87f22caf9a34001c879eaf7f58342
    Author: Gary Sherman 
    Date:   Fri Mar 19 20:51:34 2010 -0800

        Renamed ui file

    commit a42e578afac13d2a9e984faedc79d0d206b48c66
    Author: Gary Sherman 
    Date:   Fri Mar 19 20:51:00 2010 -0800

        Added dialog for displaying and selecting a spatialite srid

    commit d0c48bc2317d175fa13c4e52fb6d4f0b10a58518
    Author: Gary Sherman 
    Date:   Fri Mar 19 19:41:07 2010 -0800

        More work on the dialog to create a new spatialite layer

    commit cc6d8a4e48e42c865eec9da3d2ad1e900fbbe295
    Author: Gary Sherman 
    Date:   Thu Mar 18 20:51:08 2010 -0800

        Wire the new spatialite layer dialog into qgisapp

    commit c5a54601fd9b76e46aeb534f92a605cd744ae768
    Author: Gary Sherman 
    Date:   Thu Mar 18 20:50:18 2010 -0800

        Dialog implementation for creating a new spatialite layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13240 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-04

    Show composer manager as top window after showing composer instance

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13239 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-04-04

    [FEATURE] support for custom plugin directories using QGIS_PLUGINPATH environment variables.
    More paths can be passed, separated by semicolon. Patch from Chris Crook (#2608), slightly modified.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13236 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-04

    fix #2620

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13235 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-03

    fix #2624

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13234 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-04-03

    translation update: fr by Jean Roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13233 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-03

    Disable remove button in composer manager for default templates to prevent crash

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13232 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-04-03

    Fix lanczos resampling option.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13231 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-04-03

    Patch #2480 by Jack R: quote filenames in gdal scripts.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13230 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-04-03

    Patch #2622 by mhugent, enabling visualization of transform residuals as arrow.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13229 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-03

    [FEATURE]: implement possibility to place a set of default composer templates in pkgDataPath/composer_templates

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13228 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-03

    cleanup and fix #2619

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13227 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-04-01

    remove unused mapserver code (r13216)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13222 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-01

    use other approach to avoid estimate_extents on not analyzed tables

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13221 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-01

    Fix for bug #2617

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13220 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-04-01

    also update changed display field value in identify results

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13218 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-04-01

    Make default svg path configurable for third party apps

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13217 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-31

    remove unused c++ mapserver export (and Qt3 dependency in UI)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13216 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-31

    follow up r13213

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13215 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-31

    dummy change in CMakeLists in fTools to trigger update of list of the files


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13214 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-31

    initialize QString with empty string instead of 0 (Qt 4.7 doesn't like it)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13213 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-31

    consider attribute changes in identify results

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13212 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-31

    Objectname for undo widget

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13211 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-31

    remove more Qt 4.5 dependencies

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13209 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-31

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13208 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-31

    no selection squares in print mode

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13207 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-31

    ftools merge shapes (r13204)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13206 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-30

    Update to select by location tool: should run faster for large layers, and requires less memory. Should also fix #1669

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13205 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-30

    Adds 'merge shapes' tool to fTools (vector tools). Thanks to Alexander Bruy for the patch.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13204 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-29

    use same parameters for EPSG:3857, EPSG:GOOGLE and OSGEO:41001 as PROJ.4

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13200 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-29

    add EPSG:3857 (fixes #2484)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13199 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-29

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13198 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-03-29

    HIG compliance updates for annotation dialogs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13197 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-29

    added some unit tests for search strings


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13196 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-29

    back to unix mode

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13195 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-29

    annotation tools (r13189, r13190)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13194 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-29

    Fix for win build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13193 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-29

    Hide invisible annotations in composer too

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13192 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-29

    Enable annotation items in composer. Remove gui export from classes that have been moved to app

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13191 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-29

    Move annotation items and widgets from gui to app

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13190 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-29

    [FEATURE]: text and form annotation tools are now in gui and app

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13189 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-29

    another translation update es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13188 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-28

    add missing svn:keywords

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13187 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-28

    wms scale slider (r13184)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13186 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-28

    projection search improvements (fixes #2602)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13185 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-28

    [FEATURE] wms-c scale slider and more selection improvements

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13184 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-28

    translation update: es by carlos and fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13183 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-28

    Escape single quotes in quick search in attribute table


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13180 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-28

    Restored quick search behaviour (#2407) - was a side effect when fixing #2007


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13179 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-28

    Initialize distance/area calculator only if we will be doing any calculations
    (saves crs lookups when creating search tree nodes)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13177 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-28

    Fixed a segfault with simplify tool (#2450)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13176 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-27

    Added missing method advancedDigitizeToolBar() in qgis interface.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13175 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-27

    Applied patch from #2582.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13174 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-27

    conditionalize some Qt settings on version

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13173 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-27

    vector layer saving (r13169)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13170 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-27

    [FEATURE] allow saving vector layers as ogr vector files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13169 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-27

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13168 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-26

    fix #2592

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13167 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-26

    fixed several bugs related to creation of offset line in new symbology (including #2545)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13166 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-26

    another postgres feature count fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13165 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-26

    update Mac build for Qt minimum and misc cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13163 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-26

    grass module filename fix (r13156)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13162 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-25

    Remove minimum sizes in marker catalogue (patch from ticket #1912)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13161 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-25

    translation update: ja


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13160 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-25

    disabled Vect_close if map cannot be opened on level2 on win to test ticket 2003

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13159 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-25

    enabled toLocal8Bit for GISDBASE on win

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13158 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-25

    QgsGrass::Exception reverted to std::runtime_error because with QgsException could not be caught

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13157 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-25

    fixed name

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13156 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-25

    fix #2588

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13155 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-24

    Code for drawing items in composer map. Not yet enabled

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13154 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-23

    fixes issue with identical input CRSs, now asks if users wants to proceed anyway

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13152 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-23

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13151 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-23

    use SE corner as WMS-C origin, wms metadata display & selection cosmetics

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13150 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-23

    more case-insensitive projection searches

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13149 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-23

    Forgot to commit the header

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13148 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-23

    Add distance parameter for point displacement to the gui

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13147 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-23

    german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13146 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-23

    search case-insensitive for authorities

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13145 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-23

    fix build error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13144 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-22

    remove Qt 4.5 dependencies

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13143 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-22

    translation update: el_GR by Mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13142 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-22

    Updated versions of build dependencies


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13141 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-22

    displacement plugin (r13139)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13140 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-21

    [FEATURE]: Add point displacement renderer plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13139 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-21

    better icon for grass tools (by Robert and Markus)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13138 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-21

    Make _getPoint, _getLineString, _getPolygon visible for subclasses of feature renderer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13137 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-21

    don't forget the python bindings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13136 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-21

    Make renderFeature method virtual. More safety checks in the renderer props dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13135 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-21

    fix projections selection when CRSes from multiple authorities are preselected

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13134 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-21

    fix style selection in wms dialog (and a memory leak)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13133 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-21

    fix auth_id field type in srs.db

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13129 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-21

    Updated r.shaded.relief GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13127 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-21

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13126 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    [FEATURE] allow to hide deprecated CRSes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13125 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13124 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-20

    More IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13123 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-20

    Remove the error dialog if using the add feature tool on 25d shapefiles

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13122 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    start raster selection with all files instead of VRT

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13121 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-20

    fix memory leak

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13119 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-20

    Added symbology-ng capability to composer legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13118 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-20

    translation updates: deleted obsolete translations


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13115 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-20

    More IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13114 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-20

    Add method that returns legend item text and symbol pointers to v2 renderers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13113 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13111 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    hide url exclusion for Qt<4.5

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13110 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-20

    proxy exclusion (r13103);
    translation updates

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13108 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    apply plugin manager patch from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13106 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    fix vector grid

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13105 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13104 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    re-enable proxy exclusion

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13103 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    fix proxy settings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13101 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-20

    better names for plugin help files: index-ll_CC.html or index-ll.html

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13100 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-20

    new utils.showPluginHelp() method - patch #2562 by ccrook applied

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13097 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    follow up r13093

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13094 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-20

    [FEATURE] WMS-C support, new spatial authorities, wms selection improvements
    - QgsDataProvider&QgsMapLayer: add dataChanged() signal, so that a provider can signal that the datasource changed
    - use QNetworkAccessManager instead of QgsHttpTransaction (including caching and
      dynamic authentification to website and proxies)
    - resolve EPSG dependency in spatial reference systems and
      included french IGNF definitions in srs.db
    - wms provider:
      - do request asynchronously through QNetworkAccessManager
      - add support for WMS-C
      - dataChanged() is to cause a redraw asynchronously, when new tiles arrive
    - wms selection:
      - add support for WMS-C tilesets
      - allow inserting of all layers of a branch
      - add support for more mime types
      - move load/save to button box
      - and more cleanups
    - raster provider: reduce debugging noise
    - allow adding parts to multi points and lines



    git-svn-id: http://svn.osgeo.org/qgis/trunk@13093 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-20

    Delete on a 0 pointer is save

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13092 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-20

    translation update: pl by milena and gr by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13091 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-19

    plugin installer fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13090 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-03-19

    Bugfix for gps info widget crashing. Gettings to all in Piza

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13089 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-19

    Plugin Installer fix (prevent some depreciation warnings)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13087 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-19

    Patch #2422 applied

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13086 c8812cc2-4d05-0410-92ff-de0c093fc19c

dassau 	2010-03-19

    added prominent link to pdf manual webpage

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13083 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-19

    some ui bugs hunted and the usual hackfest string update for translation files :)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13081 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-19

    fix some warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13080 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-19

    add sanity checks to new vector dialog and some cleanups

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13079 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-19

    updated finnish translation file


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13078 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-19

    clear layer rendering cache after appling a subset string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13077 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-19

    [FEATURE] Added --noplugins command line options to avoid restoring the plugins. Useful when a plugin misbehaves and causes QGIS to crash during startup.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13076 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-19

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13075 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-19

    show feature count in attribute table title

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13074 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-18

    More IT translation fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13073 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-18

    Apply patch #2452 (save as vector)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13072 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-18

    [FEATURE] optionally add new layers to the selected group

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13071 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-18

    First round of updates to the IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13070 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-18

    added empty finnish translation file

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13069 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-18

    don't add PATH to PYTHONPATH

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13068 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-17

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13067 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-17

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13066 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-17

    Added missing QgsGeometry::contains predicate.
    Contributed by Jeremy Palmer (#2560).


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13065 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-16

    read window from map

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13064 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-16

    fix crash when moving layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13063 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-16

    Updated SPONSORS list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13062 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-15

    fix #2556

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13061 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-15

    GDAL-GRASS driver no more necessary, new requirement: exceptions support for GRASS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13060 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-15

    fix #2555

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13059 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-15

    another atempt to get it working on Windows

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13058 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-15

    set default GRASS_GUI

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13057 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-15

    fix crash in about box

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13056 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-15

    followup r13013 and implement #2539

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13055 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-14

    translation update gr by mike and small ui improvements in about box


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13054 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-14

    Georeferencer fix: do not translate GDAL parameter strings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13053 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-13

    Modified SPONSORS list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13052 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-03-13

    Added SPONSORS and DONORS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13051 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-12

    [FEATURE] Applied patch #2541 - initial implementing the canBeUninstalled python plugin method

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13050 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-11

    Print composer gui cleanups from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13049 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-11

    Applied patch #2492 provided by audun

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13048 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-11

    fix #2543

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13047 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-11

    Change default behaviour of field calculator dialog (fixes ticket #2542)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13046 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-11

    Add option to set QSettings path

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13045 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-10

    apply #2460 (slightly modified).  Thanks Jeremy Palmer.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13044 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-10

    fix translation string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13043 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-10

    remove #ifdefs related to no longer supported Qt versions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13042 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-10

    reindent georeferencer plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13041 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-10

    Fixes error message for all Geoprocessing functions, now provides more useful information.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13040 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-10

    Join attributes tool now supports both dbf and csv files. Uses OGR provider to read tabular information (a bit of a hack, but it seems to work).
    Should be slightly faster, and more robust to different file encodings and formats...


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13039 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-10

    Union now supports all vector data types. This has not been extensively tested, and may produce odd results in some cases.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13038 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-10

    Large commit with several related bug fixes:
    1) All fTools functions should now add all layers to dropdowns (including non-visible layers),
    2) All fTools functions should now be non-modal
    3) Several fTools functions have been spead up slightly
    4) Where possible, internal (cpp) functions have be used to replace older Python functions
    5) Defining projections now also considers .qpj files
    Fixes bugs #2502 and #2506, and possibly others?


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13037 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-10

    Uses spatial index to select intersecting features (used selections before). Tool should run faster and with fewer map canvas glitches.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13036 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-10

    Uses spatial index to select intersecting features (used selections before). Tools should both run faster and with fewer map canvas glitches.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13035 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-09

    Uses Qt functions to determine output file name and path correctly (all? ftools output files should now be loaded with correct layer name). Fixes #2498.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13034 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-09

    Simplify geometry tool now works properly for multipart features. Note: tool now uses builtin simplify function from QgsGeometry (i.e. should be noticeably faster). Fixes #2493 and #2499.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13033 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Fixes bug which only computed the convex hull of features within the current extent (i.e. entire extent of layer is now used: as expected). Fixes #2507.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13032 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Fixes crash when 'use selected' checkbox is check but no features are selected. Fixes #2504.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13031 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Means for unique values now properly calculated. Fixes #2509.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13030 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-08

    translation update: pl from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13029 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Basic statistics tool should no longer crash with PostGIS layers. Also adds support for varchar, char, and text fields (PostGIS layers). Should fix #2510

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13028 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Names in dropdown lists are now correctly cleared when changing between layers. Fixes #2505

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13027 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    oops, didn't see patch, patch implementation more elegant (qt-ish), thanks alexbruy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13026 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Adding projection information (prj-file) no longer throws an error if folder has cyrillics. Fixes #2501.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13025 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    reactivate select by location progress bar. Fixes #2517; Thanks to alexbruy for the patch!

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13024 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-08

    [FEATURE] support NULL values in search strings (fixes #2533)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13023 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Both tools now uses project crs instead of None (or input vector layer if selected in regular points). Fixes #2494.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13022 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Vector grid tool now uses project crs instead of None. Fixes #2494.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13021 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Removes limitation on maximum no of selectable features. Fixes #2503. Patch thanks to alexbruy.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13020 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-03-08

    Updates distance matrix tool to allow non ascii characters in id fields. This is based on a workaround (from http://docs.python.org/library/csv.html), as the default Python csv function(s) do not support nonascii characters. Fixes #2496

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13019 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-08

    fix #2523

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13018 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-07

    fix #2526

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13017 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-07

    fix #2516

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13016 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-03-07

    translation update: pl from QMilena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13015 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-07

    fix #2511

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13014 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-07

    fix #2512

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13013 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-06

    Added a slightly faster zonal statistics method (but still not as fast as it could be)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13012 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-06

    just optical changes in the aboutbox (bug?fixes)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13011 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-05

    fix combobox order for attribute actions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13010 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-05

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13009 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-05

    another fix for Qt with CMake 2.6

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13008 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-05

    translation update: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@13007 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-05

    fix Qt test for CMake 2.6

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13006 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-05

    Update sip file for qgspoint

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13005 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-05

    Move distanceSquaredPointToSegment(...) from QgsGeometry to QgsPoint

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13004 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-05

    prepend / to path on win

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13003 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-05

    set GRASS_HTML_BROWSER to qgis.g.browser on win

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13002 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-05

    +putEnv

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13001 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-05

    use forward slashes in GISBASE on win

    git-svn-id: http://svn.osgeo.org/qgis/trunk@13000 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-04

    set color scheme to black / yellow

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12999 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-03-04

    attr editor to gui (r12997)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12998 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-04

    move attribute editor class from app to gui

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12997 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-03

    patches #2438 by lutra

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12996 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-03-03

    do not run Init.sh in terminal, GRASS is already started if QGIS is run from GRASS shell or everything is set by QgsGrass::openMapset

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12995 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-03

    translation update: hr by Zoran - with many thanks for his presentation
    of QGIS at 4th Croatian Cadastrial Congress


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12994 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-03-03

    BBOX option for wfs

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12993 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-02

    PyQGIS: Fixed splitGeometry() method


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12992 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-03-02

    Make sure the user has Qt 4.4 or better, check whether all necessary Qt modules are present.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12991 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-01

    translation update: string update for March 2010


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12990 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-01

    update german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12989 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-01

    translation update: greek by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12988 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-03-01

    fix crash

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12987 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-03-01

    translation update: monthly string update and new .jp file


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12986 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-02-27

    UI Tidy ups

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12981 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-02-27

    New splash for tethys (1.5)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12980 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-02-27

    Prevent crash on feature reset in gps tracker

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12979 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-27

    translation update with new Contributors


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12978 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-26

    translation update: string update will be on 1 of every month from now on


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12977 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-26

    fix #2479

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12976 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-25

    fix analysis lib link error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12975 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-02-25

    clean output proj file name, fixes: #2466


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12974 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-24

    also use WMS credentials when redirected

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12971 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-24

    fix crash when trying to reproject empty layers

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12970 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-24

    Added epsg 900913

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12969 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-24

    translation update: fr by jean roc

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12968 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-23

    georef resampling (r12965)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12967 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-02-23

    Georeferencer: Fix a bug in GDAL script generation.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12966 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-02-23

    Georeferencer: Implement resampling with user-specified target resolution (enhancement request #2447).

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12965 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-02-23

    Georeferencer: support custom projection strings. Fixes #2464.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12964 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-22

    Fix for missing left line in composer grid (happend with negative left boundary coords). Fixes ticket #2458

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12963 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-22

    Equal maximum values for grid interval x and y. Fixes ticket #2459

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12962 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-22

    Applied patch from #2461: add support for incremental rendering with symbology-ng.
    Fixes $2409.
    Contributed by Jeremy Palmer, thanks!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12961 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-21

    translation update: GR by Mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12960 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-02-19

    translation update: pl from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12957 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-18

    translation update: greek by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12956 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-18

    Added renderStarting() signal to QgsMapCanvas.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12955 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-18

    Fixed a crash when capturing polylines.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12954 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-17

    Improve zonal statistics function in analysis lib

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12953 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-02-16

    quick typo fix to join attribute tool


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12952 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-16

    georeferencer refactoring (r12944, r12945)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12951 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-16

    Higher maximum spin values (for use with map units)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12950 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-16

    PyQGIS: small fixes for handling of QML styling.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12949 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-02-16

    Typo in a GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12948 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-02-15

    Fix #2443 - georeferencer switches 'link georeferencer to QGIS' and 'link QGIS to georeferencer' labels.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12947 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-15

    fix moc warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12946 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-02-14

    Update georeferencer from gislab SVN, which adds GCP table with errors, new user interface
    and raster properties configuration (thanks to Maxim Dubinin and Jack R at gis-lab). Part 2/2
    of new georeferencer.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12945 c8812cc2-4d05-0410-92ff-de0c093fc19c

mmassing 	2010-02-14

    Merge with WARP_REFACTORING branch, which refactors and adds infrastructure for
    gcp fitting and residual error reporting. Part 1/2 of new georeferencer.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12944 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-13

    grass fix (r12936)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12941 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-12

    translation update: greek by mike


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12940 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-12

    Fixed #2422


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12939 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-12

    set GRASS_HTML_BROWSER for term (does not work, overriden by Init.sh

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12938 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-12

    handle better mumltiple empty output

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12937 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-12

    output opt fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12936 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-12

    Added QgsMapCanvas::layers() method


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12935 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-12

    fix #2435

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12933 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-12

    fix build error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12932 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-12

    Brazilian context help (r12929)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12931 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-11

    update german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12930 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-11

    fix brasilian context help

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12929 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-11

    Add transfer this to second composer shape constructor

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12928 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-11

    fix #2026

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12927 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-11

    use signals to mark project dirty when canvas layer or extents change (fixes #943)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12926 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-11

    fixed crash on edit attr / no line

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12925 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-11

    handle better null values

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12924 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-11

    fix windows build errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12923 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-10

    fix #2009

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12922 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-02-10

    gis theme icons for mActionMeasureAngle and Mapserver Export Plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12921 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-10

    Python console: basic syntax highlighting (prompt, errors)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12920 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-10

    reset GRASS_GUI in term

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12919 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-10

    grass g.browser (r12915)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12918 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-10

    the file is input

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12917 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-10

    printed command ready for copy-paste

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12916 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-10

    default browser starter

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12915 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-10

    do not use empty input

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12914 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-02-10

    Fix in v.dissolve GRASS module - closes #2351. Thanks Giovanni Manghi

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12912 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-09

    open external links from man

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12911 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-09

    add shape methods to composerview sip

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12910 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-09

    Applied patch from #2424 by Mathias Walker.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12909 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-09

    Encode and decode alpha color component

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12908 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-09

    Fix for previous fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12907 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-09

    another attempt to set stdout binary mode on win

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12906 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-09

    Add composer shape item to sip list

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12905 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-09

    Fix for small raster shift introduced by my raster memory handling improvements

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12904 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-08

    include projection error in vector file writer error message

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12903 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-08

    remove glocale and package names again

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12902 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-08

    Uhm... fixing compilation error, take #2.
    Hopefully also with better label size scaling in composer (labeling plugin)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12900 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-08

    Fixed compilation of python bindings due my recent changes.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12899 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-07

    fix #2410

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12898 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-07

    Show labels from labeling plugin also in map composer (though not scaled correctly)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12897 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-07

    force binary mode for stdout

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12896 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-02-07

    update maximum grid spacing for regular points tool (fixes #2404).

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12893 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-02-07

    check for both lower- and upper-case extensions (fixes #2414), and clear field names upon update (fixes#2386).

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12892 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-06

    fix #2408

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12891 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-06

    improve vector file writers error reporting

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12890 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-06

    grass raster provider (r12880)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12889 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-05

    get null outside map

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12888 c8812cc2-4d05-0410-92ff-de0c093fc19c

cfarmer 	2010-02-05

    Fix bug with outdated name of QgsRectangle class (QgsRect)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12887 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-05

    added GDAL_LIBRARY for GRASS modules because GRASS libs can use GDAL

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12886 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-05

    use GRASS raster provider everywhere

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12885 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-04

    removed translation, causing compilation problems

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12883 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-04

    fix some warnings & build errors (Linux/Windows)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12882 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-04

    debian packaging update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12881 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-04

    GRASS raster data provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12880 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-02-04

    prepare for GRASS raster provider

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12879 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-04

    PyQGIS: few additions for more pythonic api
    - QgsVectorLayer and QgsVectorDataProvider support iterating
    - QgsFeature allows direct access to attributes (get/set/del)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12878 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-04

    Fix composer map annotation bug

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12877 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-04

    translation update: hr by zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12876 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-04

    wrapped new method from r12869


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12873 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-04

    Emit composer add/remove signals also if composers are added from project file

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12872 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-04

    fix r12869: if first feature has id 0 it wasn't retrieved

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12871 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-04

    postgres credentials (r12859);
    split analysis sip into 2 parts so unused parts not missing

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12870 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-04

    fix #2397 by clearing attribute maps when retrieving features

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12869 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-03

    also fix year in gps date

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12868 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-03

    fix for gps date

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12867 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-03

    revert CBLAS part of r11250:
    we actually don't use CBLAS directly, but GSL does w/o being linked to it
    (see also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=456898)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12866 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-03

    Link cblas libraries. Fixes bug 2401

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12865 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-03

    Added utc date and time to gps information and insert connection into the registry

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12862 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-02-02

    translation update: HR by zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12860 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-02-01

    [FEATURE] allow postgres layers without saved username & password by asking for credentials

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12859 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-01

    Fixed few problems in console:
    - pressing enter if the cursor was not at the end
    - ctrl+shift to select words didn't work


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12858 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-02-01

    connections manager (r12855)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12857 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-02-01

    PyQGIS: wrapped raster shaders (color ramp, freak out, pseudocolor)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12856 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-02-01

    Applied patch #2341 (loading and saving of WMS and PostGIS connections) from alexbruy

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12855 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-31

    PyQGIS: make sure that python modules don't get out of sync: rebuild gui and analysis modules when core module is changed


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12854 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-29

    QgsRendererV2 metadata: for renderer icon use QIcon instead of icon file name.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12852 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-29

    translation update: HR by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12851 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-29

    new attr sel dlg buttons (r12843)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12850 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-29

    PyQGIS: fix to support older SIP versions (4.7.x)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12848 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-29

    Display alpha value as transparency (to be consistent with the interface in old symbology)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12847 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-28

    Fix for compilation problem

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12844 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-28

    Added scrool area, 'select all' and 'clear' buttons to attribute dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12843 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-28

    [FEATURE]: possibility to show only visible features in composer table or all features

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12840 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-28

    debian packaging: depend on python 2.5 for sid while transition to 2.6 is on

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12839 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-27

    update copyright in info.plist

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12838 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-27

    custom plugin layers (r12834)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12837 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-01-26

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12836 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-26

    Added notes that the new stuff was added in v1.5.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12835 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-26

    [FEATURE] Support for custom plugin layers. Applied patch from #2392 contributed by Mathias Walker. Thanks!

    Some parts modified to make plugin layers easier to use and more robust.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12834 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-25

    workaround for #1759

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12833 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-24

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12832 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-24

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12831 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-24

    [FEATURE] add validation to capture tool

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12830 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-24

    fix grass string

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12829 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-23

    allow opening properties dialog for layer from plugins (better version of r12814)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12828 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-23

    use 4-file split for python modules as in cmake build, should compile more parallel now for single-arch build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12827 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-23

    forgot version up after 1.4

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12826 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-23

    pack label dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12825 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-23

    Label dialog: Fix buddies and tab order

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12824 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-23

    Label dialog: Remove the toolbox and use tabs and scroll areas rather

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12823 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-23

    translation update: hr by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12822 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-23

    Updates as per #2385

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12821 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-22

    sync sip file for symbolv2rendercontext

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12820 c8812cc2-4d05-0410-92ff-de0c093fc19c

gsherman 	2010-01-22

    Fix for bug #2384. Ok and Cancel buttons now work on the add
    new oracle raster connection dialog.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12819 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-22

    Use ARGB premultiplied format for simple marker, fixed multiplication of alpha channel for images with premultiplied format.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12818 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-22

    Fixed symbol selector UI, use just one symbol color button instead of former three buttons


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12817 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-22

    premultiplied image seems to work for svg fill

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12816 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-22

    Fix for multiband raster display

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12815 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-21

    [FEATURE] allow opening layer properties from plugins

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12814 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-21

    raise attribute dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12813 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-21

    fix windows build error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12812 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-21

    Added layer transparency to symbol classes (with the exception of svg marker, where I'm still looking for a solution with QPicture)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12811 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-21

    Start with transparent background with svg fill.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12810 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-21

    Draw GDAL rasters and WMS layers in several parts if they contain many pixels (e.g. when printing in high resolution to large paper sizes)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12809 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-20

    Fixed positioning of font markers with rotation (#2380).
    Allow rotation up to 360 degrees in the settings widget.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12808 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-20

    Save path for svg texture absolute or relative

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12807 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-20

    [FEATURE] identify tool update
    - attribute form now non-modal in view mode (since r12796)
    - highlight disappear when window is deactivate or closed and reappears when
      reactivated.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12806 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-20

    update package.cmd

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12805 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-20

    font marker layer (r12794)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12804 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-20

    Fixed #2379 - hang on line width set to zero (division by zero)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12803 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-20

    Remove deprecated icon file from list in images.qrc

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12802 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-20

    Make composer a bit more robust against accidential mouse clicks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12801 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-01-20

    remove a depreciated icon file

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12800 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-01-20

    Improvements to the IT GUI transaltion

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12799 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-19

    translation update: hr by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12798 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-19

    Fix for a crash in composer (fixes #2374)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12797 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-19

    open attribute dialogs non-modal when not in editing mode

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12796 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-19

    pass password on to geometry type detection thread

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12795 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-18

    [FEATURE] Added font marker symbol layer


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12794 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2010-01-18

    -Patch for slowdown or segfault when zooming very far into rasters.
    -Closes ticket #2268

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12793 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-18

    translation update: is and bg by thordur and Zahari


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12792 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-18

    Added vertical line to simple marker symbol layer.
    Added rotation for ellipse, cross and line markers.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12791 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-18

    dash line symbology (r12788)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12790 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-18

    Better update of line pattern icon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12789 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-18

    Added option for custom dash-space pattern in simple line symbollayer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12788 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-17

    fix some missing lib paths, install instructions cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12787 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-16

    missed sip include dir

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12786 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-16

    add load library error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12785 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-16

    missed gpsimporter plugin update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12784 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-16

    faster python compiling (r12774)
    misc updates

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12783 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-16

    fixed #2003, crash if topo is not available

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12782 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-16

    note about exceptions in GRASS lib (-fexception)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12781 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-16

    syntax fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12780 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-16

    link python modules as modules on OSX

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12779 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-16

    Display polygon outline icon on button for svg fill symbol layer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12778 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-16

    [FEATURE]: SVG fill symbol layer for polygon textures

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12777 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-16

    Installation guide: updated QGIS deps (minimal sip version set to 4.8, geos to 3.0, added qwt)
    Regenerated INSTALL file.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12776 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-16

    Changed SIP_EXECUTABLE to SIP_BINARY_PATH to keep original variable name.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12775 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-16

    Native and faster compilation of python bindings (#2370)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12774 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-16

    Increased precision of spin boxes for size/width to 2 decimals


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12773 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-16

    Corrected default symbol layer sizes to work with milimeters


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12772 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-15

    PyQGIS: added QgsColorButton and QgsColorButtonV2


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12771 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-15

    Added Italian srs defs. Paolo please test

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12770 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-15

    symbology-ng: updates to symbol layer registry and renderer registry so that they can be used from python.
    Added wrappers for these two registries and their metadata classes.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12769 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-15

    gps detection imporvements (r12759) and other cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12768 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-15

    more geometry validity checks

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12767 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-15

    Fixed conversions between V1 and V2 symbols: don't convert pixels<->mm anymore


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12766 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-14

    Prevent division by 0

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12764 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-14

    Create a better fake rendercontext for symbol previews

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12763 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-14

    Refactored output unit encoding/decoding to their own functions


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12762 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-14

    fix r12759

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12761 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-14

    Updated symbol selector GUI to reflect the design created with Tim


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12760 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-14

    improve gps detection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12759 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-14

    reduce debugging noise

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12758 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-14

    Fixed what I've broken with previous commit


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12757 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-14

    QgsSymbolV2RenderContext:
    - use reference to QgsRenderContext instead of pointer
    - added utility functions for simpler syntax when converting values to output units


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12756 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-14

    [FEATURE]: choice between mm and map units for new symbology. Scaling to use new symbology in print composer as well

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12755 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-13

    restore app build of qgis_help

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12754 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-13

    restore previous bundle build of helpviewer (r12622), add 2nd install step to correct install_name (fix #2294)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12753 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-12

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12752 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-12

    derive QgsGrass::Exception from QgsException

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12751 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-12

    german translation fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12750 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-12

    [FEATURE] allow editing of invalid geometry in node tool

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12749 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-12

    missed a file in r12747

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12748 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-12

    also show descriptions for GPS ports

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12747 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-12

    catch GRASS exceptions

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12746 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-12

    fix #2358

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12745 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-12

    translation update: hr by Zoran


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12744 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-12

    Fix for ticket #2354

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12743 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-11

    [FEATURE] Made wms search server user configurable

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12740 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-11

    use QgsGPSConnection::availablePorts() also in gps plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12739 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-11

    fix for #1095

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12738 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-11

    remove unused files from qextserialport

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12737 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-11

    fix osx build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12736 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-11

    new python console (r12725, r12727)
    better serial port handling (r12732)
    add phonon and QtDBus to bundling needed by Webkit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12735 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-11

    fixed compliation errors on linux


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12734 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-11

    fix r12732

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12733 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-11

    qextserialport update (improved device detection on Windows & OSX)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12732 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-11

    use monospaced font in python console


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12731 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-10

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12729 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-10

    added rfcomm devices in autodetect to connect to bluetooth gps devices


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12728 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-10

    [FEATURE] new python console implementation.
    Simpler, easier and better :-)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12727 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-10

    add Qwt build instructions for OSX; misc cleanup for OSX

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12726 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-10

    Converted Python console from C++ to Python.
    This cleans python support a bit and makes a starting point for further improvements of the console.

    It's possible to run the console also outside QGIS:

    import qgis.console
    qgis.console.show_console()



    git-svn-id: http://svn.osgeo.org/qgis/trunk@12725 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-09

    move pg and ogr stuff (r12702)
    add GPS tracking and Qwt (r12685, r12692, r12707)
    composer table select display attribs (r12709)
    another composer table update (r12717)
    misc updates
    phwew! note: qwt not optional for xcode project due to lack of conditional sources

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12724 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-09

    update german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12723 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-09

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12722 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-09

    fix python plugin detection

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12721 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-09

    Consider also original marker rotation in marker line with rotated symbols.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12720 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-09

    Add a little more white space to the left of the gps dock for a more balanced look.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12719 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-09

    fix runtime warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12718 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-09

    Adapt number of features in composer table if height of the item is changed interactively

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12717 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-01-08

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12715 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-08

    add measure angle icon to qrc file again

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12714 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-08

    Something from the 'what took you so long?' dept - trunk splash update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12713 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2010-01-08

    TS files fix/update - revert strings gone in r12680 and add the grass plugin

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12712 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-08

    Fix issue where gps tracker was not being restored properly on subsequent qgis launches. Also wrapped some more conditional qwt bits

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12711 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-08

    fix runtime warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12710 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-08

    Added selection of display attributes and aliases to composer table item

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12709 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-08

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12708 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-08

    make QWT support configurable

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12707 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-08

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12706 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-08

    more fixes: optional QWT

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12705 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12704 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    rename src/core/gps/time.h to nmeatime.h

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12703 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    rename some postgres app classes and move a ogr class

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12702 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    add qwt dependency to debian package

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12701 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    move QgsMapToolFeature::avoidIntersections to QgsGeometry

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12700 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    add -DQWT_DLL to windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12699 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    add postgresql password cache

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12698 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-07

    Refactored capturetool to capturemode and fixed some compile errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12697 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    more fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12696 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    fix some issues with the GPS commit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12695 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-07

    Fixed typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12694 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-07

    [FEATURE] GPS Tracking widget added. This is a bug fix for a missing file that should have been updated in last commit

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12693 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2010-01-07

    Added gps tracker widget. This work was sponsored by http://gonavigo.ca/. We thank them for their support

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12692 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-07

    fix windows build

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12691 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-07

    Python support: use a wrapper for import statement that tracks modules of plugins.
    This enables complete unload and reload of plugins:
    - qgis.utils.unloadPlugin(name) - now removes also plugin's modules (files) from python
    - qgis.utils.reloadPlugin(name) - unloads and starts the plugin again (using fresh source files)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12690 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-07

    Emit extentChanged signal in composer map after drawing to prevent concurrent layer access with table items

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12689 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-07

    More options for composer table

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12688 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-07

    temporal fix for 1900

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12687 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-07

    Replaced qWarnings with QgsDebugMsg

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12686 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-07

    [FEATURE]: add classes for live GPS tracking in core

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12685 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-07

    pre for any module output

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12684 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-07

    composer attr tables (r12682)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12683 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-06

    [FEATURE]: A table widget to display feature attributes in the composer (but it still needs a bit more settings...)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12682 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-06

    fixed 1992, monospace font for module output

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12681 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-06

    wohooo another language - now bulgarian - which brings us to 34 languages (and the usual string update)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12680 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-06

    fixed #1619, and another not yet reported bug for field

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12679 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-06

    fix for #1169, added check for isle's area

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12678 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-06

    some options marked advanced

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12677 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-06

    fixed ticket #2194, icon size in tab header

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12676 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2010-01-05

    translation updates: hr_HR by Zoran and general string update with
    script


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12675 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-05

    fix runtime warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12674 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-05

    Show a message box if there was an error during the merge operation (instead of crashing). Fixes ticket #2342

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12673 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2010-01-05

    PyQGIS: added missing conversion to QgsRenderer subclasses, added few missing methods


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12672 c8812cc2-4d05-0410-92ff-de0c093fc19c

rblazek 	2010-01-05

    added support for advanced options and example use in v.out.ascii

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12671 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-02

    Fix double validator in composer map widget (part of ticket #2252)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12667 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-02

    fix r12665

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12666 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-02

    catch more projection errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12665 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2010-01-02

    context help update (r12662)
    measure angle tool (r12663)
    misc cleanup

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12664 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2010-01-02

    [FEATURE]: A tool to measure angles

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12663 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2010-01-02

    Added IT context help files

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12662 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-02

    allow entry of visibility scales in floating point

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12661 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2010-01-01

    update grass i18n

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12660 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-31

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12659 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-31

    grass modules i18n

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12658 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-31

    Two typos in GRASS modules

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12657 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-31

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12656 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-31

    ftools i18n update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12655 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-30

    Fixed v.generalize GRASS module

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12653 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-29

    add GSL framework option

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12649 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-29

    postgres fix (r12641)
    bad layer fix (r12634)
    attribute table fix (r12639)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12648 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    update version info in trunk

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12646 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    fix compile error

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12644 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12643 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    apply #2199

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12642 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    apply #2322

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12641 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    fix #2315

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12640 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    fix #2019

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12639 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2009-12-28

    Updated version nos etc for enceladus release

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12637 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    debian symbols update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12636 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-28

    translation update: hu by zoltan


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12635 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    fix #2328

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12634 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-28

    Added an option to v.out.ogr.pg - thanks Giovanni Manghi

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12633 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-28

    fix #2329

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12632 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-28

    itranslation update: hr by zoran



    git-svn-id: http://svn.osgeo.org/qgis/trunk@12631 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-28

    Finished IT translation of context help. Thanks Flavio Rigolon and Maurizio Napolitano

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12629 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-28

    Final edits to the IT translation? Thanks Maurizio Napolitano

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12628 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-27

    Fix #2324.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12627 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-27

    sync with help app fix (r12622)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12626 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-27

    fix #2327

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12625 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-27

    fix #2294

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12622 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-26

    plugin installer update - fix #2247

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12621 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-26

    translation update: fr by jean roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12620 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-25

    Fix for scalebar not responding to map changes after reading from project file and template

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12619 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-24

    context help updates (r12611, r12613)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12618 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-24

    don't measure empty geometries and also return success when exports geos points to wkb

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12617 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-24

    use QString in QgsException to fix encoding

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12616 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-24

    catch projection exceptions while V2 rendering

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12615 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-24

    More IT translations of context_help by Flavio Rigolon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12613 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-24

    Don't read composer title from template. Fixes bug #2311

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12612 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-24

    First IT translations of context_help by Flavio Rigolon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12611 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-24

    More IT translation improvements - will we ever finish?

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12610 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-24

    various updates (r12579, r12581, r12590, r12600)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12609 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-24

    revert inadvertently committed change

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12608 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    fix #2164

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12607 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    fix #2239

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12606 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-23

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12605 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    fix #2293

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12604 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    fix #2264

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12603 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    fix #2318

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12602 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    automatic indentation update (r12177-r12600)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12601 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    another round of typo fixes (and use color instead of colour - like Qt; no string updates)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12600 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-23

    Refresh canvas after adding a new node (#2313)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12599 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-23

    Use fixed 2px pen width for rubber bands and vertex markers. (The previous default 10px was just too much)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12598 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-23

    Leave only one setGeometry method to avoid ambiguous behaviour, added missing /Transfer/ annotation.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12597 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-23

    Switch position of add and show button in composer manager

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12596 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-23

    Reduce precision for point on line test. Fixes bug #2224

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12595 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    followup r12593

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12594 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    fix #2314

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12593 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-23

    fix #2317

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12592 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-23

    Reuse OSM db file on windows.
    For some strange reason it was not considering the same QDateTime to be equal.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12591 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-23

    moved suggested osm tag keys and values to another file

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12590 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-23

    translation update: is by thordur


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12589 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    context help fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12588 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    show classification attribute above the classes in legend

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12587 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    fix #2312

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12586 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-22

    Test if polygon rings are still inside the outer boundary after reshape and fix a memory leak. Fixes bug #2220

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12585 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    fix connect

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12584 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-22

    Mac app/window icon from resource, not xpm

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12583 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    fix offset labels in label dialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12582 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-22

    adding pt_BR context help translation by Arthur Nanni


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12581 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    fix #2208

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12580 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-22

    Added python bindings for search strings


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12579 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-22

    Fixed operator precedence (#2308)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12578 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    fix #2299

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12577 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    debian symbols update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12575 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    fix warning

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12574 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-22

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12573 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-22

    More improvements in the IT translation - Thanks Flavio Rigolon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12572 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-22

    translation updates: tr by Osman Yilmaz


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12571 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2009-12-22

    -fixed nodata bug when calculating min/max from current extent
    -Closes ticket #2309

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12570 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-21

    translation update: is by thordur and hu by siki


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12569 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-21

    context help updates (r12554, r12567)
    preserve symbology settings (r12563)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12568 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-21

    context help update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12567 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-21

    More typo in the IT translation - Thanks Flavio Rigolon

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12566 c8812cc2-4d05-0410-92ff-de0c093fc19c

ersts 	2009-12-21

    -Fixed layout bug in the eVis event browser and tidied up the options tab, no strings added or deleted
    -Closes ticket 2215

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12564 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-21

    Preserve as many settings as possible when converting between new and old symbology.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12563 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-21

    one string missing - forgot to update the strings



    git-svn-id: http://svn.osgeo.org/qgis/trunk@12562 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-21

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12561 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-21

    Minor IT translation improvements

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12560 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-21

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12559 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-20

    Use cross by default as editing vertex marker: semi-transparent circle markers take way too long time to render.
    Also make the markers smaller by default for better readability.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12558 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    fix german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12557 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    automatically append missing .shp to created shapefiles

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12556 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    fix #1773

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12555 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-20

    context help update from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12554 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-20

    translation update: pl by Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12553 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-20

    Manage python plugins loaded state in python utils.py module.
    This allows seamless loading/unloading of plugins by plugin installer.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12552 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-20

    more bugfixing in field calculator

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12551 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    fix garbled exceptions on proj errors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12550 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-20

    translation update: lv by Maris .. more and more translations come in time - this will be a great release


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12549 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-20

    Minor edits to the IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12548 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-20

    context help updates (r12530, r12539); misc updates

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12547 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    missed some warnings and other minor updates

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12546 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    attribute editor fixes:
    - in attribute table: set minimum width of editor to columns width and height
      of filename widget to two times the lineedit height
    - fix non-editable unique value editor (was editable)
    - fix enum support
    - add support for symbology-ng categories



    git-svn-id: http://svn.osgeo.org/qgis/trunk@12545 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    make QgsVectorLayer::deleteShapefile case-agnostic

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12544 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-20

    Fix bug that prevented attribute table to update correctly after field calculator usage

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12543 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-20

    translation update frozen strings and new language croatian


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12542 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    fix warnings

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12541 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-20

    Fix new labeling to work with render caching.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12540 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    german translation update, some context help fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12539 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-20

    translation update: ja by Yoichi


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12538 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-20

    Show editing vertex markers with symbology-ng. Fixes #2171.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12537 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    respect overriden locale in helpviewer and fix link typo

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12536 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-20

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12531 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-20

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12530 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    debian symbols update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12529 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-20

    fix common typos

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12528 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-20

    translation update: checked translations some minor changes


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12527 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-20

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12525 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-20

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12524 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-19

    more context help updates (r12492, r12496, r12499, r12500)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12523 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-19

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12522 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-19

    fix #2289

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12521 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-19

    fix #2296

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12520 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    OSM: Upload only tag which are not marked as deleted. Fixes #2054.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12519 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    OSM: save correctly the extent of data. Most probably the cause of #2098.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12518 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    OSM: small usability improvements in download dialog


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12517 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-19

    Fix for bug #2117, wrong composer scale if units are degree

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12516 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    Fixed snapping to background layers if there's a layer that doesn't exist. Fixes #2261


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12515 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    Use 10px as a default vertex search radius. (should be a more sensitive tolerance than 10 map units)


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12514 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2009-12-19

    dutch translation update to 100% for 1.4

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12513 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    Display warning in node tool if it couldn't find any features. Fixes #2134.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12512 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    Select a valid variant when there's no variant with the same number of colors in new scheme. Fixes #2254


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12511 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-19

    Clear undo stack on rollback. Fixes #2287.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12510 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-19

    itranslation update: icelandic by thordur first release


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12509 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-18

    Less verbosity to stdout from labeling plugin


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12508 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-18

    More cleanup of the IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12507 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-18

    More minor edits to the IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12506 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-18

    minor edits to the IT translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12505 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-17

    translation update: es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12504 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-17

    translation updates: pt_BR, it and fr by Arthur, Flavio and Jean Roc


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12503 c8812cc2-4d05-0410-92ff-de0c093fc19c

mhugent 	2009-12-17

    Fix for bug #2291, Reshape Features tool crashes on right mouse click

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12501 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-17

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12500 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-17

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12499 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-17

    itranslation updates to all files as usual
    Changed TRANSLATORS to include traditional Chinese Coordinator


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12498 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-17

    itranslation update: ru by artem and another script update to see if
    strings are really frozen :)



    git-svn-id: http://svn.osgeo.org/qgis/trunk@12497 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-16

    add german scalebar translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12496 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-16

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12495 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-16

    GIS theme icon update from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12494 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-16

    initial translation file for iceland - brings us to 32 languages


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12493 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-16

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12492 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-16

    translation update: it by maurizio and es by carlos


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12491 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-16

    Fix CRS definitions for Polish systems 1992 and 2000 (epsg 2176-2180). This is a temporary workaround until the native epsg base is corrected.

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12490 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-16

    translation update: vi from Huu Manh Bui


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12489 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-16

    grass update (r12475)
    context help update (r12478)
    theme icon updates (r12479, r12484, r12485)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12488 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-16

    Plugin installer update - rest of the r12476

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12487 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-15

    translation update: pl

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12486 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-15

    more GIS icons from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12485 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-15

    more GIS icons from Robert

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12484 c8812cc2-4d05-0410-92ff-de0c093fc19c

macho 	2009-12-15

    update strings ini translation files - strings are in freeze from now until release QGIS 1.4


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12483 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-15

    update german translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12482 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-15

    update astyle-all.sh

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12481 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-15

    Applied patch from #2285 by Mark Baas.
    Thanks for contributing!


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12480 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-15

    Separate icons for mActionShowComposerManager and mActionFilePrint

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12479 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-15

    Context help for the Plugin Installer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12478 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-15

    Reverted change to v.out.ogr.pg due to a possible bug in GRASS

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12477 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-15

    Plugin installer update: one-step plugin install and uninstall in QGIS>=1.4

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12476 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-15

    More GRASS modules updated and added. Applied #2004

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12475 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-15

    More GRASS modules updated

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12474 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-15

    Updated various GRASS modules - patches applied (thanks Giovanni Manghi). Closes #2229 and #2046

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12473 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2009-12-15

    Updates for context help from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12469 c8812cc2-4d05-0410-92ff-de0c093fc19c

kyngchaos 	2009-12-15

    a bunch of context help updates (various revisions)

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12468 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-14

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12464 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-14

    fix types in what's new

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12463 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2009-12-14

    Updated whats new content in index.html

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12462 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-14

    Restore GIS icons for plugins

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12461 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-14

    Don't zoomToSelected when nothing selected

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12460 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2009-12-14

    Added whats new text for 1.4 release.


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12459 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-14

    german translation update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12458 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-14

    activate help for attribute table, mapserver export and evis

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12457 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2009-12-14

    More iconography updates from Anita Graser

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12456 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-14

    fix #2281

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12455 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-14

    add context help for qgis options, style manager, spatialite selection and custom projection and application icon to help viewer

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12454 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-14

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12453 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-14

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12452 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-14

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12451 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-14

    better fix for slowdown of r12418

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12450 c8812cc2-4d05-0410-92ff-de0c093fc19c

pcav 	2009-12-14

    Updated list of donors

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12449 c8812cc2-4d05-0410-92ff-de0c093fc19c

timlinux 	2009-12-14

    Arbitrary change to cause makefiles to update

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12448 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-14

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12447 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-14

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12446 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    german context help fix

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12445 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    rename context helps for QgsCreateNewVectorLayer to QgsNewVectorLayerDialog

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12444 c8812cc2-4d05-0410-92ff-de0c093fc19c

borysiasty 	2009-12-13

    Context help updates from Milena

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12443 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    fix #2276

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12442 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    apply #2277

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12441 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    fix slowdown of r12418

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12440 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    r12434 done right

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12439 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2009-12-13

    new update dutch ts file

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12438 c8812cc2-4d05-0410-92ff-de0c093fc19c

rduivenvoorde 	2009-12-13

    new dutch translation

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12437 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    de_DE context help fixes

    git-svn-id: http://svn.osgeo.org/qgis/trunk@12436 c8812cc2-4d05-0410-92ff-de0c093fc19c

wonder 	2009-12-13

    PyQGIS: Fixed slightly embarrassing conversion to subclasses in symbology-ng


    git-svn-id: http://svn.osgeo.org/qgis/trunk@12435 c8812cc2-4d05-0410-92ff-de0c093fc19c

jef 	2009-12-13

    replace  with