Jeff

Results 8 issues of Jeff

The `process_one` function [catches](https://github.com/ipython/ipykernel/blob/db5f708f66277110e4336cb4210a12d05323c564/ipykernel/kernelbase.py#L444) `asyncio.QueueEmpty`, but `msg_queue` is a tornado Queue and `get_nowait` [raises](https://github.com/tornadoweb/tornado/blob/aa9d32d5e89b290dad69e0c6655b7497ea492e45/tornado/queues.py#L272) its own [QueueEmpty](https://github.com/tornadoweb/tornado/blob/aa9d32d5e89b290dad69e0c6655b7497ea492e45/tornado/queues.py#L47) type, not the one in asyncio. This looks like it was part of...

Minimal example: ``` results = IRuby.form do input :var, default: 'default' end puts results ``` The results hash should contain `:var => 'default'` if the user leaves it unchanged, but...

bug

This is perhaps an obscure use case, but... if you are using Jupyter Lab 3 (which uses the new jupyter_server backend instead of the notebook backend), then go to Help...

Currently only admin-trusted notebooks may contain output. However, that output could contain HTML that causes the rest of the page to render poorly. It could also contain malicious HTML, but...

Would it be possible to support HTML tags in topbar-text to style the text? My workplace has a custom extension for the classic notebook UI to add some dynamic warning...

Some subset of... - --reinstall: run the install block again, in case of partial failure - --upgrade: update the appropriate apks, etc - --install-only: don't call the real executable at...

enhancement

My organization uses Voila on a corporate network without internet access. The default template [links to unpkg.com](https://github.com/voila-dashboards/voila/blob/master/share/jupyter/voila/templates/default/nbconvert_templates/base.tpl#L12) for the font-awesome stylesheet. We can't get to that, so we're missing icons...

My organization was looking at using voila-material as our default template (love the kernel-busy indicator!), but we discovered it breaks a widget pattern we use for authentication. We have to...