1. 09 Oct, 2018 2 commits
  2. 03 Oct, 2018 3 commits
  3. 02 Oct, 2018 4 commits
  4. 01 Oct, 2018 3 commits
  5. 28 Sep, 2018 6 commits
  6. 26 Sep, 2018 3 commits
  7. 25 Sep, 2018 5 commits
  8. 24 Sep, 2018 1 commit
  9. 21 Sep, 2018 9 commits
  10. 20 Sep, 2018 4 commits
    • Thomas Gambier's avatar
      [erp5_officejs] Revive codemirror app for javascript only · bcec7244
      Thomas Gambier authored
      Codemirror app is now using the same mechanism as text_editor. For now, it has
      exactly the same features as text editor but it will create "Web Script"
      instead of "Web Page" documents. The codemirror mode is forced to "javascript"
      and the content type of the document if forced to "application/javascript".
      bcec7244
    • Ayush Tiwari's avatar
      DiffTool: removePropertyList function should be working same for both ERP5... · 38731317
      Ayush Tiwari authored
      DiffTool: removePropertyList function should be working same for both ERP5 object and dictionaries of ERP5 object properties
      
      Before we use to neglect removing some properties from ERP5 object properties' dict, which led to error in case of use
      of DiffTool for Historical Revisions dict. Thus, its important for removeProperties function to act similar in both
      cases.
      
      Also, add `base_data` in attribute_set to be removed because `data`, `base_data` and `text_content` are same
      38731317
    • Ayush Tiwari's avatar
      ERP5Type/patches: Sort before trying to diff tuples in DiffTool · df17ebbc
      Ayush Tiwari authored
      This is essential to have better aesthetic of Deepdiff diff for tuples.
      In general, we treat iterables as long string so as to bypass the complicated
      diff for iterables provided by DeepDiff, but for tuples this was creating a
      problem as it was not possible to understand the diff properly.
      
      Hence, by soting them, we get more understandable diff for tuples.
      
      Also, there is no need to override `__diff_tuple` function as it is itself
      dependent on `__diff_iterable` which we already override.
      df17ebbc
    • Ayush Tiwari's avatar
      [erp5_core + erp5_ui_test] Use view_mode_listbox in DiffTool · a71d577e
      Ayush Tiwari authored
      Following convention, it makes more sense to use view mode for DiffTool view.
      Also, we don't need selection as of now.
      
      Also, update the tests
      a71d577e