An error occurred fetching the project authors.
  1. 08 Apr, 2024 2 commits
  2. 02 Apr, 2024 1 commit
  3. 01 Apr, 2024 4 commits
  4. 05 Mar, 2024 1 commit
  5. 30 Sep, 2022 2 commits
  6. 02 Jul, 2020 1 commit
    • Arnaud Fontaine's avatar
      ZODB Components: Migrate Products.ERP5Type.Log from filesystem. · 48c45fbd
      Arnaud Fontaine authored
      testUpgradeInstanceWithOldDataFs: Upgrade erp5_upgrader too (it was in keep
      list until now) as old Data.fs contains ERP5UpgraderUtils Extension with import of
      Products.ERP5Type.Log. Although, erp5_upgrader should probably be automatically
      upgraded before even starting the upgrade...
      48c45fbd
  7. 08 Sep, 2017 1 commit
  8. 16 Jun, 2017 1 commit
  9. 14 Jun, 2017 1 commit
  10. 12 Jun, 2017 1 commit
  11. 06 Jun, 2017 1 commit
  12. 01 Jun, 2017 1 commit
    • Kirill Smelkov's avatar
      erp5_data_notebook: Add FIXME about ZBigArray not being serializable · d8924d48
      Kirill Smelkov authored
      ZBigArrays were omitted from being saved in notebooks in 5fb16acd
      (erp5_data_notebook: Don't save ZBigArray in data notebook. It may be
      too big that zope process may crash.).
      
      However since ZBigArrays are regular ZODB objects with persistent
      references to other ZODB objects there is no reason for us not to be able to
      serialize them.
      
      Add corresponding FIXME with link to more context.
      
      /reviewed-by TrustMe
      d8924d48
  13. 18 Mar, 2017 1 commit
  14. 14 Mar, 2017 1 commit
  15. 10 Mar, 2017 1 commit
  16. 02 Mar, 2017 1 commit
  17. 01 Mar, 2017 2 commits
  18. 20 Feb, 2017 1 commit
  19. 18 Feb, 2017 3 commits
  20. 15 Feb, 2017 1 commit
    • Iliya Manolov's avatar
      Fixed multiple import errors in Jupyter · 99b525a1
      Iliya Manolov authored
      Copypasta from the other MR [here](!230 (comment 22890)). I found a problem and tried again from scratch. I will close that Merge Request once this one has been approved...
      
      
      
      @Tyagov
      Currently, when running a Jupyter notebook using some types of imports leads to errors. With this fix the following ways to import things are working:
      ```python
      import string                  # worked before fix
      import string as s             # worked before fix
      from string import ascii_lowercase             # worked before fix
      from string import ascii_lowercase, ascii_uppercase, digits           # fixed - used to import only the first thing
      from string import ascii_lowercase as a, ascii_uppercase as b         # fixed - used to give "Error at Server Side"
      from string import *                                                  # fixed - used to give "Error at Server Side"
      from string import Template                                           # works
      ```
      This was happening because after executing every cell the code would move between SlapOS nodes and lose the imported modules/classes/stuff. This was partially fixed before, but this fix should cover all use cases. I have also added tests for these cases in testExecuteJupyter...
      
      /reviewed-on !233
      99b525a1
  21. 23 Jan, 2017 2 commits
  22. 21 Jan, 2017 1 commit
  23. 20 Jan, 2017 1 commit
  24. 17 Jan, 2017 1 commit
  25. 17 Nov, 2016 1 commit
  26. 16 Nov, 2016 3 commits
  27. 13 Sep, 2016 1 commit
  28. 18 Aug, 2016 2 commits