-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'layer_exceptions' into 'main'
Layer exceptions Closes #6 See merge request qgis/hvbg-filterplugin!8
- Loading branch information
Showing
7 changed files
with
187 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
GROUP = 'MapFilter' # The section name for filter definitions stored in QSettings | ||
LAYER_EXCEPTION_VARIABLE = 'MapFilterException' | ||
SPLIT_STRING = '#!#!#' # String used to split filter definition parameters in QSettings | ||
|
||
# The filter string might contain user-specific parts so we surround *our* filter | ||
# string with text markers | ||
FILTER_COMMENT_START = '/* MapFilter Plugin Start */' | ||
FILTER_COMMENT_STOP = '/* MapFilter Plugin Stop */' | ||
|
||
# The QGIS Provider Types that can be filtered by the plugin | ||
SUPPORTED_PROVIDERS = ['postgres'] |
Oops, something went wrong.