Juan Cruz-Benito
18205fbf4a
Fixing black formatting issues
2020-02-26 10:36:36 +01:00
Bruno P. Kinoshita
2f6ea71106
Add not_running.js to modify button spawn_url
2020-02-26 09:28:12 +13:00
Juan Cruz-Benito
7b6ac158cc
Removing python-paginate package and adding minimal Pagination class to enable a pagination API for AdminHandler
2020-02-25 19:11:09 +01:00
Juan Cruz-Benito
facf52f117
Removing unneeded pass of request to the template
2020-02-25 17:03:01 +01:00
Juan Cruz-Benito
f36796dd85
Merge branch 'master' into add_pagination_admin
2020-02-25 17:01:01 +01:00
Min RK
0427f8090f
Merge pull request #2773 from kinow/fix-ssl-url-message
...
Handle the protocol when ssl is enabled and log the right URL
2020-02-25 13:35:32 +01:00
Tim Head
da86eaad97
Merge pull request #2951 from kinow/typos-2
...
[doc] Fix couple typos in the documentation
2020-02-24 09:21:31 +01:00
Bruno P. Kinoshita
3b05135f11
Fix couple typos
2020-02-24 20:48:42 +13:00
Bruno P. Kinoshita
76afec8adb
Update app.bind_url and proxy.public_url when (external) SSL is enabled
2020-02-24 15:51:09 +13:00
Tim Head
06da90ac76
Merge pull request #2950 from alexdriedger/patch-2
...
Docs: Fixed grammar on landing page
2020-02-23 09:11:43 +01:00
Alex Driedger
7e3caf7f48
Fixed grammar on landing page
2020-02-22 16:37:34 -08:00
Tim Head
e08552eb99
Merge pull request #2941 from minrk/allow-implicit-spawn
...
Allow implicit spawn via javascript redirect
2020-02-22 07:27:17 +01:00
Tim Head
5fb403af4b
Merge pull request #2946 from minrk/user-redirect-faq
...
add general faq
2020-02-22 07:24:24 +01:00
Min RK
84acdd5a7f
handle uselist=False in our relationship expiry
2020-02-21 14:10:36 +01:00
Min RK
3e6abb7a5e
add general faq
...
and put a first q about user-redirect
2020-02-21 13:52:03 +01:00
Min RK
0315f986db
Merge pull request #2940 from kinow/add-more-docs-for-cookies
...
[doc] Add more docs about Cookies used for authentication in JupyterHub
2020-02-21 10:18:29 +01:00
Min RK
7735c7ddd4
make spawner:server backref explicitly one-to-one
...
using backref(uselist=False), single_parent=True
2020-02-21 10:09:08 +01:00
Bruno P. Kinoshita
239a4c63a2
Add note that not all proxy implementations use an auth token
2020-02-21 10:35:30 +13:00
Bruno P. Kinoshita
f5bd5b7751
Incorporate review feedback
2020-02-21 10:32:11 +13:00
Bruno P. Kinoshita
287b0302d9
Add more docs about authentication and cookies, using text posted by MinRK on Discourse
2020-02-21 10:22:10 +13:00
Tim Head
44e23aad78
Merge pull request #2936 from minrk/make-it-fast-break-everything-maybe
...
make init_spawners check O(running servers) not O(total users)
2020-02-20 17:06:24 +01:00
Tim Head
606775f72d
Remove unused variable
2020-02-20 16:56:03 +01:00
Min RK
9a6308f8d9
docs: use metachannel for faster environment solve ( #2943 )
...
docs: use metachannel for faster environment solve
2020-02-20 15:55:36 +01:00
Min RK
0c4db2d99f
docs: use metachannel for faster environment solve
...
rtd is having memory issues with conda-forge, which should hopefully be fixed by metachannel
this should also make things quicker for anyone
2020-02-20 15:54:43 +01:00
Min RK
938970817c
update docs environments ( #2942 )
...
update docs environments
2020-02-20 15:36:10 +01:00
Min RK
d2a1b8e349
update docs environments
...
- python 3.7
- node 12
- sync recommonmark 0.6
2020-02-20 15:32:55 +01:00
Min RK
4477506345
Merge pull request #2930 from JohnPaton/patch-1
...
Add favicon to the base page template
2020-02-20 14:23:06 +01:00
Min RK
0787489e1b
maybe_future needs a future!
2020-02-20 12:53:15 +01:00
Min RK
436757dd55
handle implicit spawn with a javascript redirect
...
less dangerous than using a Location redirect, so remove conflicts
delay is a user-configurable timer (0 = no implicit spawn, default)
2020-02-20 12:43:39 +01:00
Min RK
a0b6d8ec6f
add allow_implicit_spawn setting
...
- warn that there are known issues associated with enabling it
- it is inherently incompatible with named servers
2020-02-20 12:12:55 +01:00
Min RK
b92efcd7b0
spawner test assumed app.users is populated
2020-02-20 09:37:08 +01:00
Erik Sundell
3e17b47ec3
Merge pull request #2939 from kinow/fix-services-link
...
[doc] Use fixed commit plus line number in github link
2020-02-19 01:09:51 +01:00
Bruno P. Kinoshita
31c0788bd9
Move cookies to the end of the list (ssl, proxy, and then cookies)
2020-02-19 12:56:02 +13:00
Bruno P. Kinoshita
dec3244758
Use fixed commit plus line number in github link
2020-02-19 12:39:23 +13:00
Erik Sundell
91e385efa7
Merge pull request #2938 from kinow/fix-link-to-ssl-doc
...
[doc] Fix link to SSL encryption from troubleshooting page
2020-02-18 22:55:07 +01:00
Bruno P. Kinoshita
13313abb37
Fix link to SSL encryption from troubleshooting page
2020-02-19 10:46:49 +13:00
Min RK
79a51dfdce
make init_spawners check O(running servers) not O(total users)
...
query on Server objects instead of User objects
avoids lots of ORM work on startup since there are typically a small number of running servers
relative to the total number of users
this also means that the users dict is not fully populated. Is that okay? I hope so.
2020-02-18 17:10:19 +01:00
JohnPaton
a999ac8f07
Use only rel="icon"
...
This is the officially recommended method from MDN
https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML
2020-02-14 16:51:27 +01:00
John Paton
a3e3f24d2d
Add favicon to the base page template
...
This was missing before. Giving it its own named block will let users customize it if they wish.
2020-02-14 16:35:48 +01:00
Juan Cruz-Benito
b2b85eb548
Improving comments
2020-02-14 11:47:43 +01:00
Juan Cruz-Benito
95c5ebb090
Fixing pre-commit errors
2020-02-14 11:14:07 +01:00
Juan Cruz-Benito
3d0da4f25a
Adding python-paginate package and using it to paginate admin panel
2020-02-13 18:35:17 +01:00
Tim Head
bc7bb5076f
Merge pull request #2914 from jgwerner/trouble-shooting
...
[MRG] Add troubleshooting topics
2020-02-13 08:06:20 +01:00
Greg
a80561bfc8
updates based on pr comments
...
Signed-off-by: Greg <werner.greg@gmail.com >
2020-02-05 16:13:15 -05:00
Erik Sundell
22f86ad76c
Merge pull request #2917 from minrk/doc-remove
...
rest api: fix schema for remove parameter in rest api
2020-01-31 17:31:31 +01:00
Min RK
0ae9cfa42f
fix schema for remove parameter in rest api
...
it wasn't showing up properly since it's a *property* of the body, not the body itself
2020-01-31 17:18:30 +01:00
Min RK
ff8c4ca8a3
update bootprint to v4
2020-01-31 17:16:57 +01:00
Greg
ed4ed4de9d
simplify text
...
Signed-off-by: Greg <werner.greg@gmail.com >
2020-01-29 12:49:52 -05:00
Greg
d177b99f3a
add trouble shooting topics
...
Signed-off-by: Greg <werner.greg@gmail.com >
2020-01-29 12:42:42 -05:00
Erik Sundell
65de8c4916
Merge pull request #2904 from reneluria/patch-doc
...
Several fixes to the doc
2020-01-24 17:25:36 +01:00