Skip to content
Snippets Groups Projects
  1. Nov 14, 2017
    • Benjamin Bertrand's avatar
      Add validators for first and last IP in Network · 782709a3
      Benjamin Bertrand authored
      The database constraints will catch the same error
      (and raise an IntegrityError).
      
      Having some validation at the model level allows to display nicer error
      messages.
      We use CSEntryError exception and not ValidationError so that it can be
      used both by the API and views.
      782709a3
    • Benjamin Bertrand's avatar
      Handle CSEntry exceptions in admin views · e1ba3816
      Benjamin Bertrand authored
      Allow to use the same CSEntryError exceptions used for validation
      in the API and admin views.
      e1ba3816
    • Benjamin Bertrand's avatar
      Disable flask-admin unique validator · b4cf45ee
      Benjamin Bertrand authored
      Trying to insert an invalid IP or network address raises an exception.
      This is due to the unique validator from flask-admin that queries the
      database.
      
      The unique validator is automatically added for columns with
      unique=True. The only way to disable it is to monkey patch the Unique
      class.
      This allows the field validator to catch invalid format.
      
      IntegrityError are already catched anyway.
      b4cf45ee
    • Benjamin Bertrand's avatar
      Fix admin interface · 8dc4a249
      Benjamin Bertrand authored
      - replace TextAreaField by StringField for several Text columns
      - add filter to replace empty string by None on optional Text and INET
        fields
      8dc4a249
  2. Nov 13, 2017
  3. Nov 10, 2017
  4. Nov 07, 2017
  5. Nov 03, 2017
  6. Oct 17, 2017
  7. Sep 29, 2017
  8. Sep 26, 2017
  9. Sep 25, 2017
  10. Sep 21, 2017
  11. Sep 17, 2017
  12. Sep 09, 2017
  13. Sep 08, 2017
  14. Sep 07, 2017
Loading