Min RK
72ab8f99ec
Avoid cleaning up API tokens for Spawners that will resume
...
in which case the previous API token should be left alone.
2016-12-19 10:50:25 +01:00
Min RK
fcf32c7e50
Merge pull request #909 from willingc/update-travis
...
Add 3.6 to travis
2016-12-19 09:59:47 +01:00
Carol Willing
da451d6552
Add 3.6 to travis
2016-12-18 21:26:52 -08:00
Carol Willing
662b1a4d4a
Merge pull request #902 from minrk/redirect-empty-msg
...
Don't warn about empty next_url
2016-12-09 08:04:56 -08:00
Min RK
732adea997
Don't warn about empty next_url
...
empty next_url is fine
2016-12-09 15:34:32 +01:00
Carol Willing
7e1dbf3515
Merge pull request #896 from minrk/whitelist-warning
...
Warn about single-character names in whitelist
2016-12-05 11:16:30 -06:00
Min RK
65b92ec246
Warn about single-character names in whitelist
...
likely cause is `set('string')` typo instead of `set(['string'])`,
so include that in the error message:
whitelist contains single-character names: ['i', 'k', 'm', 'n', 'r']; did you mean set(['ikmnr']) instead of set('ikmnr')?
2016-12-05 09:46:52 +01:00
Min RK
dc42ee4779
typo in changelog link
2016-12-02 18:12:28 +01:00
Min RK
c04441c1b2
back to dev
2016-12-02 18:08:03 +01:00
Min RK
c3faef8e2a
release 0.7.0
0.7.0
2016-12-02 18:02:20 +01:00
Carol Willing
d2175635af
Merge pull request #895 from minrk/release-0.7
...
Update changelog for 0.7 final
2016-12-02 10:47:21 -06:00
Min RK
1f7401cd14
Update changelog for 0.7 final
2016-12-02 17:35:19 +01:00
Min RK
c94b3e34d2
Merge pull request #894 from minrk/disable-token
...
disable unused token on singleuser-server
2016-12-02 17:01:50 +01:00
Carol Willing
566e1d05ea
Merge pull request #893 from minrk/expanduser
...
call expanduser on singleuser notebook_dir
2016-12-01 21:53:24 -06:00
Min RK
0488d0bd73
call expanduser on singleuser notebook_dir
...
This copies validate_notebook_dir from notebook with one addition:
calling expanduser.
2016-12-01 22:04:18 +01:00
Min RK
ca31d9b426
disable token on singleuser-server
...
fixes confusing output about token access in notebook server startup
2016-12-01 21:59:44 +01:00
Min RK
8721f9010f
Merge pull request #892 from yuvipanda/maybe-async
...
Document that authenticator's add_user maybe a coroutine
2016-12-01 17:58:02 +01:00
YuviPanda
88de48ebac
Document that authenticator's add_user maybe a coroutine
2016-12-01 19:31:23 +05:30
Min RK
d5a6e2b2ac
Merge pull request #886 from yuvipanda/spawner-docs
2016-11-30 13:48:05 +01:00
Min RK
2152a94156
review pass on spawner docstring changes
...
- small wording, spelling tweaks
- rst formatting fixes
- remove some spurious, cluttering newlines
- clearer traitlets default values on first line
2016-11-30 13:43:59 +01:00
Min RK
bc3824e9bf
review pass on auth docstrings
2016-11-30 13:22:07 +01:00
YuviPanda
60bc92cf78
Spawner doc fixes per @willingc
2016-11-30 14:02:02 +05:30
YuviPanda
3b15467738
Clearer module docstring for spawner.py
2016-11-29 16:26:34 +08:00
YuviPanda
4970fe0a1c
Add more docs for spawner base class
2016-11-29 16:25:15 +08:00
YuviPanda
7dbe2425b8
Fix typo
2016-11-29 16:00:25 +08:00
YuviPanda
433d44a642
Add docs for PAMAuthenticator
2016-11-29 15:58:35 +08:00
YuviPanda
7733d320d0
Add more docs to LocalAuthenticator
2016-11-29 15:56:16 +08:00
YuviPanda
20d367c2a8
Add more docs for authenticator base class
2016-11-29 15:55:32 +08:00
YuviPanda
4687fbe075
Add extended docs for LocalProcessSpawner too
2016-11-28 23:07:54 -08:00
YuviPanda
b0dc52781e
Add info about shell expansion to cmd / args traitlets
...
We should probably standardize this too
2016-11-28 22:45:06 -08:00
YuviPanda
4f1f7d6b8f
Add example use for default_url traitlet
2016-11-28 22:42:10 -08:00
YuviPanda
41f8608f4e
Fix port config documentation to match reality
2016-11-28 22:41:47 -08:00
Min RK
ba3a8f2e76
Merge pull request #887 from yuvipanda/rename-spec
...
Rename MemorySpecification to ByteSpecification
2016-11-28 10:27:41 +01:00
YuviPanda
12e3a5496d
Rename MemorySpecification to ByteSpecification
2016-11-27 17:57:34 -08:00
YuviPanda
280644bab5
Expand traitlet documentation for spawner base class
2016-11-27 17:53:41 -08:00
Carol Willing
bf28371356
Merge pull request #882 from minrk/alembic.ini
...
add alembic.ini to package_data
2016-11-22 08:10:43 -08:00
Carol Willing
ce237181f2
Merge pull request #881 from minrk/more-allow-async-whitelist
...
handle async check_whitelist in app
2016-11-22 07:46:27 -08:00
Min RK
85ca5a052e
add alembic.ini to package_data
2016-11-22 16:21:03 +01:00
Min RK
db8b3dbce9
handle async check_whitelist in app
...
follow-up to previous PR
2016-11-22 16:06:08 +01:00
Min RK
9c2d56f015
Merge pull request #876 from jbweston/bugfix/whitelist-coroutine
...
allow `check_whitelist` to be a coroutine
2016-11-22 09:56:28 +01:00
Joseph Weston
d244a1e02f
allow check_whitelist
to be a coroutine
...
Some authenticators may have whitelist checking that requires
async operations.
2016-11-21 16:14:02 +01:00
Min RK
9f134277a9
Merge pull request #872 from jupyterhub/willingc-patch-1
...
Change py.test to newer convention of pytest
2016-11-16 10:18:15 +01:00
Carol Willing
ef9aca7bcb
Change py.test to newer convention of pytest
2016-11-15 14:13:03 -08:00
Min RK
32f39f23eb
Merge pull request #871 from jupyterhub/willingc-patch-1
...
Add info on tests to README
2016-11-15 20:39:59 +01:00
Carol Willing
c9b2beb821
Add info on tests to README
2016-11-15 06:35:39 -08:00
Min RK
e9ad82e350
release 0.7b1
2016-11-12 18:36:36 -08:00
Min RK
347dd3cc0f
prune docs/node_modules
2016-11-12 18:36:30 -08:00
Min RK
798346dbe8
Merge pull request #869 from willingc/doc-service
...
Edit Services doc content
2016-11-12 18:28:24 -08:00
Carol Willing
fd94c6de17
Fix missing link target
2016-11-12 18:16:59 -08:00
Carol Willing
3fc6fc32c5
Add review comment by @parente
2016-11-12 18:07:17 -08:00