Min RK
a5feb922a3
Merge pull request #4774 from Carreau/emit-output
...
emit event on appended element on dom
12 years ago
Matthias BUSSONNIER
03b5e0b2e0
put OutputArea map at the end
12 years ago
MinRK
1b74ee0c3e
note v4.1 msg spec change in clear_output handler
12 years ago
Brian E. Granger
7c722d4b6c
Merge pull request #4824 from minrk/sign-notebooks
...
sign notebooks
12 years ago
Brian E. Granger
ffe92842fc
Merge pull request #4853 from minrk/imgmd
...
fix setting image height/width from metadata
12 years ago
Matthias BUSSONNIER
9d54212f17
reorder class properties
12 years ago
Matthias BUSSONNIER
8c57e9e788
Fixme comment + whatsnew
12 years ago
Matthias BUSSONNIER
aa5477beb7
fix Brian and Min comment
12 years ago
Matthias BUSSONNIER
9f2203340a
emit event when mimetype are append to output area.
12 years ago
MinRK
f14f856edb
sign notebooks
12 years ago
MinRK
0d1536c390
use jQuery attr instead of setAttribute
...
when appending images.
This was an optimization with no apparent performance benefit.
12 years ago
MinRK
f02b5bef21
fix setting image height/width from metadata
12 years ago
Matthias BUSSONNIER
149867e74c
some $.html( -> $.text(
...
Thoses that are obvious and easy to fix.
we shoudl have I think a travis test that grep for .html( and return
less than 20 lines :-)
12 years ago
MinRK
829495c6b9
validate output types in append_output
...
validates from files, as well as from kernels
12 years ago
MinRK
19e4b74678
revert output area changes
12 years ago
MinRK
d6deaaaf1f
protect javascript from invalid mime-type data
...
everything is a string, if anything else is sent,
drop it so it doesn't show up in the notebook document.
12 years ago
Paul Ivanov
5209e82a96
fix mathjax typesetting
12 years ago
Paul Ivanov
ea8a7745d8
love javascript.
...
it gives me many opportunities to be sarcastic in my commit messages
12 years ago
Paul Ivanov
ebe9c20ca2
fix small bug in dropping metadata
12 years ago
Paul Ivanov
0e72314379
minor cleanup
12 years ago
Paul Ivanov
a001003d67
remove dynamic keyword, handling it in fromJSON
...
After discussing this in person with @minrk, we decided instead of
passing this parameter around and special-casing javascript, it's easier
to just remove javascript from the display_order for the duration of
fromJSON, since that's the only place where dynamic was set to False,
and then put it back in at the end of the fromJSON call.
12 years ago
Paul Ivanov
f147e50545
hardcode type into the mimetype specific functions
12 years ago
Paul Ivanov
e094fca4ef
dispatch on mime type for append methods
12 years ago
Paul Ivanov
a6be6e9821
love them semicolons
12 years ago
Paul Ivanov
b4c9df8ecc
fix stream saving
12 years ago
Paul Ivanov
a7ca25a602
fix toJSON/fromJSON renaming
12 years ago
Paul Ivanov
d4ab0f4466
unify key renaming for to/from json short keys
12 years ago
Paul Ivanov
ee9ecc5548
convert back to short names when writing to JSON
12 years ago
Paul Ivanov
6089570dec
stop using convert_to_mime_types
...
the in-memory representation and the messsage spec now all use mimetype
names for the JSON keys.
12 years ago
Paul Ivanov
d26ce5ffa2
fix png inlining
12 years ago
Paul Ivanov
7aaa3a9203
convert short names like 'png' to mimetype names
12 years ago
Paul Ivanov
b415af3dba
align with current master
12 years ago
Paul Ivanov
ef60127e6e
use mime type in memory
12 years ago
Paul Ivanov
e8aa99b603
check mime-keyed metadata first, then top level
12 years ago
MinRK
d9e57a5b6a
passthrough unrecognized output mime-types
...
preserves the bad mime-type -> short name conversion for supported types,
but allows passthrough for additional mime-types,
so at least data is not discarded.
12 years ago
Paul Ivanov
459b5ea7ad
use non-mimetype-keyed metadata in the outputarea
12 years ago
Paul Ivanov
2e72ab3cd6
make output code not drop non-mimetype-keyed json
12 years ago
Brian E. Granger
a07eabe7c5
Fix raw_input.
12 years ago
Brian E. Granger
b44d535329
HTML and JavaScript output KBM event handling.
12 years ago
Brian E. Granger
32bd409fc1
Fixing various output related things:
...
This was inspired by PR #4105 .
* JavaScript output no longer requires calling container.show()
* Added output_javascript CSS class that has zero height when
empty.
* JavaScript error messages are properly indented with the prompt
area.
13 years ago
Matthias Bussonnier
35475a8841
add semi colon
13 years ago
Matthias BUSSONNIER
048ccde41b
get rid of most slowdown at notebook loading.
...
1) Do not setOption('mode',new_mode) on CM if new and old mode are the
same. It triggert **a lot** of calculation of bounding box in the
end.
2) Do **not** select cell when loading the notebook it triggers
**a lot** of CM even that check visible things and so on and so
forth. So add a option to add_cell_at_index not to select it
3) jQuery $.attr has some magics, but has a slight overhead on
real native ELEM.setAttribute DOM method. Seem slight improvement
when loads of PNGs on one page
13 years ago
Paul Ivanov
73fd15ae36
Merge pull request #4250 from pablooliveira/wrap-svg-in-iframes
...
outputarea.js: Wrap inline SVGs inside an iframe
13 years ago
Min RK
6368dbb6f3
Merge pull request #4444 from Carreau/css-cleaning
...
CSS cleaning
- vbox / hbox via classes
- adds notebook/style_noapp.less, which excludes body/toolbar/menubar stuff not necessary in embedded contexts
13 years ago
Jonathan Frederic
1a5e26dd5a
Removed left over log statements
13 years ago
Jonathan Frederic
96f5cc942b
Fix blank space added by included Javascript on page refresh or notebook load
13 years ago
Pablo de Oliveira
8253998833
Set both height and width using css
13 years ago
Pablo de Oliveira
fcbd398ad2
Preserve layout for large isolated objects
13 years ago
Pablo de Oliveira
c72d4fead0
Notebook isolated content: fix firefox extra-space issue
...
In Firefox, if the iframe initial height is set to 0, the reported
scrollHeight is too large. Workaround: set the initial height to 1.
13 years ago
Pablo de Oliveira
a8e39d6acc
Support isolated metadata tag for any content
...
Any content whose metadata contains an `isolated` tag will be isolated
from the rest of the document.
The current implementation wraps isolated content into an iframe.
13 years ago