Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add POST support to WFS GetFeature (Issue #439) #706

Merged
merged 27 commits into from
Nov 26, 2020

Commits on Jul 22, 2020

  1. adds quick workaround to make filter post request

    Small change to allow testing the use of a xml
    query via post.
    f-PLT committed Jul 22, 2020
    Configuration menu
    Copy the full SHA
    ce030f7 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2020

  1. Configuration menu
    Copy the full SHA
    1343e57 View commit details
    Browse the repository at this point in the history
  2. Adds documentation and unimplemented args

    Unimplemented args have been added for consistency with
    other getfeature functions qui a log warning
    f-PLT committed Aug 10, 2020
    Configuration menu
    Copy the full SHA
    87dead0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c5241d1 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2020

  1. Configuration menu
    Copy the full SHA
    dbd0b78 View commit details
    Browse the repository at this point in the history
  2. removes print command

    f-PLT committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    8e4660a View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2020

  1. Configuration menu
    Copy the full SHA
    4c4ae39 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e6c7e1c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f618a7c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    942129c View commit details
    Browse the repository at this point in the history
  5. Formatting

    f-PLT committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    48c24b4 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2020

  1. Configuration menu
    Copy the full SHA
    b771823 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f10b50 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b339ef5 View commit details
    Browse the repository at this point in the history
  4. Removes repetitive condition

    f-PLT committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    d612439 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b56a1c1 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2020

  1. Removes unused imports

    f-PLT committed Sep 14, 2020
    Configuration menu
    Copy the full SHA
    2e33184 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. Add docstring to postrequest.py

    f-PLT committed Sep 15, 2020
    Configuration menu
    Copy the full SHA
    6a7735e View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2020

  1. Configuration menu
    Copy the full SHA
    a688027 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e9bd373 View commit details
    Browse the repository at this point in the history
  3. Remove spaces from tag names

    f-PLT committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    f96da4e View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2020

  1. add test for stored query

    f-PLT committed Sep 22, 2020
    Configuration menu
    Copy the full SHA
    91fc15f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    17e9e5d View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2020

  1. Configuration menu
    Copy the full SHA
    4943782 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2020

  1. Moved propertyname='*' from def to inside method

    For WFS 1.1.0
    With Post method now being available, having propertyname='*' as a
    default value  causes problems for the post request. Default value
    is now None, just like for 2.0.0.
    
    Since I don't know if there are cases where this default was necessary,
    added a condition when `method=get` to set propertynames to '*' is
    it's not assigned a value.
    f-PLT committed Nov 24, 2020
    Configuration menu
    Copy the full SHA
    c64de7c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9ba9b1f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8fb987b View commit details
    Browse the repository at this point in the history