1. 13 Sep, 2019 9 commits
  2. 12 Sep, 2019 5 commits
  3. 11 Sep, 2019 2 commits
  4. 10 Sep, 2019 4 commits
  5. 09 Sep, 2019 17 commits
  6. 06 Sep, 2019 3 commits
    • Romain Courteaud's avatar
      [erp5_web_renderjs_ui] Set listbox line background opacity · b6aa35ff
      Romain Courteaud authored
      To allow viewing the wallpaper
      b6aa35ff
    • Boris Kocherov's avatar
      [erp5_officejs] Increase replication error verbosity · a3773fa4
      Boris Kocherov authored
      User can send the error page to allow understanding the issue.
      a3773fa4
    • Romain Courteaud's avatar
      [erp5_hal_json_style/erp5_web_renderjs_ui] Render the form directly after a... · 264ded5c
      Romain Courteaud authored
      [erp5_hal_json_style/erp5_web_renderjs_ui] Render the form directly after a successfull call to Base_edit
      
      This decreases the query number from 2 (POST to Base_edit -> redirect + GET to render the form) to 1 (POST to Base_edit -> render the form) and so improve the speed of ERP5JS.
      
      To achieve this, apply so fixed in ERP5JS:
      * rerender the panel/header after Base_edit (router is not called in such case, so, it must be manually called)
      * fetch the page title from the form calculation (as the document context is not recalculated, only the form)
      * force deleting the current field values, used by the relation field listbox search
      
      This commit also force the full page refresh when diplaying a new document, in order to prevent keeping field values from the previous one (so bugs used to occur when using the previous/next document pagination).
      
      Thanks to Tristan Cavelier for his work on this topic.
      264ded5c