File tree Expand file tree Collapse file tree 6 files changed +6
-101
lines changed Expand file tree Collapse file tree 6 files changed +6
-101
lines changed Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ Use QgsComposerAttributeTableV2 instead.</li>
190
190
<li>QgsCRSCache was removed. QgsCoordinateReferenceSystem now internally uses a cache for CRS creation,
191
191
so there is no longer a need for the separate cache class. Code which previously called QgsCRSCache::updateCRSCache()
192
192
should now call QgsCoordinateReferenceSystem::invalidateCache() and QgsCoordinateTransformCache::instance()->invalidateCrs( authid ).</li>
193
+ <li>QgsHttpTransaction. This class was outdated and code should be ported to native Qt or Python implementations.</li>
193
194
<li>QgsLabel and QgsLabelAttributes. Replaced by labeling based on PAL library, see QgsLabelingEngineV2.</li>
194
195
<li>QgsLegendModel was removed.
195
196
<li>QgsMapCanvasMap. It is an internal class used by map canvas.</li>
Original file line number Diff line number Diff line change 65
65
%Include qgsmaptopixelgeometrysimplifier.sip
66
66
%Include qgstransaction.sip
67
67
%Include qgstransactiongroup.sip
68
- // TODO - update for Qt5
69
- // %Include qgshttptransaction.sip
70
68
%Include qgsdartmeasurement.sip
71
69
%Include qgsexpressionfieldbuffer.sip
72
70
%Include qgsfontutils.sip
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ SET ( qgis_mapserv_SRCS
22
22
qgscapabilitiescache.cpp
23
23
qgsconfigcache.cpp
24
24
qgshttprequesthandler.cpp
25
+ # qgshttptransaction.cpp
25
26
qgsgetrequesthandler.cpp
26
27
qgspostrequesthandler.cpp
27
28
qgssoaprequesthandler.cpp
@@ -65,6 +66,7 @@ ENDIF("${Qt5Network_VERSION}" VERSION_LESS "5.0.0")
65
66
SET (qgis_mapserv_MOC_HDRS
66
67
qgscapabilitiescache.h
67
68
qgsconfigcache.h
69
+ # qgshttptransaction.h
68
70
qgsmaprenderer.h
69
71
qgsmslayercache.h
70
72
qgsserverlogger.h
File renamed without changes.
Original file line number Diff line number Diff line change @@ -30,13 +30,14 @@ class QTimer;
30
30
// needs porting to Qt5 - until then don't include in api docs
31
31
// /@cond PRIVATE
32
32
33
- /* * \ingroup core
33
+ /* * \ingroup server
34
34
* HTTP request/response manager that is redirect-aware.
35
35
* This class extends the Qt QHttp concept by being able to recognise
36
36
* and respond to redirection responses (e.g. HTTP code 302)
37
+ * @note not available in Python bindings
37
38
*/
38
39
39
- class CORE_EXPORT QgsHttpTransaction : public QObject
40
+ class QgsHttpTransaction : public QObject
40
41
{
41
42
42
43
Q_OBJECT
You can’t perform that action at this time.
0 commit comments