mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-06 00:05:02 -05:00
* Remove deprecated Qgis::WKBType and API cleanup Renames QgsWKBTypes to QgsWkbTypes Replaces usage of the enums: * Qgis::WKBType with QgsWkbTypes::Type * Qgis::GeometryType with QgsWkbTypes::GeometryType Their values should be forward compatible (a fact that was already explited up to now by casting between the types) Renames some SSLxxx to SslXxx and URIxxx to UriXxx * Fix build warnings and simplify type handling * Add a fixer to rewrite imports * The forgotten rebase conflictThe forgotten rebase conflicts * QgsDataSourcURI > QgsDataSourceUri * QgsWKBTypes > QgsWkbTypes * Qgis.WKBGeom > QgsWkbTypes.Geom * Further python fixes * Guess what... Qgis::wkbDimensions != QgsWkbTypes::wkbDimensions * Fix tests * Python 3 updates * [travis] pull request caching cannot be disabled so at least use it in r/w mode * Fix python3 print in plugins
58 lines
2.0 KiB
Python
58 lines
2.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
FieldsMapper.py
|
|
---------------------
|
|
Date : October 2014
|
|
Copyright : (C) 2014 by Arnaud Morvan
|
|
Email : arnaud dot morvan at camptocamp dot com
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************
|
|
"""
|
|
from __future__ import print_function
|
|
|
|
__author__ = 'Arnaud Morvan'
|
|
__date__ = 'October 2014'
|
|
__copyright__ = '(C) 2014, Arnaud Morvan'
|
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
|
from processing.core.parameters import Parameter
|
|
|
|
|
|
class ParameterFieldsMapping(Parameter):
|
|
|
|
def __init__(self, name='', description='', parent=None):
|
|
Parameter.__init__(self, name, description)
|
|
self.parent = parent
|
|
self.value = []
|
|
|
|
def getValueAsCommandLineParameter(self):
|
|
return '"' + unicode(self.value) + '"'
|
|
|
|
def setValue(self, value):
|
|
if value is None:
|
|
return False
|
|
if isinstance(value, list):
|
|
self.value = value
|
|
return True
|
|
if isinstance(value, unicode):
|
|
try:
|
|
self.value = eval(value)
|
|
return True
|
|
except Exception as e:
|
|
# fix_print_with_import
|
|
print(unicode(e)) # display error in console
|
|
return False
|
|
return False
|