Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
erp5_rtl_support
Commits
13cbe53c
Commit
13cbe53c
authored
Feb 20, 2017
by
Yusei Tahara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Jupyter: Fix a bug. getErrorMessageForException did not support new internal structure.
parent
acf87f8c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
bt5/erp5_data_notebook/ExtensionTemplateItem/portal_components/extension.erp5.JupyterCompile.py
...teItem/portal_components/extension.erp5.JupyterCompile.py
+2
-1
No files found.
bt5/erp5_data_notebook/ExtensionTemplateItem/portal_components/extension.erp5.JupyterCompile.py
View file @
13cbe53c
...
@@ -938,6 +938,8 @@ def getErrorMessageForException(self, exception, notebook_context):
...
@@ -938,6 +938,8 @@ def getErrorMessageForException(self, exception, notebook_context):
return
{
return
{
'status'
:
'error'
,
'status'
:
'error'
,
'result_string'
:
None
,
'result_string'
:
None
,
'print_result'
:
None
,
'displayhook_result'
:
None
,
'notebook_context'
:
notebook_context
,
'notebook_context'
:
notebook_context
,
'mime_type'
:
'text/plain'
,
'mime_type'
:
'text/plain'
,
'evalue'
:
str
(
value
),
'evalue'
:
str
(
value
),
...
@@ -1146,4 +1148,3 @@ def erp5PivotTableUI(self, df):
...
@@ -1146,4 +1148,3 @@ def erp5PivotTableUI(self, df):
iframe_host
=
self
.
REQUEST
[
'HTTP_X_FORWARDED_HOST'
].
split
(
','
)[
0
]
iframe_host
=
self
.
REQUEST
[
'HTTP_X_FORWARDED_HOST'
].
split
(
','
)[
0
]
url
=
"https://%s/erp5/Base_displayPivotTableFrame?key=%s"
%
(
iframe_host
,
key
)
url
=
"https://%s/erp5/Base_displayPivotTableFrame?key=%s"
%
(
iframe_host
,
key
)
return
IFrame
(
src
=
url
,
width
=
'100%'
,
height
=
'500'
)
return
IFrame
(
src
=
url
,
width
=
'100%'
,
height
=
'500'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment