forked from bird-house/twitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bird-house#44 in OGC/testbed14-twitcher from proce…
…sses-not-visible to dynamic-wps-processes * commit '1a574f1303b9e2896dfec74b218c443b6ec711b1': reapply Process.identifier 'pop' fix error expected failure fix duplicate test name more variable checking + job execute if visible + unittests for execute & visibility get/put owsexception testing json response delete process visibility filter unittest process deploy fixes for describe process visibility + json rendering + proceses unittests + typing wps 1.0 test execute success/error on public/private visibility config setup for wps testing many changes to allow testing wps 1.0 filtred by visibility public/private process in self more pywps configs and tests wps tests typing filter WPS 1.0 processes according to adapter (MagpieAdapter perms)
- Loading branch information
Showing
30 changed files
with
1,092 additions
and
315 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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
EXECUTE_MODE_AUTO = 'auto' | ||
EXECUTE_MODE_ASYNC = 'async' | ||
EXECUTE_MODE_SYNC = 'sync' | ||
|
||
execute_mode_options = frozenset([ | ||
EXECUTE_MODE_AUTO, | ||
EXECUTE_MODE_ASYNC, | ||
EXECUTE_MODE_SYNC, | ||
]) | ||
|
||
EXECUTE_RESPONSE_RAW = 'raw' | ||
EXECUTE_RESPONSE_DOCUMENT = 'document' | ||
|
||
execute_response_options = frozenset([ | ||
EXECUTE_RESPONSE_RAW, | ||
EXECUTE_RESPONSE_DOCUMENT, | ||
]) | ||
|
||
EXECUTE_TRANSMISSION_MODE_VALUE = 'value' | ||
EXECUTE_TRANSMISSION_MODE_REFERENCE = 'reference' | ||
|
||
execute_transmission_mode_options = frozenset([ | ||
EXECUTE_TRANSMISSION_MODE_VALUE, | ||
EXECUTE_TRANSMISSION_MODE_REFERENCE, | ||
]) |
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
Oops, something went wrong.