Commit Graph

9975 Commits

Author SHA1 Message Date
Grant Nestor
3194aba706 release 5.0.0b2 2017-03-09 12:54:40 -08:00
Grant Nestor
a6562d185d Merge pull request #2268 from gnestor/patch-2234
Patch #2234
2017-03-09 12:52:24 -08:00
Grant Nestor
a531aeb8b3 Add modal styles 2017-03-09 12:14:33 -08:00
Min RK
420715e3e5 Merge pull request #2234 from takluyver/i2204
Show server root directory in move dialog
2017-03-09 09:42:07 -08:00
Kyle Kelley
ead73b9efa Merge pull request #2220 from delftswa2017/fix-issue-980
Fixed issue #980: incorrect LaTeX capturing and MathJax rendering
2017-03-09 10:45:28 -06:00
Grant Nestor
32df89fd62 Set server_root_dir based on user directory path 2017-03-08 14:40:11 -08:00
Grant Nestor
2125922db3 Set default root_dir for ContentsManager 2017-03-08 14:39:22 -08:00
Min RK
ecb309dd0b Merge pull request #2257 from Carreau/tell-pw
Tell user how to avoid token authentication.
2017-03-08 10:59:47 -08:00
Matthias Bussonnier
e32631a6b2 Merge pull request #12 from minrk/token-message
update token info on login page
2017-03-08 09:42:10 -08:00
michaelpacer
b7b6ec2ad2 Added more test cases, added spacing so that it was technically valid 2017-03-08 09:36:00 -08:00
Min RK
ee82acd66a update token info on login page
- clarify that it does *not* mean password is disabled
- phrasing
- https links
2017-03-08 09:34:20 -08:00
Grant Nestor
92cfd65931 Use flex box vs. table 2017-03-07 20:23:00 -08:00
Grant Nestor
96676c079c Use contents_manager.root_dir 2017-03-07 20:22:44 -08:00
michaelpacer
9a817f7bf0 Add test for LaTeX parsing 2017-03-07 16:23:51 -08:00
Matthias Bussonnier
018db6c8ce Tell user how to avoid token authentication.
Most user don't care how to get the token each time (if they see the
message). They want to avoid using a token.

Make it clearer that Password should be configured.

Be more tricky, say that password not configured **yet**, to make the
user think they __have to__.

The text is not technically correct as as far as I remember you can have
PW and Token at the same time.  But I'm going to say that in 99% of case
where users read that, the password is unset.
2017-03-07 11:27:21 -08:00
Grant Nestor
c4d2c1a527 Merge pull request #2249 from minrk/test-tags
Test the cell tags toolbar
2017-03-07 09:39:04 -08:00
Kyle Kelley
a42fa3f453 Merge pull request #2162 from blackrock/master
Fix for uploading large files crashing the browser (issue #96)
2017-03-03 07:21:16 -08:00
Min RK
752fb34309 Merge pull request #2246 from takluyver/tooltip-pos
Add cell position when calculating location of cursor for tooltip
2017-03-03 09:22:35 -05:00
Min RK
a83471789b Merge pull request #2244 from delftswa2017/fix-issue-1911
Fix markdown highlighting in latex
2017-03-03 09:20:14 -05:00
Min RK
0ebcb7a65f test tags cell toolbar 2017-03-03 09:03:52 -05:00
Min RK
7286839c3a always handle click event on remove-tag-btn
rather than checking if it’s ‘real’, which prevents `$(el).click()` from working
2017-03-03 09:03:45 -05:00
Min RK
a304f9d15f split tags on commas and whitespace 2017-03-03 09:03:11 -05:00
Thomas Kluyver
59458731d8 Add cell position when calculating location of cursor for tooltip
Closes gh-2245, I hope, but I don't know if there's a better way to fix
it.

I think we need to calculate the location relative to the 'offset
parent' of the tooltip. Adding one extra parent level from CodeMirror
seems to work at the moment.
2017-03-02 15:04:57 +00:00
Kaushik Chaubal
7cd59275ea add a dialog for large file size warning + simplify chunking logic 2017-03-01 23:49:53 -05:00
Kaushik Chaubal
7d4965abc0 fix of uploading large files crashes the browser #96 + adding unit tests 2017-03-01 22:25:03 -05:00
Lorenzo Gasparini
c782cb327f Swap $ and $$ delimiters order to avoid conflicts. 2017-03-01 23:38:31 +01:00
Michael Pacer
44a1e99f2a Remove misleading local variable declaration 2017-03-01 11:33:39 -08:00
Lorenzo Gasparini
3b50d4b4ad Add comments 2017-03-01 18:53:34 +01:00
Lorenzo Gasparini
3c40901b34 Add support for '\\[' and '\\]' as math delimiters, refactoring. 2017-03-01 15:29:02 +01:00
Thomas Kluyver
c03c133bbd Merge pull request #2229 from ellisonbg/edit-view-buttons
Edit view button behavior change
2017-02-28 11:30:32 +00:00
Matthias Bussonnier
e751e1ca1e Implement discussed behavior:
- replace regexes they were not matching at the end of files.
- hide edit/view for multiple, they where not working

From the Pr comments that should closely match the following

Observations:

  - "View" is handled by the browser so in most case it's something
    "safe". I think that (A) all items we don't know what to do with
    should have the _possibility_ to be viewed. (example `config.yaml`,
    `cat.gifv`).

  - "Edit" make sens only on text files only. In general (B) "edit"
    should not be the default action for most files.

  - Though  (C) "Edit" should be triggerable by advanced users (unless
    we know we should not). Example `foo.zorblax`, `conf.toml`

  - (D) "Edit" does not make sens for some filetypes, thus should not be
    available (`'png`, `.jpeg`)

Question (E):
   - If the default action is X {in edit/view} should the X button be shown ?

Proposition:
   - if ipynb:
      - default link edit
      - no button in toolbar.
   - If known type, editable (txt, json, yaml, py, rb):
      - default link open edit,
      - button in toolbar show view
   - if known type not editable: (, png, gif, zip)
      - default link open view
      - no button in toolbar
   - if unknown type ('.zorblax, toml, cson, ')
      - default link open "view"
      - button in the toolbar show "Edit".
2017-02-27 09:54:23 -08:00
Thomas Kluyver
7a82ae4857 Merge pull request #2233 from louise-davies/contributing-docs
Updated docs on installed phantomjs
2017-02-27 17:38:50 +00:00
Thomas Kluyver
b2d048a85e [WIP] Show server root directory in move dialog 2017-02-27 16:41:19 +00:00
Louise Davies
8014f1c15f Updated docs on installed phantomjs 2017-02-27 15:57:40 +00:00
Thomas Kluyver
5fe331e77e Merge pull request #2232 from parente/changelog-5.0-api-adds
Note bundler API, kernel activity additions
2017-02-27 11:55:05 +00:00
Peter Parente
7816203665 Note bundler API, kernel activity additions 2017-02-26 21:51:51 -05:00
Brian E. Granger
2472e89b01 Merge pull request #2231 from jorisvandenbossche/table-style
Adjust HTML table style (GH2209)
2017-02-26 08:18:00 -08:00
Joris Van den Bossche
de26378f1c Adjust HTML table style (GH2209) 2017-02-26 12:29:45 +01:00
Brian E. Granger
c9a4455cb5 Merge pull request #2230 from ellisonbg/cell-tag-design
Super minor style fixes for the cell tag UI.
2017-02-25 20:28:16 -08:00
Matthias Bussonnier
2e0d44b5d4 retab with spaces. 2017-02-25 20:18:18 -08:00
Matthias Bussonnier
0736356a2f Merge pull request #2224 from takluyver/doc-nbserver-extensions
Update docs on enabling notebook server extensions
2017-02-25 20:08:29 -08:00
Brian E. Granger
9415f89776 Super minor style fixes for the cell tag UI. 2017-02-25 18:55:42 -08:00
Brian E. Granger
6846deec7a Fixing notebook behavior of Edit.
In the future I would like to show the Edit button for notebooks
but have it open them in the text editor. Right now, there isn't
any way for a user to do this. Thus hiding Edit on notebooks for
now.
2017-02-25 18:44:02 -08:00
Brian E. Granger
5974cbe2ad Don't show Edit button on files we know we can't edit or ipynb
This removes the showing of the Edit button when:

* We know we can't edit the file (pdf, doc, xls, jpeg, png, etc.)
* Or a notebook - looking at this again though...
2017-02-25 18:40:37 -08:00
Brian E. Granger
2f266d3183 Only show View button for HTML files. 2017-02-25 18:33:05 -08:00
Carol Willing
e51a4688f6 Merge pull request #2226 from nickylimjj/nbserver-ext_changelog
updated changelog for nbextensions
2017-02-25 11:56:09 -06:00
nickylimjj
0d595f323c keep within 80 cols, fix typos 2017-02-25 10:46:12 -06:00
nickylimjj
0be70718a5 updated changelog for nbextensions 2017-02-25 01:09:00 -06:00
Thomas Kluyver
a38eadbfef Fix spelling 2017-02-24 18:26:13 +00:00
Thomas Kluyver
e3b89c3910 Update docs on enabling notebook server extensions 2017-02-24 18:25:33 +00:00