Skip to content
Snippets Groups Projects
  1. Oct 03, 2017
  2. Sep 18, 2017
  3. Sep 12, 2017
  4. Sep 07, 2017
  5. Aug 20, 2017
  6. Jun 26, 2017
  7. Jun 09, 2017
  8. May 26, 2017
  9. May 10, 2017
    • xmo-odoo's avatar
      [FIX] P3: list -> iterable builtins (#16811) · fffaf735
      xmo-odoo authored
      In Python 3:
      
      * various builtins and dict methods were changed to return
        view/iterable objects rather than lists
      * and the separate Python 2 view/iterable builtins and methods were
        removed altogether
      
      This is problematic when using these items as list (which the happens
      repeatedly in Odoo), but more viciously when iterating *multiple times*
      over them (which also happens, which I've messed up multiple times while
      writing this, and which is a pain to debug even when you've just created
      the issue).
      
      Convert all code using these to semantics-matching cross-version
      helper functions to get the LCD behaviour between P2 and P3, and
      forbid the builtins via lint.
      
      issue #8530
      fffaf735
  10. Apr 27, 2017
    • xmo-odoo's avatar
      [FIX] builtins removed from Python 3 · 2e6a589f
      xmo-odoo authored
      * Reverse wrapper courtesy of @rco-odoo's original P3 branch
      * thin compat module stripped down from werkzeug (to augment as needed)
      
      issue 8530
      2e6a589f
  11. Feb 22, 2017
  12. Jan 13, 2017
    • Nicolas Lempereur's avatar
      [FIX] setup: server UTC timezone on windows · 9aaed653
      Nicolas Lempereur authored
      In 07bf7bf4 a fix was introduced for windows server UTC timezone.
      
      It is possible it would be helpful in some situation to also have it in
      setup/odoo (for example if odoo was installed on windows in some other
      way than the Installation bundle).
      
      opw-693764
      9aaed653
  13. Oct 24, 2016
  14. Oct 06, 2016
  15. Oct 05, 2016
  16. Sep 30, 2016
  17. Jun 10, 2016
    • Simon Lejeune's avatar
      [REF] ir_qweb: less webasset: compress output instead of minifying it · 123e51f4
      Simon Lejeune authored
      * Remove dependency on less-plugin-clean-css which distribution
        packages are broken on debian stretch and derivated.
      * Updated documentation.
      * Lessc provides a `--compress` argument that could solve this issue.
        According to the documentation at http://lesscss.org/usage/: "[...]
        Compress using less built-in compression. This does an okay job but
        does not utilise all the tricks of dedicated css compression[...]"
        However, using this argument works on lessc 2.5.3 but not on 1.4.2
        (`--compress` arg is present but seems to be break some rules
        i haven't been able to put my finger on).
      * Finally, use the minification of the StylesheetAsset that takes care
        of removing the spaces, the comments and the sourcemap with regexes.
      
      fixes issue #9113
      123e51f4
  18. Jun 07, 2016
  19. May 13, 2016
  20. Dec 18, 2015
  21. Nov 26, 2015
Loading