Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hamza
erp5-Boxiang
Commits
45e2630e
Commit
45e2630e
authored
Jun 10, 2019
by
Boxiang Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_notebook: jsmd_eval code refinement
parent
20d7ab86
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
23 deletions
+37
-23
bt5/erp5_notebook/SkinTemplateItem/portal_skins/erp5_notebook/gadget_jsmd_eval.js.js
...ateItem/portal_skins/erp5_notebook/gadget_jsmd_eval.js.js
+37
-23
No files found.
bt5/erp5_notebook/SkinTemplateItem/portal_skins/erp5_notebook/gadget_jsmd_eval.js.js
View file @
45e2630e
...
...
@@ -8,7 +8,6 @@
output
:
{
text
:
function
(
s
,
reportSideEffect
)
{
var
i
,
div
,
line_list
;
console
.
log
(
"
Inside output.text
"
);
console
.
log
(
s
);
line_list
=
s
.
toString
().
split
(
"
\n
"
);
for
(
i
=
0
;
i
<
line_list
.
length
;
i
+=
1
)
{
...
...
@@ -145,9 +144,6 @@
package_uri
=
'
default channel
'
;
}
console
.
log
(
"
Loading
"
+
package_name
+
"
from
"
+
package_uri
);
console
.
log
(
"
Loaded packages
"
);
console
.
log
(
loadedPackages
);
if
(
package_name
in
loadedPackages
)
{
if
(
package_uri
!==
loadedPackages
[
package_name
])
{
throw
new
Error
(
...
...
@@ -166,7 +162,7 @@
}
}
}
else
{
console
.
log
(
"
Unknown package
"
+
package_name
);
throw
new
Error
(
"
Unknown package
"
+
package_name
);
}
}
}
...
...
@@ -347,7 +343,9 @@
console
.
log
(
line_split
);
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
ajax
({
url
:
url
});
return
ajax
({
url
:
url
});
})
.
push
(
function
(
evt
)
{
window
[
variable
]
=
evt
.
target
.
responseText
;
...
...
@@ -398,8 +396,9 @@
function
executeMarkdownCell
(
line_list
)
{
var
renderer
=
new
marked
.
Renderer
();
return
new
RSVP
.
Promise
(
function
(
resolve
,
reject
)
{
marked
(
line_list
.
join
(
'
\n
'
),
{
renderer
:
renderer
},
marked
(
line_list
.
join
(
'
\n
'
),
{
renderer
:
renderer
},
function
(
err
,
content
)
{
if
(
err
)
{
reject
(
err
);
...
...
@@ -416,7 +415,10 @@
function
loadPyodide
(
info
,
receiveInstance
)
{
var
queue
=
new
RSVP
.
Queue
();
queue
.
push
(
function
()
{
return
ajax
({
url
:
"
pyodide.asm.wasm
"
,
dataType
:
"
arraybuffer
"
})
return
ajax
({
url
:
"
pyodide.asm.wasm
"
,
dataType
:
"
arraybuffer
"
})
})
.
push
(
function
(
evt
)
{
return
WebAssembly
.
instantiate
(
evt
.
target
.
response
,
info
);
...
...
@@ -424,7 +426,7 @@
.
push
(
function
(
results
)
{
return
receiveInstance
(
results
.
instance
);
})
.
push
(
undefined
,
function
(
error
)
{
.
push
(
undefined
,
function
(
error
)
{
console
.
log
(
error
);
});
return
queue
;
...
...
@@ -460,7 +462,7 @@
function
executePyCell
(
line_list
)
{
var
result
,
code_text
=
line_list
.
join
(
'
\n
'
);
result
=
pyodide
.
runPython
(
code_text
);
result
=
window
.
pyodide
.
runPython
(
code_text
);
renderCodeblock
(
result
);
}
...
...
@@ -468,7 +470,8 @@
window
.
pyodide
=
pyodide
(
Module
);
window
.
pyodide
.
loadPackage
=
pyodideLoadPackage
;
var
defer
=
RSVP
.
defer
(),
promise
=
defer
.
promise
;
var
defer
=
RSVP
.
defer
(),
promise
=
defer
.
promise
;
Module
.
postRun
=
defer
.
resolve
;
promise
.
then
(
function
()
{
...
...
@@ -479,6 +482,15 @@
return
defer
.
promise
;
}
Module
.
checkABI
=
function
(
ABI_number
)
{
if
(
ABI_number
!==
parseInt
(
'
1
'
))
{
var
ABI_mismatch_exception
=
`ABI numbers differ. Expected 1, got
${
ABI_number
}
`
;
console
.
error
(
ABI_mismatch_exception
);
throw
ABI_mismatch_exception
;
}
return
true
;
};
function
initPyodide
()
{
var
queue
=
new
RSVP
.
Queue
();
queue
.
push
(
function
()
{
...
...
@@ -495,7 +507,9 @@
return
pyodideSetting
();
})
.
push
(
function
()
{
return
ajax
({
url
:
'
packages.json
'
});
return
ajax
({
url
:
'
packages.json
'
});
})
.
push
(
function
(
evt
)
{
return
JSON
.
parse
(
evt
.
target
.
response
);
...
...
@@ -506,7 +520,7 @@
window
.
pyodide
.
_module
.
packages
=
json
;
return
;
})
.
push
(
undefined
,
function
(
error
)
{
.
push
(
undefined
,
function
(
error
)
{
console
.
log
(
error
);
});
return
queue
;
...
...
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