MinRK
22486461f3
use ipc for notebook js tests
...
on linux only
This ought to prevent EADDRINUSE errors in the kernel.
12 years ago
Thomas Kluyver
8c1c18461c
Fix a couple of static analysis warnings
12 years ago
Thomas Kluyver
3698563794
Make hidden directories configurable
12 years ago
Thomas Kluyver
c75d4e9962
Don't attempt locale-aware sorting for now.
...
On Python 2, locale.strxfrm() can't handle unicode.
12 years ago
Thomas Kluyver
4fe9f8d057
Case insensitive sorting in the dashboard.
...
Closes gh-5151
12 years ago
Thomas Kluyver
c1e8ddc64e
Hide directories beginning with _ from the dashboard.
...
Closes gh-5152
12 years ago
Paul Ivanov
f8ab13b675
Merge pull request #5215 from ivanov/running-kernels
...
Dashboard "Running" Tab
12 years ago
Paul Ivanov
938f4bdfc4
small whitespace cleanup, renamed drag_info
...
in the dashboard, I've renamed drag_info to notebook_list_info, so
applying style to notebook_list_info and running_list_info can be done
in one place.
12 years ago
Min RK
1ff8d9153a
Merge pull request #5239 from takluyver/coverage-exclude-tests
...
Fix exclusion of tests directories from coverage reports
12 years ago
Paul Ivanov
eb4e674598
remove redundant checks in code
12 years ago
Paul Ivanov
14239c01e4
use explicit running header name + jquery's toggle
12 years ago
Thomas Kluyver
40ac479ae1
Merge pull request #5203 from minrk/test-log-warn
...
capture some logging/warning output in some tests
12 years ago
Thomas Kluyver
f8fbd82864
Fix exclusion of tests directories from coverage reports
12 years ago
Jonathan Frederic
0884716a7d
Re-added widget textbox blur fix FF
12 years ago
Jonathan Frederic
bfc51c2a29
Final touches?
12 years ago
Jonathan Frederic
c5fb037e41
Reorg index and focus_editor params on edit_mode func
12 years ago
Jonathan Frederic
048ca30b0c
Remove fixes that are implemented correct in new CM
12 years ago
Brian E. Granger
e847a31348
Always refresh the CM editor upon TextCell unrender.
12 years ago
Jonathan Frederic
b976804051
Moved edit_mode canceling logic back into cell.
12 years ago
Jonathan Frederic
ff37fb7a36
Standardized comments and removed last logs
12 years ago
Jonathan Frederic
64ae25508d
Removed change that is no longer needed
12 years ago
Jonathan Frederic
70086d352f
s/unfocus/blur
12 years ago
Jonathan Frederic
c7860d8bc8
Post in person review
...
Removed logic for reverse ordered events
Removed almost all of the log statements
Removed list for should unfocus callbacks
Removed all the logic in focus_editor
Only call focus_editor if the keyboard was used to enter edit mode
12 years ago
Jonathan Frederic
3595c099c2
Fixed rebase problems
12 years ago
Jonathan Frederic
10d79a9102
Added cell unfocus event canceller API
12 years ago
Jonathan Frederic
a6aaa8a886
Use is_focused for element kbman removal event
12 years ago
Jonathan Frederic
6f7c502157
Fixed lots of bugs
...
Half overhaul of notebook focus events...
12 years ago
Jonathan Frederic
206d35a89e
DEBUG
...
Added lots of log calls and a couple small 'fixes' (attempts)
12 years ago
Jonathan Frederic
7913305312
jshint
12 years ago
Thomas Kluyver
0059c317c3
Merge pull request #5216 from minrk/notebook-dir-cli
...
fixup positional arg handling in notebook app
12 years ago
Min RK
4038421da6
Merge pull request #5221 from jdfreder/ctuple
...
Change widget children List to Tuple.
12 years ago
MinRK
bdde544d47
don't forget base_url when updating address bar in rename
12 years ago
Paul Ivanov
7d1da4c550
refer to notebooks, not kernels.
12 years ago
MinRK
d8b6a1a0ba
don't validate ContainerWidget.children
...
just use a plain Tuple, so we don't have to define a new Trait
12 years ago
Paul Ivanov
b74b10e308
added IPython.session_list
...
before this, kernel_list and notebook_list each fetched and held onto
their own copy of the sessions.
12 years ago
Jonathan Frederic
6c1ef48f1a
Merge pull request #5173 from jdfreder/movewidgets
...
Moved widget files into static/widgets/*
12 years ago
MinRK
cc1ba8b1f7
remove incorrect is instance check in children_changed
12 years ago
MinRK
c89ec19fca
don't check shape of ContainerWidget.children
12 years ago
Jonathan Frederic
7855de2f13
s/CTuple/Tuple
12 years ago
Jonathan Frederic
dedbc3b0e1
Changed children list to CTuple.
...
Also removed some unused refences in the widget code
and added support for tuples in the pack/unpack code.
12 years ago
Min RK
0117b587ab
Merge pull request #4985 from damianavila/closebrackets
...
Enable autoCloseBrackets in CodeMirror by default.
12 years ago
MinRK
bb7f27541f
write config instead of direct assignment from the command-line
...
Gross.
12 years ago
MinRK
6e09314027
fixup positional arg parsing in notebook app
...
- `ipnb .` triggers override of sub-config, even when the parent isn't changed
- `ipnb /path/nb.ipynb` sets notebook_dir to `/path`
12 years ago
Paul Ivanov
06c689caa3
remove reiterated repetitively redundant "actively"
12 years ago
Paul Ivanov
a2b9c75e93
don't double-join the notebook path
12 years ago
Paul Ivanov
a27168ae3b
refresh of Notebook list should reload sessions
12 years ago
Paul Ivanov
af90cd8c62
fix typo in method name
12 years ago
Paul Ivanov
cb1bb62272
ok, Running tab is working now
12 years ago
Min RK
c73acb300f
Merge pull request #5200 from Carreau/jinja-no-cache
...
Allow to pass option to jinja env
12 years ago
Matthias BUSSONNIER
816df5bb34
Allow to pass option to jinja env
...
Mainly to pass cache_size=-1 while developping not to cache templates
12 years ago
zah
439003d709
Children fire event
...
Now when a container widget is displayed, the _handle_displayed method
of each of its children is fired.
12 years ago
MinRK
e02308e436
capture logging in a few tests
...
this could probably be made more general,
but these were the two places I noticed log output.
12 years ago
Fernando Perez
371afec677
Merge pull request #5112 from minrk/completion-band-aid
...
Band-aid for completion in the notebook: not the ideal solution, but will have to do the job for now so that typing while completing works.
closes #4860
12 years ago
Brian E. Granger
708c30c912
Merge pull request #5136 from minrk/interact-default
...
set default value from signature defaults in interact
12 years ago
Brian E. Granger
edb8d68331
Merge pull request #5132 from minrk/oops-pdf-transform
...
remove application/pdf->pdf transform in javascript
12 years ago
Brian E. Granger
7a35e2a0be
Merge pull request #5116 from minrk/os_path
...
reorganize who knows what about paths
12 years ago
Jonathan Frederic
28423647a2
Updated require references to point to new files
12 years ago
Jonathan Frederic
e0ba52c802
Moved widget files into static/widgets/*
...
Since they do not depend on anything ntoebook related
12 years ago
Min RK
612acd2e08
Merge pull request #5170 from jdfreder/widget-throttle-trait
...
Added msg_throttle sync=True widget traitlet
12 years ago
MinRK
386274488d
don't create notebook_dir if it doesn't exist
12 years ago
MinRK
d37780c6a6
use config instead of App.instance to propagate notebook_dir
...
Should behave more logically (I hope).
12 years ago
MinRK
f9e8824fef
use NotebookManager APIs in nbconvert handler
12 years ago
MinRK
cb25736a24
reorganize who knows what about paths
...
- add NotebookApp.notebook_dir
- add KernelManager.root_dir
- remove NotebookManager.notebook_dir, move to FileNBM.notebook_dir
Default value for KM.root_dir and fNBM.notebook_dir is NotebookApp.notebook_dir, but they can be configured separately.
SessionManager passes the API path to KernelManager,
which is responsible for turning it into the kernel's cwd.
12 years ago
Brian E. Granger
eda4569099
Merge pull request #5037 from jdfreder/ff-widget-align
...
FF Fix: alignment and scale of text widget
12 years ago
Jonathan Frederic
ef3f61f906
Use set_rendered to set the error msg of the cell.
12 years ago
Jonathan Frederic
946212d5fa
Treat set_rendered as unsafe.
12 years ago
Jonathan Frederic
407fc0a017
s/with with/with
12 years ago
Jonathan Frederic
6a224d131b
Move todos into set_rendered
12 years ago
MinRK
62f318c777
undo failed changes
...
before raising
otherwise, invalid values were still accepted
12 years ago
MinRK
37cb0fbdee
remove websocket url
...
websockets should follow the kernel URL
(normal behavior is unchanged, only unused configurability is removed)
12 years ago
MinRK
b51cc50357
further tests for default values in interact
...
both valid and invalid
12 years ago
MinRK
acfc2d5308
set default value from dict
12 years ago
Paul Ivanov
3b109de563
minimal KernelList
12 years ago
Brian E. Granger
4bd315bda0
Merge pull request #5147 from minrk/static-url-version
...
Some template URL changes
12 years ago
Paul Ivanov
b3c1164798
put Running tab on the page
12 years ago
Brian E. Granger
db4960769b
Merge pull request #5100 from minrk/base_kernel_url
...
remove base_kernel_url
12 years ago
Jonathan Frederic
ad03225cf6
Audit .html() calls take #2
12 years ago
Jonathan Frederic
82bbcf166d
Fixed .. typo
12 years ago
Jonathan Frederic
0e56051a01
Added parentheses to emphasize order of op.
12 years ago
Jonathan Frederic
0eebd9e05b
Added msg_throttle sync=True widget traitlet
12 years ago
Jonathan Frederic
cecf7cf06f
Fixed radio button selector for new radio button class
12 years ago
Jonathan Frederic
d1d863af86
fab css
12 years ago
Jonathan Frederic
3b8beec541
Added a class for RadioButtons container
...
with appropriate top padding...
12 years ago
Jonathan Frederic
033ea6d88c
Added bottom margin to text widget
12 years ago
Min RK
41275b062a
Merge pull request #5089 from rgbkrk/azure_out
...
Remove legacy azure nbmanager
12 years ago
Paul Ivanov
efc01b8854
remove append_json reference
...
we never had such a method
12 years ago
Paul Ivanov
7b5c834649
fix IPython typo, closes #5155
12 years ago
MinRK
69cba774d9
Some template static_url tweaks
...
- don't try to include version in static_urls that don't point to files
- use full static_urls (with extension) for backbone and underscore, so version can be computed
closes #5141
12 years ago
Jonathan Frederic
a7fb5e1e55
Merge pull request #5114 from minrk/empty-button
...
use non-breaking space for button with no description
12 years ago
MinRK
e91ef370dd
remove no-op adding abbreviations from always-empty dict
12 years ago
MinRK
8a2d92010a
set default value from signature defaults in interact
...
If available, use the default value from the signature for the initial condition,
when using range/choice abbreviations.
Not affected:
- single-value abbreviations (`@interact(a=5)` sets `a=5`)
- explicit Widgets
12 years ago
MinRK
ea8896399b
remove application/pdf->pdf transform in javascript
...
We have the old transforms because they were added before we realized it was a bad idea. We should not add new ones.
12 years ago
Thomas Kluyver
d6986cf4ec
Merge pull request #4778 from minrk/install-nbextensions
...
add APIs for installing notebook extensions
12 years ago
MinRK
1ed5b184fb
test installing nbextensions with symlink
12 years ago
MinRK
8353e85e48
test check_nbextension
12 years ago
MinRK
e903297a15
clarify with all in check_nbextension
12 years ago
MinRK
475ac234b4
typo
12 years ago
Thomas Kluyver
df0743c41c
Merge pull request #5097 from minrk/logging-some-more
...
minor notebook logging changes
12 years ago
MinRK
59d3a8ff5f
handle empty string in ToggleButtonsWidget
12 years ago
MinRK
9c452998ea
add utils.escape_html
12 years ago
MinRK
0eff2bb651
handle space-only strings, not just zero-length
12 years ago
MinRK
c50096334c
use non-breaking space for button with no description
...
to preserve button's size
reverses some inappropriate replacements of .html with .text.
closes #5113
12 years ago
MinRK
fd346d1790
fix remove event in KeyboardManager.register_events
...
only call enable on remove when focused.
fixes a bug where command mode could be entered inappropriately
when non-focused elements are removed from the page
(see first `@interact` example).
12 years ago
Min RK
3306e386d6
Merge pull request #4925 from khinsen/notebook-manager-api
...
Notebook manager API fixes
remove various `_model` suffixes
12 years ago
MinRK
a1e263785c
band-aid for completion
...
Unlike @Carreau's attempt at using proper CodeMirror completion,
this is just a band-aid to get the existing completion back to working for 2.0.
This adds a keypress handler on the completer,
which then calls insert with the charCode of the key press event,
replacing the final `elif` branch of the keydown handler.
This cannot be done with keydown,
since keydown doesn't know what character is incoming,
only the hardware key that is struck.
12 years ago
Kyle Kelley
c9adc812bf
Remove remaining refs to the Azure NB Manager
12 years ago
MinRK
a184724bdb
remove base_kernel_url
12 years ago
MinRK
e5df456949
minor notebook logging changes
...
log refer only on 4XX, and never log user agent
This function was ported from nbviewer, and some of the choices were not quite right for the notebook server.
12 years ago
Brian E. Granger
24c27ce5e5
Merge pull request #5059 from jdfreder/widgets-patch-fix
...
Fix incorrect `Patch` logic in widget code
12 years ago
Brian E. Granger
46c88a8875
Merge pull request #5075 from jdfreder/flex-model-2
...
More flexible box model fixes
12 years ago
Konrad Hinsen
4058786dcd
Print a warning when iptest is run from the IPython source directory
12 years ago
Konrad Hinsen
fdb8ab37ae
Rearrange the NotebookManager methods for clarity
...
Methods are organized into three categories:
- Methods that must be implemented in subclasses
- Methods that have default implementations, but can
be overridden if required.
- Support methods meant to be called by methods in subclasses
12 years ago
Konrad Hinsen
b1c6ba2c97
Move method increment_filename from FileNotebookManager to NotebookManager
...
The implementation requires only a minor change (call notebook_exists
rather than checking for file existence) to be universally usable
in other notebook managers.
12 years ago
Konrad Hinsen
0a430f5840
Add method notebook_exists to NotebookManager.
...
It is called by IPython.html.notebook.NotebookHandler.get,
so it must be implemented by every notebook handler.
12 years ago
Konrad Hinsen
26e3e31ad8
NotebookManager API: rename *notebook_model methods to *notebook
12 years ago
Jonathan Frederic
1c564131c5
Fixed, set on recieve update triggering echos.
12 years ago
Jonathan Frederic
3d408f5241
Added a test to make sure full state was not getting sent.
12 years ago
Jonathan Frederic
7b2787e508
Fixed typo
12 years ago
Jonathan Frederic
f4f2c92285
Keep a running diff instead of forcing a full state update
12 years ago
Jonathan Frederic
770d2bd3a0
Only send diff message if diff isn't corrupt.
...
Diff will corrupt if more then one model.set(...) call is made
before model.save (or view.touch() in our case).
12 years ago
Jonathan Frederic
fbf700e5d2
Fixed typo in new test
12 years ago
Jonathan Frederic
a173e684c6
Added test that shows the problem.
12 years ago
Jonathan Frederic
5667947f9d
Revert "Let backbone get changed attrs"
...
This reverts commit 4dd4990ff146508894353e390601c659d2638ed3.
12 years ago
Jonathan Frederic
36b576b0bd
Let backbone get changed attrs
12 years ago
Jonathan Frederic
cd72883fc7
Revert "Fix incorrect usage of attrs"
...
This reverts commit 04aa0885bb143fd0409fe133ca572004ffa6dc0e.
12 years ago
Jonathan Frederic
0d80363240
Fix incorrect usage of attrs
12 years ago
Jonathan Frederic
04c38db197
fab css
12 years ago
Jonathan Frederic
81f37ab49f
Added align-start to widget container.
12 years ago
Jonathan Frederic
30e3ec1cc1
fab css
12 years ago
Jonathan Frederic
b7326707da
output_scroll can't be a vbox.
12 years ago
Brian E. Granger
38c369c0d8
Updating JS tests README.md.
12 years ago
Jonathan Frederic
92da2088cd
fab css
12 years ago
Jonathan Frederic
59eb13d80d
Align-start widget subarea
12 years ago
Jonathan Frederic
af5b5cea7d
Revert "Change stretch to flex-start"
...
This reverts commit 774073116dd4195037c452d48f05b432bba38801.
12 years ago
Jonathan Frederic
6568dd5d71
Revert "fab css"
...
This reverts commit a45a2c0f2ae26e7b731dc54965a6b224a39454b4.
12 years ago
Jonathan Frederic
82a9adb3c8
fab css
12 years ago
Jonathan Frederic
ff14cabf7f
Change stretch to flex-start
12 years ago
Jonathan Frederic
184a0933df
fab css
12 years ago
Jonathan Frederic
aba9f7e9f8
Automatic width adjustment for flex0
12 years ago
Jonathan Frederic
2d367aa7ab
fab css
12 years ago
Jonathan Frederic
7ae028e01f
Corrected a lot of small misuses of the new flex model.
12 years ago
MinRK
f80e4dc72e
don't create js test directories unless they are being used
...
just moves a setup block from `__init__` to `launch`
12 years ago
Brian E. Granger
89c1aa2010
Merge pull request #5062 from minrk/js-test-races
...
adjust some events in nb_roundtrip
12 years ago
MinRK
e14172d851
adjust some events in nb_roundtrip
...
hopefully should address some intermittent failures due to race conditions
12 years ago
MinRK
8264362179
document utils.parse_url
12 years ago
MinRK
9629bce503
fix url encoding in services
...
At this point, zero attributes should be encoded URLs
12 years ago
MinRK
24e59106c0
add utils.parse_url
...
strip repeated '//' in url_path_join
12 years ago
MinRK
a93040e810
s/get_data/get_body_data/
12 years ago
MinRK
e7db8cfd4e
fix notebook_path in menu bar
12 years ago
MinRK
e1e0b19a6a
s/base_project_url/base_url/
...
deprecate NotebookApp.base_project_url
12 years ago
MinRK
24703985e9
only add .ipynb if extension is not included
...
prevents .ipynb.ipynb double extension
12 years ago
MinRK
61b06a39e2
holy crap, semicolons
12 years ago
MinRK
7cb4321bfe
test unicode path in dashboard_nav
12 years ago
MinRK
13fc9022d9
various unicode fixes
...
- remove notebookPath, notebookName, and baseProjectUrl methods everywhere
- use base_project_url *attributes* instead
- we should never use escaped URLs except when making an actual request
Should fix issues with double-escaping
12 years ago
MinRK
beaa75b416
add utils.get_data
...
for extracting *decoded* items from $('body').data
12 years ago
Brian E. Granger
674ce7d9f8
Merge pull request #5053 from jdfreder/js-test-refact
...
Move&rename JS tests
12 years ago
MinRK
f3f1695b06
add IPython.load_extensions in js
12 years ago
MinRK
b413efd397
add check_nbextension
12 years ago
MinRK
68c91ffc88
allow installing nbextensions with symlinks
12 years ago
MinRK
f3664e1beb
support URLs and zip/tarballs in install_extension
12 years ago
MinRK
9429fe9b29
add install_nbextension at top-level IPython.html
12 years ago
MinRK
a8b7b853a2
add `ipython install-nbextension` entrypoint
12 years ago
MinRK
704b349302
add IPython.html.nbextensions.install_nbextension
...
for installing files into IPYTHONDIR/nbextensions
12 years ago
Jonathan Frederic
60c035f874
Hardcode exception for __pycache___
12 years ago
Brian E. Granger
47abe842b2
Merge pull request #5067 from minrk/widget-error
...
show traceback in widget handlers
12 years ago
Brian E. Granger
d3567f4cb0
Merge pull request #4920 from ellisonbg/pdf-formatter
...
Adding PDFFormatter and kernel side handling of PDF display data
12 years ago
Brian E. Granger
fc6b68a8aa
Merge pull request #5048 from ellisonbg/modal-indicator
...
Add edit/command mode indicator
12 years ago
Brian E. Granger
9b21f618e6
Merge pull request #5061 from minrk/execute-button
...
make execute button in menu bar match shift-enter
12 years ago
Brian E. Granger
22136b5e38
Merge pull request #5052 from ellisonbg/pager-q
...
Add q to toggle the pager.
12 years ago
Jonathan Frederic
94a7a7fd3a
Whoops, put kernel.js in the wrong folder
12 years ago
Jonathan Frederic
b5d465e3c7
removed `casperjs` dir
12 years ago
Jonathan Frederic
23f2bdf734
Made the folders map 1-to-1 with those in static
12 years ago
Jonathan Frederic
2da92d4d13
Moved files out of casperjs folder
12 years ago
MinRK
95d3d6de8b
fix flex: auto
...
flex: 0 doesn't seem to mean what box-flex meant (auto)
closes #5069
12 years ago
Brian E. Granger
5a087f2a66
To the most conservative choice.
12 years ago
Brian E. Granger
31301c4194
Just close the pager with q, not toggle.
12 years ago
Brian E. Granger
4e37e901d8
Add q to toggle the pager.
12 years ago
MinRK
d772b4c3da
catch errors at a lower level in interact
...
for cleaner tracebacks in the interact callback than the fallback case
12 years ago
MinRK
ddc22152ea
show traceback in widget handlers
...
rather than logging
closes #5064
12 years ago
Paul Ivanov
55684d7c1e
don't change name of section
12 years ago
Paul Ivanov
2c55a81efa
use js/subfolder/test.js syntax now
12 years ago
Paul Ivanov
4ad7e35809
shorten the js section names
12 years ago
MinRK
24ef1be736
make execute button in menu bar match shift-enter
...
Noticed this when testing the UI on the IPad.
I expected the button to perform the default execute behavior,
but it doesn't.
12 years ago
Paul Ivanov
04e0725ba9
fat fingers
...
don't laugh. it's a serious problem.
12 years ago
Paul Ivanov
4f49ed4008
allow testing individual js files
...
all casperjs/ subdirectories now treated as test categories
12 years ago
Thomas Kluyver
2d973d2b14
Merge pull request #5051 from jdfreder/ff-hscroll2
...
FF Fix: code cell missing hscroll (2)
12 years ago
Jonathan Frederic
b5d772eb65
fab css
12 years ago
MinRK
7032e9ef69
set overflow-x: hidden on Firefox only
...
workaround crazy Firefox-only behavior when selecting newlines
closes #3549
Conflicts:
IPython/html/static/style/style.min.css
12 years ago
Brian E. Granger
5904212460
Merge pull request #4960 from ellisonbg/newinteract
...
Interact/Interactive for widget
12 years ago
Paul Ivanov
ea242a7c23
make tests actually run
12 years ago
MinRK
813e32dfea
set readout=True as default on SliderWidgets
12 years ago
Jonathan Frederic
4984e0f2c9
Added notebook and widget test groups.
12 years ago
Jonathan Frederic
a07d24adb9
Move tests out into parent directories
12 years ago
MinRK
7861bee65f
test widget interaction (Python)
12 years ago
MinRK
6d555b7aee
return f with @interact, not just @interact(**kwargs)
12 years ago
MinRK
031b69895c
fix ValueError format message
12 years ago
MinRK
48a56d3156
simplify float/int slider abbreviation logic
...
fixes unhanded case where only one entry is a float
12 years ago
MinRK
7911c6c237
finish removing *args support
12 years ago
MinRK
ad6109692d
ensure range widgets get value that is on a step
12 years ago
MinRK
a58ca8a0a0
s/const/fixed/
12 years ago
MinRK
2d2c5beb0e
move @annotate to py3compat
12 years ago
MinRK
3053a855a9
remove positional arg support from interact
12 years ago
MinRK
feab63754d
update interact now that SelectionWidget.values is a dict
12 years ago
Brian E. Granger
88fb17b182
Adding const pseudo-widget for fixing arguments to interact.
12 years ago
Brian E. Granger
6e8c63ea19
Adding decorator forms of interact. Yeah!
12 years ago
Brian E. Granger
dd9a6efaed
Utter interact insanity.
...
This involves a bunch of really complicated logic to handle the
different ways that function parameters can be processed in Python.
Most importantly, this includes support for *args in interact.
12 years ago
Brian E. Granger
55cddce784
Fixing interact imports.
12 years ago
Brian E. Granger
2ef393aaa3
Renaming interact.py->interaction.py to improve imports.
12 years ago
Thomas Kluyver
a96c228554
Get widgets from function annotations and default arguments.
...
Also, preserve the order of function parameters from the signature where
possible.
This uses a backport of the Python 3.3 signature machinery that @minrk
found and improved.
12 years ago
Brian E. Granger
5853bb8ff7
Adding .widget to function.
12 years ago
Brian E. Granger
93047f1d3c
Updating interact to work with latest state of widgets.
12 years ago
Brian E. Granger
faebb43e01
Updating interact to new APIs.
12 years ago
Brian E. Granger
1d6cde4877
Adding interact.py.
12 years ago
Jonathan Frederic
063656343b
Moved notebook tests around.
12 years ago
Jonathan Frederic
33586b7ac8
Convert tabs to spaces
12 years ago
Brian E. Granger
445f6225e8
Spinning sun + nothing for command mode.
12 years ago
Brian E. Granger
2b4559513d
Adding basic append_pdf in OutputArea.
12 years ago
Jonathan Frederic
cbffa6433f
fab css
12 years ago
Jonathan Frederic
66c14d34ce
New 'flex' support
...
http://dev.w3.org/csswg/css-flexbox/
https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Flexible_boxes
12 years ago
Jonathan Frederic
5e5aecb4c2
Revert #3552
12 years ago
Jonathan Frederic
0ec796cfc7
Removed #4986
12 years ago
Brian E. Granger
2d1f3c86d1
Delete old timeout.
12 years ago
Brian E. Granger
af884b797f
Add edit/command mode indicator.
12 years ago
Brian E. Granger
62d118afc7
Clear timeout in multi-press keyboard shortcuts.
12 years ago
Brian E. Granger
2b248d65b0
Merge pull request #5035 from jdfreder/ff-hscroll
...
FF Fix: code cell missing hscroll
12 years ago
Min RK
cd7c1e6fae
Merge pull request #5001 from ellisonbg/dashboard-dirs
...
Add directory navigation to dashboard
12 years ago
Brian E. Granger
f59e7099ad
Fix spelling mistake in is_hidden docstring.
12 years ago
Brian E. Granger
eb9e0be218
Small refactoring of is_hidden to take root as default kwarg.
12 years ago
Brian E. Granger
009367666a
Fixing test_files tests.
12 years ago
Brian E. Granger
0c794b5d2c
404 for hidden files to not revleal their existence.
12 years ago
Brian E. Granger
7ab69652ea
Breadcrumb home icon.
12 years ago
Brian E. Granger
000d8abc56
Merge pull request #12 from minrk/ipynb
...
don't strip '.ipynb' from notebook names in nblist
12 years ago
Brian E. Granger
243392d810
Creating and testing IPython.html.utils.is_hidden.
12 years ago
Jonathan Frederic
a11596f7e7
fab css
12 years ago
Jonathan Frederic
65fba24d92
FF Fix: make ext icon same line as txt
12 years ago
MinRK
e0a7793226
don't strip '.ipynb' from notebook names in nblist
...
The only place the extension is not wanted is editing a name during upload.
Everywhere else, it's actually wanted.
12 years ago
Brian E. Granger
7e1a179a7c
Addressing review comments.
...
* list_dirs and get_dir_model added to base NBM class.
* Calling of list_dirs moved to handler.
* type=notebook added to notebook model.
12 years ago
Jonathan Frederic
17abd86054
fab css
12 years ago
Jonathan Frederic
635fc4fbe2
FF Fix: missing scrollbars on inner_cells
12 years ago
Brian E. Granger
977b164d8e
Cleaning up JS tests controller.
12 years ago
Brian E. Granger
157f5f64a5
Another variation of the dashboard page title.
12 years ago
Min RK
a5feb922a3
Merge pull request #4774 from Carreau/emit-output
...
emit event on appended element on dom
12 years ago
Brian E. Granger
e765f894b6
Merge pull request #5023 from jdfreder/widget-arrays
...
Widgets- add ability to pack and unpack arrays on JS side.
12 years ago
Brian E. Granger
378b18b2fb
Nice dashboard page titles like /.../examples/notebooks/
12 years ago
Jonathan Frederic
4b9cb92247
Added support for RuntimeArray
12 years ago
Jonathan Frederic
74b2f5c542
Added debug log to see what is happening...
12 years ago
Jonathan Frederic
836742dc59
Added test for pack and unpack Model functions
12 years ago
Brian E. Granger
6ac7f6c2b4
Fixing casperjs tests to run on casperjs 1.0.x.
12 years ago
Brian E. Granger
717f031e01
Adding dashboard navigation tests for dir browsing.
12 years ago
Brian E. Granger
c1a8f5af6a
Get the existing tests working.
12 years ago
Brian E. Granger
9f9fe08f0f
Cleaning up the dashboard CSS and fixing small visual problems.
12 years ago
Brian E. Granger
dd126fce6d
Tighten spacing of dashboard.
12 years ago
Brian E. Granger
e6c0e462ac
Taking it down to 3px.
12 years ago
Brian E. Granger
2df5c0b7d1
Adding btn-danger to Shutdown button.
12 years ago
Brian E. Granger
58a3daba5c
Tighten up vertical spacing of notebook list.
12 years ago
Brian E. Granger
2207a4f0dc
Adding proper breadcrumb support.
12 years ago
Brian E. Granger
775ebc72e0
Update styling of dashboard.
12 years ago
Brian E. Granger
86ba08213f
Add directory browsing to the dashboard.
12 years ago
Brian E. Granger
45a8d046c8
Add support for index.ipynb
12 years ago
Brian E. Granger
a3ef3109db
Server side logic for directories.
12 years ago
Brian E. Granger
2c5db865d4
Merge pull request #4974 from ivanov/better-paste
...
make paste focus the pasted cell
12 years ago
Brian E. Granger
350705075b
Merge pull request #5012 from minrk/selection-dict
...
Make `SelectionWidget.values` a dict
12 years ago
Jonathan Frederic
818f5e7824
Added ability to pack and unpack arrays.
12 years ago
Brian E. Granger
48743003e1
Merge pull request #5018 from takluyver/i4006
...
Prevent 'iptest IPython' from trying to run.
12 years ago
MinRK
0e81506dd9
pin lessc to 1.4
...
Not necessarily what we want to do,
but every minor revision of less seems to change how it minifies,
which produces churn.
At least this should prevent accidental churn,
as has recently been committed to master.
12 years ago
MinRK
cc791f2a56
update selection test with null selection being invalid
12 years ago
Min RK
978a5c1bc2
Merge pull request #4952 from jdfreder/widget-tests
...
Widget test inconsistencies
add wait_for_widget
12 years ago
MinRK
5823b875eb
don't allow empty selection in selection widgets
...
raises KeyError on failed lookup (in both directions)
12 years ago
Min RK
0cb4a450a6
Merge pull request #5014 from jdfreder/widget-popup-keys
...
Fix command mode & popup view bug
12 years ago
Jonathan Frederic
4a314ea3da
Unconditionally register $el with keyboard manager
...
also s/elements/additional_elements
12 years ago
Matthias BUSSONNIER
bb27cd0de5
more subtle kernel indicator
...
add casper.wait_for_busy
like wait_for_idle, but busy
restore kernel notification widget
it's still used for interrupt / restart
use wait_for_busy in check_interrupt test
12 years ago
Thomas Kluyver
956fbde018
Prevent 'iptest IPython' from trying to run.
...
Closes gh-4006
12 years ago
Susan Tan
466e05c165
Add notebook examples link to help menu.
12 years ago
MinRK
ca0afa1d8b
value_names is read-only
12 years ago
MinRK
3e1f2e22f8
Make `SelectionWidget.values` a dict
...
rename 'labels' and '_value' to 'value_names' and 'value_name'.
To specify a mapping of value names and values, use a dict.
If you specify `values=[list]`, then an OrderedDict will be used.
Assignment after construction only supports a dict.
12 years ago
Jonathan Frederic
ef2c71c34d
Fix command mode & popup view bug
...
Added elements property to PopupView
12 years ago
Thomas Kluyver
0ec7cf1b30
Merge pull request #5010 from jdfreder/widget-ff
...
Fixes for widget alignment in FF
12 years ago
Jonathan Frederic
1ddceb3844
Container classes should default with 'vbox' css
12 years ago
Jonathan Frederic
f015aabba6
fab css
12 years ago
Jonathan Frederic
b20466386c
fix width overriden by 04abbe99
12 years ago
Brian E. Granger
2b7310f794
Merge pull request #4933 from jdfreder/widget-model-name
...
Small Widget inconsistency fixes
12 years ago
Thomas Kluyver
91054043c0
Merge pull request #4979 from minrk/clear-output-msgspec
...
add versioning notes to small message spec changes
12 years ago
Thomas Kluyver
7c64d8de34
Merge pull request #4893 from minrk/font-awesome-3.2
...
add font-awesome 3.2.1
12 years ago
Brian E. Granger
5fc70a924d
Merge pull request #4982 from ellisonbg/slider-readout
...
Live readout for slider widgets
12 years ago
Thomas Kluyver
fae8b28ba8
Merge pull request #4813 from Carreau/help-link
...
make help menu a template
12 years ago
Jonathan Frederic
b9e48b3d6c
Use wait_for_widget in widgets and string widget tests
12 years ago
Paul Ivanov
0f86d8c909
Merge pull request #4964 from ptone/merge-above
...
remove shift-= merge keyboard shortcut
12 years ago
Preston Holmes
1d1e3b3932
remove alternate merge down shortcut
...
as shift+m is universal and sufficient
12 years ago
Matthias Bussonnier
68973cf622
link to matplotlib latest.
12 years ago
damianavila
2144c8e182
Forgot to add the needed js file...
12 years ago
damianavila
6ced0bcbac
Added automatic close of Brackets.
12 years ago
Matthias BUSSONNIER
03b5e0b2e0
put OutputArea map at the end
12 years ago
Matthias BUSSONNIER
38807bb59f
make help menu a templates
...
add splitline after keyboard shortcut
float external-link icon to the right
and move the 'title' to the individual elements,
so it follows hover.
12 years ago
Brian E. Granger
651599d092
Finishing the readout style and functionality.
12 years ago
Brian E. Granger
cef93c8cfb
Adding initial version of readout to sliders.
12 years ago
Min RK
fbece64242
Merge pull request #4929 from ellisonbg/modal-fixes
...
Fixing various modal/focus related bugs
closes #4809
closes #4951
12 years ago
Min RK
003c5e8eda
Merge pull request #4971 from ellisonbg/testjs-fd
...
Fixing issues with js tests
12 years ago
Brian E. Granger
82a4538759
Notebook.delete should take no args.
12 years ago
MinRK
1b74ee0c3e
note v4.1 msg spec change in clear_output handler
12 years ago
Paul Ivanov
836fd887dc
make paste focuses the pasted cell
...
This is to make paste behave in the same manner that insert cell above
and below currently work (inserting a new item causes that item to
receive focus).
This solves a problem where, if a user pastes below a cell whose bottom
edge is below the current viewing area, they have no indication that any
action has occurred. The same applies for paste above a cell whose top
edge is occluded.
12 years ago
Jonathan Frederic
a2044fd463
Remove sleep from the following,
...
Button, float, int, multicontainer, selection widgets.
12 years ago
Brian E. Granger
aa71651468
Fixing issues with js tests.
...
* Closing old pages to prevent fd leaks.
* Making sure kernels are killed to prevent fd leaks.
* Moving towards deleting old notebooks (this is not done, but
this should be merged as is).
12 years ago
Min RK
747c9ca29c
Merge pull request #4845 from rgbkrk/origin_host
...
Add Origin checking for websockets.
12 years ago
Min RK
7f9ee9cba7
Merge pull request #4916 from ellisonbg/modalbehavior
...
Fine tuning the behavior of the modal UI
swap back shift- and ctrl-enter, to their rightful places.
12 years ago
MinRK
2477ed0fed
update css with font-awesome 3.2.1
12 years ago
MinRK
3535163f67
font-awesome 3.2 moved resources
12 years ago
Kieran O'Mahony
699bfcc709
Fix error message typo on web socket fail
12 years ago
Jonathan Frederic
d68112885b
Use waitFor instead of sleeping.
12 years ago
Preston Holmes
547316fec3
Fixed typos in quick-help text
12 years ago
Brian E. Granger
e2c20e0675
Rename _handle_new_view->_handle_display_view.
12 years ago
Brian E. Granger
8445ab1899
Fixing tests from shift and ctrl enter swap.
12 years ago
Brian E. Granger
6298b16a44
Fixing help strings for shift|ctrl+enter.
12 years ago
Brian E. Granger
dbed35c5b1
shift+enter and ctrl+enter swapped.
12 years ago
Brian E. Granger
bcd4209375
alt+enter should always insert below
12 years ago
Brian E. Granger
4c7ce61011
Don't enter edit mode when changing cell type and preserve renderd.
12 years ago
Brian E. Granger
8c046fef99
Only call register_events on top level widget.
12 years ago
Brian E. Granger
36ca1b0baf
Dont' force command mode in kbm.register_events.
12 years ago
Brian E. Granger
63ae9e2fd7
Fixing this->that.
12 years ago
Brian E. Granger
5f4d4017c1
Only call CM.focus() if CM is not already focused.
12 years ago
Thomas Kluyver
fa0d5b2f1a
Merge pull request #4953 from minrk/wait-for-idle
...
add utils.wait_for_idle in js tests
12 years ago
Min RK
888698e12f
Merge pull request #4662 from ellisonbg/menu-cleanup
...
Menu cleanup
12 years ago
MinRK
5142cc775d
remove superfluous then
12 years ago
MinRK
a6ece94e32
add utils.wait_for_idle in js tests
...
and use it in execute_cell_then, since there is not always output.
12 years ago
Brian E. Granger
7c722d4b6c
Merge pull request #4824 from minrk/sign-notebooks
...
sign notebooks
12 years ago
Min RK
f9744b690e
Merge pull request #4943 from takluyver/docs-shotgun-4
...
Docs shotgun 4
12 years ago
Brian E. Granger
d21258bbcc
Reset file upload form after an upload.
12 years ago
Brian E. Granger
9fbeaa1e37
Properly set uploaded notebook path.
12 years ago
Thomas Kluyver
c633256fc9
Fix some formatting in widget docstrings
12 years ago
MinRK
eb208b2d77
move signature checking to base NotebookManager
...
so that subclasses have less to duplicate
12 years ago
MinRK
ecfa10b3b3
update shutdown_notebook
...
now that get_output_cell raises if there is no such output
12 years ago
MinRK
5e60741e5c
adjustments to nb_roundtrip.js
...
A few waits, little changes to get it running with recent changes
12 years ago
MinRK
d07e03b7c9
add wait_for_output(cell, index)
...
so you can wait for at least n outputs
12 years ago
Jonathan Frederic
6f3ef63ac9
s/Underscore/_
12 years ago
Jonathan Frederic
865c7330a9
s/model_name/_model_name
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
Brian E. Granger
b638b8718c
Adding DOM ids for each menu.
12 years ago
Brian E. Granger
ff6d6abb12
Formatting cleanup of renderedhtml.less.
12 years ago
Brian E. Granger
39d20f2a90
H5 and H6 are base font size + italic.
12 years ago
Brian E. Granger
7163a0b397
Using @code_padding variable.
12 years ago
Brian E. Granger
4363aa72f8
More changes to the heading spacing. Good first draft...
12 years ago
Brian E. Granger
483023ca41
More work on the styling of headings.
12 years ago
Brian E. Granger
37f4556eba
Initial spacing modifications.
12 years ago
Brian E. Granger
7c65e96941
Simplified Cell menu items related to output.
12 years ago
Brian E. Granger
9538fb7d8f
Converting loops in *_all_output to $.map().
12 years ago
Brian E. Granger
f4bfcadf32
Adding back Kernel menu and Cell Type submenu.
12 years ago
Brian E. Granger
afb114e6d3
Removing unneeded select prev/next from Edit menu.
12 years ago
Brian E. Granger
54666e2e98
Cleaning up output management in code and menus.
12 years ago
Brian E. Granger
5786602300
Add kernel restart button to toolbar.
12 years ago
Brian E. Granger
953da90a98
Removing Kernel menu.
12 years ago
MinRK
3c2ff965ef
get_output_cell fails with no such output
...
rather than returning null
12 years ago
MinRK
0e454c7fe0
move `ipython notebook trust` to `ipython trust`
...
and move App definition to nbformat.sign (maybe it should get its own file).
12 years ago
MinRK
6dd44de19f
Notaries sign notebooks now
12 years ago
MinRK
ffb3523d05
use configured scheme, not stored scheme when checking signatures
...
protects against notebook author choosing bad hash scheme.
12 years ago
MinRK
6eec6fdf6e
add `ipython notebook trust` subcommand
12 years ago
MinRK
6a1e7fe685
add nbformat.sign.NotebookNotary
12 years ago
MinRK
f14f856edb
sign notebooks
12 years ago
Brian E. Granger
bc7b51d1b0
Merge pull request #4374 from jdfreder/widget-msg
...
IPEP 23: Backbone.js Widgets
12 years ago
Jonathan Frederic
8312534cac
Fixed Accordion test broken by last commit
12 years ago
Jonathan Frederic
75b148d40b
Renamed widgets...
...
TextWidget, TextareaWidget, CheckboxWidget, and SelectWidget
12 years ago
Jonathan Frederic
5ed3a0ebc5
Simplify get_msg_cell function of notebook.js
12 years ago
Jonathan Frederic
13694d04c3
Removed blame comment
12 years ago
Brian E. Granger
5137961bf2
Protect against navigator undefined in platform.
12 years ago
Brian E. Granger
fd07bb54b6
Fixing shortcut counts to work for n>2.
12 years ago
Brian E. Granger
0af185787a
Added platform dep. logic.
12 years ago
MinRK
63eb905a02
try assertType instead of NotEquals, null
12 years ago
Brian E. Granger
1af4bfb3ce
Misc work on shortcuts:
...
* shift+v for paste above.
* ii for interrupt
* 00 for restart
* All shortcuts can have a count field for multiple press.
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
119052f75d
first review pass on widget tests
12 years ago
Min RK
0b70f26f0e
Merge pull request #4655 from minrk/marked-nbconvert
...
prefer marked to pandoc for markdown2html
12 years ago
MinRK
36db60eacb
review pass on Python-side of widgets
...
- remove variable signature complexity
- use a few more traitlets as appropriate
12 years ago
MinRK
dd2f4a25aa
quick review pass on javascript
12 years ago
MinRK
001e06103b
review pass on widgetmanager.js
12 years ago
MinRK
e6f84111cd
treat all falsy values the same in tooltip
...
undefined, null, and empty string are all treated the same.
12 years ago
MinRK
a7bd321648
don't show tooltip if object is not found
...
closes #4875
12 years ago
Jonathan Frederic
134413c89c
Fixed bug that prevented popup widget from displaying
12 years ago
Jonathan Frederic
c807dd29e4
Prevent TextBox from blurring unless explicity by user.
12 years ago
Jonathan Frederic
3026ddb52b
Fixed bug in throttling code.
12 years ago
Min RK
64421304c0
Merge pull request #4826 from Carreau/no-html
...
some $.html( -> $.text(
12 years ago
Min RK
b5a85af6e5
Merge pull request #4847 from Carreau/js-kernel-info
...
add js kernel_info request
12 years ago
Matthias BUSSONNIER
e99756c6d5
mv kerneljs_test to kernel_test
12 years ago
Jonathan Frederic
7c32616556
Moved keyboard_manager logic into a sep. function.
12 years ago
Kyle Kelley
ddc9340a6a
Handle variations of name for origin
12 years ago
MinRK
2cbb633cb4
test displaying images with shape metadata
12 years ago
MinRK
f02b5bef21
fix setting image height/width from metadata
12 years ago
Jonathan Frederic
dc9f81e75d
Fixed bug in selection widget tests.
12 years ago
Matthias BUSSONNIER
25e68b3a75
typo
12 years ago
Jonathan Frederic
e793d022b5
Callback dispatcher return callback value.
...
Also import it with the widgets namespace so it can be used elsewhere.
12 years ago
Matthias BUSSONNIER
03a2cb6535
fix js formatting
12 years ago
Matthias BUSSONNIER
4ecf5c8e5b
add kernel test
12 years ago
MinRK
848010e911
fix tooltip token regex for single-character names
...
closes #4808
12 years ago
Jonathan Frederic
00b39af9cf
Fixed type in container
...
._children was not being set... Instead the value was being returned (useless).
12 years ago
Matthias BUSSONNIER
f5fa732bd3
avoid injection in input prompt
12 years ago
Kyle Kelley
e06f501cd6
s/==/is/
12 years ago
Jonathan Frederic
91e82218a8
Changed selection widget API to use labels list
...
for mapping custom str reprs to items in the selection list
12 years ago
Jonathan Frederic
7f12f35fea
Added code that removes the views when a model/widget is closed.
12 years ago
Kyle Kelley
7efc751d0e
Name change to same_origin
12 years ago
Kyle Kelley
60ab030e52
Verify that headers are set, explicitly
12 years ago
Jonathan Frederic
288b8a0ced
s/view_name/_view_name
12 years ago
Kyle Kelley
b12f002b35
Performing check only on open.
12 years ago
Jonathan Frederic
2d13d05e9c
Replace O(N^2) algorithm with a faster one.
12 years ago
Jonathan Frederic
9e643f5692
Support multiple types in selection widget.
12 years ago
Jonathan Frederic
c9973a7114
Float widget views now inherit from int counterparts
12 years ago
Paul Ivanov
9b7c8b0473
make the JS test fail
12 years ago
Jonathan Frederic
2bb9ba9a9c
Adjusted throttling
12 years ago
Jonathan Frederic
9560b29beb
Removed float widget bound tests,
...
once the int widget inherits from the float, or vise-versa, the tests
will be covered by the int
12 years ago
Jonathan Frederic
1b8b6b3a88
Fixed bug where views child to other views would not have cell information
12 years ago
Jonathan Frederic
f06a0a7d5e
Fixed a couple more context typos
12 years ago
Jonathan Frederic
629d65da89
Fixed context errors and a couple of typos to get the tests working again
12 years ago
Matthias BUSSONNIER
98101f9c6c
add js kernel_info request
12 years ago
Matthias BUSSONNIER
cbe162297f
XSS casper test
12 years ago
Kyle Kelley
345de4e674
Use *args, **kwargs, log.warn
12 years ago
Jonathan Frederic
99f3f5155e
Fixed some typos related to _.each loops
12 years ago
Jonathan Frederic
d7b86104b8
Fixed typo - else -> elif
12 years ago
Jonathan Frederic
046280b51a
s/ModalView/PopupView
12 years ago
Jonathan Frederic
7ce9f37b17
Made tests reflect changes to widget naming scheme.
12 years ago
Jonathan Frederic
10bd54bd30
Move js *RangeWidget code into *Widget
12 years ago
Jonathan Frederic
e323f64e6d
Create base widget classes
12 years ago
Jonathan Frederic
b432b4840f
Use CUnicode for width and height in ImageWidget
12 years ago
Jonathan Frederic
c5e48c0b75
Added some small comments to widget code
12 years ago
Jonathan Frederic
80c3339791
- remove second line in create_child_view
...
- add undefined check in delete_child_view
12 years ago
Jonathan Frederic
58f56a5dd7
Explicitly return null if there aren't any results
12 years ago
Jonathan Frederic
08e40697de
Removed for () loops where necessary. Replaced with _.each
12 years ago
Jonathan Frederic
35a02a0436
Replace .html with .text everywhere possible
12 years ago
Jonathan Frederic
af4809bec4
Prefer JQuery to Underscore
12 years ago
Jonathan Frederic
d9a703d305
'create' should be handled in sync
12 years ago
Jonathan Frederic
2b27b4101b
Remove todo in apply update
12 years ago
Jonathan Frederic
e823d386ab
Fixed name conflict with _property_lock
12 years ago
Jonathan Frederic
077bd5c6ca
Added new CallbackDispatcher class
12 years ago
Jonathan Frederic
611614b6eb
Document in widget packing that vaues must be JSON-able.
12 years ago
Jonathan Frederic
cf05ef015a
ict comprehension and list comprehension in pack/unpack widgets
12 years ago
Jonathan Frederic
cb6094281c
s/custom_content/content
12 years ago
Jonathan Frederic
5fe860ed26
Added doc strings to properties in widget.py
12 years ago
Jonathan Frederic
1689eed2f6
Reorganized attrs in widget.py
12 years ago
Kyle Kelley
104275ab73
Indicate Py3 vs. Py2 codepath.
12 years ago
Jonathan Frederic
097951a6b8
Remove residual tabs
12 years ago
Kyle Kelley
5800b1c625
Get rid of exc_info as there isn't an exception.
12 years ago
Kyle Kelley
7b552d862d
Add Origin Checking.
12 years ago
MinRK
c2cb64c9a0
adjustments to notebook app logging
...
Mainly add a log_request function (from nbviewer) for formatting tornado access logs.
Relevant effects:
- demote successful access logs to DEBUG
- demote kernel connect messages to DEBUG
which reduces the noise at INFO-level (default)
12 years ago
Jonathan Frederic
b7cd129c37
Added a line that was accidently deleted during merge of 4e813c5
12 years ago
Jonathan Frederic
691cd56038
Change the callback logic so the order makes more sense:
...
*Now*
View calls Model which calls Widget Manager
*instead of *
View calls Widget Manager, which then the Model modifies right
before sync
12 years ago
Jason Grout
fe6edb26a6
Rewrite widget syncing
...
Conflicts:
IPython/html/static/notebook/js/widgetmanager.js
IPython/html/static/notebook/js/widgets/widget.js
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
Jonathan Frederic
e17200a533
Widget require.js fix
...
The WidgetManager namespace is passed around instead of a
widget_manager instance...
12 years ago
Jonathan Frederic
c39050e642
Fixed widget_manager instance test.
12 years ago
Jonathan Frederic
469c865603
Added support for multiple kernels.
12 years ago
Jonathan Frederic
6871c8f9e0
Cherry pick of @jasongrout 's 2bc2f96.
...
Only merged changes to notebook and kernel... (see original comment below).
Separate the widget registry from the widget managers;
attach widget managers to kernels.
Yet to do: take care of clean-up when a kernel is deleted
Conflicts:
IPython/html/static/notebook/js/widgetmanager.js
IPython/html/static/notebook/js/widgets/widget.js
12 years ago
Jason Grout
140d1872f7
Delete unnecessary save
12 years ago
Jason Grout
ce19a34d93
Pass the whole message into the widget manager display_view call
...
We do this so implementations can see metadata and any other things in the message, if they want.
Conflicts:
IPython/html/static/notebook/js/widgetmanager.js
12 years ago
Jason Grout
092e40df32
make the saving to python a method of the model, called with callbacks
...
Conflicts:
IPython/html/static/notebook/js/widgets/widget.js
12 years ago
Jason Grout
24ec0da125
Fix the cell reference in views
...
This solution is kludgy, but it does fix what broke when we tried to take the cell references out of views.
Conflicts:
IPython/html/static/notebook/js/widgets/widget.js
12 years ago
Jonathan Frederic
7cc6692fc4
Make dropdown view DOM swap elements on update.
12 years ago
Matthias Bussonnier
0ec0534ce9
Merge pull request #4796 from minrk/update-components
...
update components
closes #4765
12 years ago
Jonathan Frederic
82bf9c6826
Fix bug in all children containing views
12 years ago
Jonathan Frederic
d317532a38
Halign dict colons
12 years ago
Jonathan Frederic
bd3ba3328c
Added PEP8 style comments to all of the JS code.
12 years ago
Jonathan Frederic
7387f886c6
containers and selectioncontainers now only allow one of any single child
12 years ago
Jonathan Frederic
bfdebf9632
More PEP8 changes
12 years ago
Jonathan Frederic
bad85fb879
Remove O(N) cell by msg-id lookup
12 years ago
Jonathan Frederic
ff39989b8b
s/Int/CInt s/Float/CFloat
12 years ago
Jonathan Frederic
2aeac3a424
Make widget views work with new keyboard manager.
12 years ago
Jonathan Frederic
f86fe40c97
Fix rebase issues
12 years ago
Jonathan Frederic
6286f8b1ea
Fab CSS
12 years ago
Jonathan Frederic
74185a68e7
Got containers and mutlicontainers working! Yay
12 years ago
Jonathan Frederic
16d9fa92e8
Fix test for selection widgets
12 years ago
Jonathan Frederic
4017c7b27a
Fixed *almost* all of the test-detected bugs
12 years ago
Jonathan Frederic
c085593e2a
More fixes
12 years ago
Jonathan Frederic
d694666e66
A lot of bug fixes...
...
Related to 1-to-1 changes
12 years ago
Jonathan Frederic
047a90538f
1-to-1 widget / view mapping
12 years ago
Jonathan Frederic
c1c7bb7563
Everyone uses one model
12 years ago
Jonathan Frederic
b16171ac76
Added sync=True to all view name attrs
12 years ago
Jonathan Frederic
cfe8a07337
Added sync= attr to DOMWidget
12 years ago
Jonathan Frederic
b4a83b6044
sync=True isntead of a keys list
12 years ago
Jonathan Frederic
00650fd64a
Dev meeting Jan 2014, widget review day 2
12 years ago
Jonathan Frederic
d3ffd25107
Dev meeting widget review day 1
12 years ago
Paul Ivanov
897d51a567
fix typos
12 years ago
Paul Ivanov
95e99c0c61
remove unused imports
12 years ago
Jonathan Frederic
d103c682c5
Many checks off the todo list, test fixes
12 years ago
Jonathan Frederic
f6de685d9f
Use .apply for calling base with not proto-type.
...
See codecell for example.
12 years ago
Jonathan Frederic
0f715170b3
Add a comment that explains the notion of the default element
...
to be styled in set_css's' doc string.
12 years ago
Jonathan Frederic
1e37a46a55
Add a helper method that acts on the changes made to a list.
12 years ago
Jonathan Frederic
be268dcf98
Implement a context manager as a property locking mechanism in Widget.
12 years ago
Jonathan Frederic
70c6a295d0
Finished renaming Multicontainer to SelectionContainer
12 years ago
Jonathan Frederic
a528610e07
renamed: ../static/notebook/js/widgets/widget_multicontainer.js -> ../static/notebook/js/widgets/widget_selectioncontainer.js
...
renamed: widget_multicontainer.py -> widget_selectioncontainer.py
12 years ago
Jonathan Frederic
643516f6f9
remove .html('');
12 years ago
Jonathan Frederic
c62b496b0e
s/image_format/format
12 years ago
Jonathan Frederic
b5f97c1227
add comment views are in *_range
12 years ago
Jonathan Frederic
5e9a090423
toggle button, set $el to button (removing extra div)
12 years ago
Jonathan Frederic
5b5325507f
add locks to update everywhere by using options to pass this
...
(and check for this)
12 years ago
Jonathan Frederic
c4edfdc828
comment model.set, so we know that it triggers update on other views
12 years ago
Jonathan Frederic
ccbfcbc159
make JS update comment more descriptive (english)
12 years ago
Jonathan Frederic
0740980d5c
remove length test add_class and remove_class
12 years ago
Jonathan Frederic
ec68f38ed7
Removed get_kernel method.
12 years ago
Jonathan Frederic
8dc5535638
un-nest options.options
12 years ago
Jonathan Frederic
a6fac70e03
s/BaseWidgetView/WidgetView and s/WidgetView/DOMWidgetView
12 years ago
Jonathan Frederic
44cf406ac0
this.updating should be a key specific lock
12 years ago
Jason Grout
d658f362ac
Update option-passing for creating child views.
12 years ago