Damian Avila
4dc3221194
Add slides exportation/download to the menu
8 years ago
Thomas Kluyver
3de5e501f3
Back to development
8 years ago
Thomas Kluyver
ba5ea511a5
release 5.4.0
8 years ago
Thomas Kluyver
957b0aba2d
Merge pull request #3269 from takluyver/changelog-5.4
...
Update changelog for 5.4
8 years ago
Thomas Kluyver
c14b94b037
Add PR #3271 to changelog
8 years ago
Thomas Kluyver
24ede9f594
Merge pull request #3271 from asoderman/tree-aria-labels
...
Accessibility updates for tree.html
8 years ago
Alex Soderman
1ac7ff1ef3
Added aria-labels to buttons
8 years ago
Thomas Kluyver
e9f91111b0
Update changelog for 5.4
8 years ago
Matthias Bussonnier
b96d75846d
Merge pull request #3264 from takluyver/i3263
...
Change the path to create notebooks in when navigating directories
8 years ago
Thomas Kluyver
ae7d39af1e
Merge pull request #3243 from minrk/less-shouty
...
make js-generated UUIDs lowercase
8 years ago
Thomas Kluyver
f38aceee48
Merge pull request #3256 from yuvipanda/remove-dup
...
Remove duplicate setting of this.notebook
8 years ago
Thomas Kluyver
51acfb61ad
Use event.preventDefault() on links creating new files & folders
8 years ago
Thomas Kluyver
1d84d839f3
Change the path to create notebooks in when navigating directories
...
Closes gh-3263
Closes gh-3248
8 years ago
yuvipanda
194a84a324
Remove duplicate setting of this.notebook
...
Should be a noop
8 years ago
Thomas Kluyver
8441005a39
Merge pull request #3228 from ns23/update-alt-text
...
[WIP] Updated image alt text in notebook.html
8 years ago
Min RK
44c99143e9
make js-generated UUIDs lowercase
...
so it's less shouty when debugging messages
We don't ever need official UUIDs as specified, just sufficiently random strings.
8 years ago
Matthias Bussonnier
0254c8bc01
Merge pull request #3212 from takluyver/print-color
...
Patch out bootstrap rule forcing black and white printing
8 years ago
Thomas Kluyver
31215b857c
Merge pull request #3195 from areading314/ar/limit_autcomplete_elements
...
Limit length of GUI autocomplete to 1000
8 years ago
Nitesh Sawant
5ff22ca602
Updated image alt text
8 years ago
Thomas Kluyver
6526a19c0b
Merge pull request #3227 from Carreau/nsymlink
...
No symlink
8 years ago
Matthias Bussonnier
3275f77fd4
Make sure repository does not contain symlink
8 years ago
Thomas Kluyver
fe2502d81e
Back to development
8 years ago
Thomas Kluyver
e3a8cf0b83
update JS version number as well
8 years ago
Thomas Kluyver
f73b6ab987
release 5.3.1
8 years ago
Thomas Kluyver
bbce09a719
Merge pull request #3220 from takluyver/favicon-not-symlink
...
Replace symlinked favicon with a copy
8 years ago
Thomas Kluyver
3b069e3c0a
Replace symlinked favicon with a copy
...
Closes gh-3215
8 years ago
Thomas Kluyver
4179d60e49
Back to development
8 years ago
Thomas Kluyver
6e14558361
release 5.3.0
8 years ago
Thomas Kluyver
0c96052065
Update changelog ready for 5.3.0
8 years ago
Thomas Kluyver
64bde3e888
Merge pull request #3207 from takluyver/clearing-cookies
...
Fix clearing two cookies with the same name
8 years ago
Thomas Kluyver
0f0fe84740
Expand description of compatibility code
8 years ago
Thomas Kluyver
6ba7b17181
Only use force_clear_cookie for the extra compatibility piece
8 years ago
Min RK
b439a9f8c7
Merge pull request #3206 from takluyver/use-setuptools
...
Always use setuptools in setup.py
8 years ago
Thomas Kluyver
622a886478
Patch out bootstrap rule forcing black and white printing
...
Closes gh-840
8 years ago
Thomas Kluyver
1fdcd375ab
Fix clearing two cookies with the same name
...
Closes gh-3196
8 years ago
Thomas Kluyver
3a0bb6128a
Delet scripts, not needed with setuptools
8 years ago
Thomas Kluyver
6f6dc28e0e
Always use setuptools in setup.py
...
This copies what we've already done for some other packages: always use setuptools
but disable its implicit egg building which causes so many headaches. The setup code
can be significantly simpler if it's not trying to handle the case where setuptools
isn't in use.
8 years ago
Lilian Besson
de92a2b34f
Force padding top bottom to 1px for div.output_area pre ( #3194 )
...
See https://github.com/jupyter/notebook/issues/3193
8 years ago
Arthur Reading
426346fc91
Limit length of GUI autocomplete to 1000
8 years ago
Grant Nestor
91d46c5328
release 5.3.0rc1
8 years ago
Grant Nestor
1df0401d14
Update changelog ( #3188 )
8 years ago
Thomas Kluyver
7b5bd66cf7
Merge pull request #3175 from gnestor/issue-2591
...
Add Jupyter action for CodeMirror indentAuto command
8 years ago
Grant Nestor
630ef639dd
Add indentAuto to actions
8 years ago
Thomas Kluyver
27c00bfb20
Merge pull request #3158 from shiti-saxena/dev
...
adding option to specify extra services
8 years ago
Thomas Kluyver
c2dc429cee
Merge pull request #3184 from gnestor/5.3.0
...
Add 5.3.0 to changelog
8 years ago
Daniel Farrell
605eaa72be
Added a flag to allow access of hidden files ( #2819 )
...
* Added a flag to allow access of hidden files
The flag '--allow-hidden' will allow Tornado to access hidden files
such as '.images/my_img.jpg'
* Fixed jupyterlab not following allow-hidden
Jupyterlab stores its options in a different location than the
standard notebook. Added the ability to check there as well.
* Updated implementation for any app
Previously I was accessing the settings dict based on the name of
the app that was being used. ex 'NotebookApp', or 'LabApp'.
Now the setting is passed directly into the Tornado settings, and
can be accessed via a more general method.
* Added/fixed unit tests for test_hidden_files
Fixed broken unit tests by setting the default to allow_hidden=False
then added unit test in FilesTest:test_hidden_files that checks for
the accessibility of files with allow_hidden=True
* allow-hidden now works everywhere
Previously allow-hidden flag only allowed hidden files to be accessed via
tornado. Now you can use the allow-hidden flag to access hidden directories and
files via the filebrowser.
* Remove --allow-hidden alias
* Move allow_hidden option onto ContentsManager
* Use try/finally to ensure allow_hidden option is set back to False after test
* Allow access to hidden files, but don't list them for now
* Simplify hidden check for listing again
* Fix indentation
8 years ago
Thomas Kluyver
e4529a46c4
Merge pull request #2965 from betatim/restart-and-rerun-toolbar
...
Add toolbar icon to restart and run all
8 years ago
Tim Head
3c83c85095
Switch to fa-repeat and remove restart button
8 years ago
Grant Nestor
973cdc4f64
Add 5.3.0 to changelog
8 years ago
Min RK
9c7c213a47
Merge pull request #3116 from maartenbreddels/directory_json
...
allow default json files in a .d directory
8 years ago