Brian E. Granger
29d67ed8a3
Merge pull request #6168 from SylvainCorlay/once-displayed
...
once-displayed
12 years ago
Brian E. Granger
372507e3f1
Merge pull request #6128 from jasongrout/widget-trait-serialization
...
Widget trait serialization
12 years ago
Sylvain Corlay
cd7942eb06
renaming once_displayed into after_displayed
12 years ago
Jason Grout
8fb0ae4d36
Change serialize/deserialize to to_json/from_json
12 years ago
Min RK
2fe0687097
Merge pull request #6149 from jasongrout/less-upgrade
...
Less upgrade
12 years ago
Matthias Bussonnier
cb810bad86
Merge pull request #6190 from minrk/bootstrap-shim
...
add bootstrap shim for require
12 years ago
MinRK
d345546d15
add bootstrap shim for require
...
it was possible for bootstrap js to load before jquery,
causing failures in the dashboard.
12 years ago
MinRK
a643de41d8
test coalesced output in js
12 years ago
MinRK
e17c636e18
coalesce stream output in the notebook
...
This merges consecutive outputs on one stream into a single output.
Essentially, it applies the same merging that we do visually to the content stored in the notebook document.
This results in a massive performance improvement in load-time and storage size
for notebooks that have many calls to `sys.stdout.flush()`.
12 years ago
Jason Grout
97141c6bca
Simplify the code for picking json serialization functions to expose the logic better
12 years ago
Jason Grout
4c5f4e750a
Compile less files
12 years ago
Jason Grout
33f256a195
abstract hard-coded style values to be variables for different theming
12 years ago
MinRK
112c4083e9
add comments for style blocks in less
...
separates each component into individual line in compiled css,
reducing some churn in minified css files.
12 years ago
Jason Grout
02a8ab2cf5
Upgrade less and generate sourcemap files
12 years ago
Matthias Bussonnier
f3e599e0c4
Merge pull request #6160 from parleur/patch-2
...
Span in CellToolBar instead of div
12 years ago
Matthias Bussonnier
e4e50628c0
Merge pull request #6127 from minrk/fix-edit-md
...
cell toolbar and modal dialog fixes
12 years ago
Jonathan Frederic
c1c03a1c83
Merge pull request #6153 from jasongrout/container-children-arg
...
Make Container widgets take children as the first positional argument
12 years ago
MinRK
98ac874131
cell toolbar and modal dialog fixes
...
- name conflict in modal
- cell.cell_type in cell toolbar
prevented edit metadata from working properly.
12 years ago
Min RK
3e66b9f52c
Merge pull request #6174 from Carreau/pagemain
...
remove pagemain.js
12 years ago
Min RK
70bc0704c2
Merge pull request #6099 from takluyver/check-nbservers-pid
...
Check process existence when listing nbserver processes
12 years ago
Matthias BUSSONNIER
17afb5a71f
remove pagemain.js
...
It does not seem to be usefull anymore.
The different main.js of /tree /notebook /etc do create an instance of
`page` themselves, error pages do have hardcoded styles that show header
and sites.
12 years ago
Tarun Gaba
fb540c52f5
Added jquery in define
12 years ago
Sylvain Corlay
a2e9d90bd0
incorrect comment
12 years ago
Sylvain Corlay
8bc4ea37a1
unnecessary context variable specify
12 years ago
Sylvain Corlay
1eb2a30efb
once-displayed
12 years ago
Jason Grout
3235f42d12
Container assumes the children attribute is not None
...
Thanks to @SylvainCorlay for pointing this out.
12 years ago
Pierre Gerold
ac6808b884
Update celltoolbar.js
...
I want to write an extension with multiple select bar. They are supposed to be displayed inline, not in block mode. The better way is to use span instead of div.
12 years ago
Jason Grout
06084e996c
Change serialization terminology to serialize/deserialize
12 years ago
Jason Grout
eed0715a09
Prepend a sentinel value to model ids to distinguish them from normal UUIDs (from Sylvain Corlay).
12 years ago
Jason Grout
14f3897b56
Make Container widgets take children as the first positional argument
...
This makes creating containers less cumbersome: Container([list, of, children]), rather than Container(children=[list, of, children])
12 years ago
MinRK
792f21be5a
remove rackcdn https workaround for mathjax cdn
...
cdn.mathjax.org works over https now
12 years ago
Min RK
748bcd67e0
Merge pull request #6120 from rgbkrk/no_iframe_embedding
...
Only allow iframe embedding on same origin by default.
12 years ago
Jonathan Frederic
20045a2f85
Merge pull request #6115 from SylvainCorlay/widget-area-show
...
Instances of WidgetView do not trigger widget_area.show anymore.
12 years ago
Jason Grout
0c72fddaba
Update widget serializer/unserializer to allow custom serialization on a trait-by-trait basis.
...
Serializers/unserializers are given as the trait metadata keys `to_json` and `from_json`.
12 years ago
rgbkrk
88e52b2746
Only allow iframe embedding on same origin.
12 years ago
Min RK
7ce5bb8a37
Merge pull request #6026 from takluyver/kernelspec-rest-launching
...
Kernelspecs in REST API for kernels and sessions
12 years ago
Thomas Kluyver
5afc070910
Add default_kernel_name class level variable
12 years ago
Adam Hodgen
c695ba45bc
Remove / from route of TreeRedirectHandler.
...
When base_url is set, navigating to http://{url}/{base_url} returns 404
This is due to the TreeRedirectHandler only picking up
http://{url}/{base_url}/ and the trailing slash handler being set to
{base_url}/.*/.
This change will cause http://{url}/{base_url} to correctly redirect to
http://{url}/{base_url}/tree , as expected.
12 years ago
Sylvain Corlay
70cacc642a
Solving #5997 : instances of WidgetView (that are not instances of DOMWidgetView) do not trigger widget_area.show anymore.
12 years ago
Thomas Kluyver
c37acf2ae7
Fix JS syntax
12 years ago
Thomas Kluyver
97c24d2920
Delete session rather than killing kernel in test cleanup
12 years ago
Thomas Kluyver
6efbe46b73
Update JS for kernels and sessions APIs
12 years ago
Thomas Kluyver
806432072a
Add kernel name to sessions REST API
...
Also, some refactoring so that the relationship between session, kernels
and notebooks is managed in the SessionManager, not in the HTTP
handlers.
12 years ago
Thomas Kluyver
ae6309c122
Add support for different kernel specs to kernels REST API
12 years ago
Jonathan Frederic
904ed66bc2
Updated custom.js template to reflect IPython namespace changes
12 years ago
Jonathan Frederic
a226bd2d6e
Fixed cell toolbars
12 years ago
Jonathan Frederic
b15633a89e
Fix all the tests
12 years ago
Jonathan Frederic
2478fac032
More requirejs fixes
12 years ago
Jonathan Frederic
ee76005bc2
More review changes
12 years ago
Jonathan Frederic
669db572f2
Fix some dialog keyboard_manager problems
12 years ago