Edgewall Software

Changes between Version 1 and Version 3 of Ticket #12426


Ignore:
Timestamp:
Apr 8, 2016, 3:38:16 AM (8 years ago)
Author:
Ryan J Ollos
Comment:

Fixed in [14693].

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12426

    • Property Status assignedclosed
    • Property Resolutionfixed
  • Ticket #12426 – Release Notes

    v1 v3  
     1* Added `as_bool` to `_RequestArgs`, which converts the value to a boolean or returns a default if an exception is raised.
     2* Added `as_int` to `_RequestArgs`, which converts the value to an int or returns a default if an exception is raised.
     3* Added `getbool` to `_RequestArgs`, which gets the value as a boolean or raises an `HTTPBadRequest` exception on invalid input.
     4* Added `getint` to `_RequestArgs`, which gets the value as an integer or raises an `HTTPBadRequest` exception on invalid input.
     5* Added `require` to `_RequestArgs`, which raises an `HTTPBadRequest` exception if the parameter is not in the dictionary.