An error occurred fetching the project authors.
- 08 Apr, 2024 2 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
-
- 02 Apr, 2024 1 commit
-
-
Jérome Perrin authored
-
- 01 Apr, 2024 4 commits
-
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
-
- 05 Mar, 2024 1 commit
-
-
Jérome Perrin authored
-
- 30 Sep, 2022 2 commits
-
-
Jérome Perrin authored
done with: find product/ bt5 -name '*.py' | xargs -n 1 sed -i 's/ *$//'
-
Jérome Perrin authored
-
- 02 Jul, 2020 1 commit
-
-
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...
-
- 08 Sep, 2017 1 commit
-
-
Łukasz Nowak authored
Before executing any code check if server side is configured to execute unrestricted code.
-
- 16 Jun, 2017 1 commit
-
-
Iliya Manolov authored
@Tyagov @luke /reviewed-on nexedi/erp5!288
-
- 14 Jun, 2017 1 commit
-
-
Iliya Manolov authored
@Tyagov @kirr When someone imported a module in Jupyter they would get a warning for every module they imported like: WARNING: Your imported from the module numpy without... WARNING: Your imported from the module datetime without... ... This fix shortens those to just one warning at the end of output like so: WARNING: You imported from the modules numpy, datetime, ... without ... /reviewed-on nexedi/erp5!278
-
- 12 Jun, 2017 1 commit
-
-
Iliya Manolov authored
@Tyagov @luke See the MR at slapos [here](nexedi/slapos!177). /reviewed-on nexedi/erp5!283
-
- 06 Jun, 2017 1 commit
-
-
Yusei Tahara authored
Disable matplotlib interactive mode to avoid "ValueError: ordinal must be >= 1" error that sometimes happens when plotting datetime index.
-
- 01 Jun, 2017 1 commit
-
-
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
-
- 18 Mar, 2017 1 commit
-
-
Yusei Tahara authored
erp5_data_notebook: Don't add Data Notebook Line if store_history is false. When polling ERP5 from Jupyter, I don't want to create a lot of Data Notebook Line.
-
- 14 Mar, 2017 1 commit
-
-
Yusei Tahara authored
erp5_data_notebook: ZBigArray may not be available, add it to well_known_unserializable_type_tuple if possible.
-
- 10 Mar, 2017 1 commit
-
-
Yusei Tahara authored
erp5_data_notebook: Don't save ZBigArray in data notebook. It may be too big that zope process may crash.
-
- 02 Mar, 2017 1 commit
-
-
Yusei Tahara authored
erp5_data_notebook: If wrong setup method was added, then remove it otherwise jupyter becomes permanent unusable state.
-
- 01 Mar, 2017 2 commits
-
-
Yusei Tahara authored
erp5_data_notebook: Don't try to serialize well known unserializable objects and ignore any exceptions happened during serialization otherwise jupyter becomes permanent unusable state.
-
Yusei Tahara authored
erp5_data_notebook: Support _repr_html_. Object such as pandas' DataFrame is rendered as HTML in Jupyter.
-
- 20 Feb, 2017 1 commit
-
-
Yusei Tahara authored
-
- 18 Feb, 2017 3 commits
-
-
Yusei Tahara authored
-
Yusei Tahara authored
-
Yusei Tahara authored
-
- 15 Feb, 2017 1 commit
-
-
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
-
- 23 Jan, 2017 2 commits
-
-
Yusei Tahara authored
This reverts commit 6b6f1fe0.
-
Yusei Tahara authored
This reverts commit 003e34c7.
-
- 21 Jan, 2017 1 commit
-
-
Yusei Tahara authored
-
- 20 Jan, 2017 1 commit
-
-
Yusei Tahara authored
-
- 17 Jan, 2017 1 commit
-
-
Yusei Tahara authored
-
- 17 Nov, 2016 1 commit
-
-
Ivan Tyagov authored
Try to import module before it is added to environment this way if user tries to import non existent module Exception is immediately raised and doesn't block next Jupyter cell execution.
-
- 16 Nov, 2016 3 commits
-
-
Ivan Tyagov authored
If user using Jupyter with ERP5 kernel is simply passing a comment inside a cell a server side error is raised thus this commit properly fixes it. Clean up & style.
-
Ivan Tyagov authored
Fix coding style and typos.
-
Ivan Tyagov authored
-
- 13 Sep, 2016 1 commit
-
-
Douglas authored
If ERP5 Jupyter kernel tried to persist an object created from a new-style class, it would crash because the object has no `_p_jar`. This makes the creation of the ObjectWriter fails. This kind of object needs to be handled by (c)Pickle. Related to bug report https://nexedi.erp5.net/bug_module/20160819-882FA2, created by @kasra. @Tyagov, please review when possible. /reviewed-on nexedi/erp5!162
-
- 18 Aug, 2016 2 commits
-
-
Douglas authored
The ImportFixer AST processor wasn't correctly handling the alias for imports. Now it takes them into consideration correctly. A test to cover this case was added.
-
Douglas authored
The old hack used to catch some exception is not required anymore. The bug is gone with upstream updates.
-