1. 07 Aug, 2020 22 commits
  2. 24 Jul, 2020 9 commits
  3. 24 Mar, 2020 1 commit
  4. 19 Mar, 2020 4 commits
  5. 11 Mar, 2020 1 commit
  6. 28 Jan, 2020 1 commit
    • Jérome Perrin's avatar
      calendar: More fixes with exceptions when not repeating · 5375936a
      Jérome Perrin authored
      The fixes from !630
      were not enough, exceptions set on days were calendar did not repeat
      were also confusing other exceptions after this.
      
      Simplify implementation a lot, instead of keeping track of the next
      exception date, start by building a set of all exceptions dates and
      use membership of this set as a criterion to skip exceptions.
      
      backport of https //lab.nexedi.com/nexedi/erp5/merge_requests/1030
      5375936a
  7. 16 Dec, 2019 2 commits
    • Jérome Perrin's avatar
      code_mirror: move editor field's inline css to separate file · a2dd4af0
      Jérome Perrin authored
      This was not valid HTML5:
      
        AssertionError: Using nu validator to parse the view "SQLMethod_view" (from erp5_core bt) with warnings displayed :
        Error: line 782 column 23 : Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.): </script>
        <style type="text/css">
          .cm
        Error: line 822 column 23 : Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.): script>
      
        <style type="text/css">
          .max
      a2dd4af0
    • Jérome Perrin's avatar
      sql_browser: use monaco editor · a1a43fef
      Jérome Perrin authored
      Use monaco editor with https://github.com/joe-re/sql-language-server
      completion provider bundled in
      https://lab.nexedi.com/jerome/monaco-editor-sql-completion-provider
      This completion provider is not perfect, but codemirror's one was not so
      good eiher. At least we can use monaco editor.
      
      Also add a quick "copy to cliboard" feature, which copies the table as
      html or in markdown format for text.
      
      And also fix Server-Timing header that was an obsolete syntax no longer
      supported by chrome.
      a1a43fef