-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use our own jinja2 template loader #255
Conversation
- Our template loader setup was a hack, and that hack seems to have stopped working. - We just use our own loader instead. This means we lose the base translation functionality of upstream render_template - but we were not using it at all anyway, so 'tis alright. - Looks like the path for the stylesheet we were 'borrowing' from classic notebook changed location, so update to use the new location. This will stop existing after notebook v7, and we will need to use our own. Fixes jupyterhub#235
@betolink you might be interested in this too. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feels like a cleaner implementation, and since it fixes a nasty bug I think this is a great improvement! +1 from me unless somebody uncovers any other technical issues
Can someone here make it to one our Jupyter Server Contributor Hours? 😃 It would be really fun to try and port this extension in real-time. Then, we can process record, document, and share this in the server docs. I'm happy to lead the development and we can pair program as a team during the call. |
Just to be clear @Zsailer - you're talking about the resolution of this issue, right? Agree that would be great :-) but I'm still +1 on merging this PR in the meantime! |
Ah, yes—I was referring to #240. Sorry for the confusion! 😃 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Thanks a lot, @manics! Do you think we can do a release? |
I think so, if we don't need anything from #240 |
have stopped working.
translation functionality of upstream render_template - but we
were not using it at all anyway, so 'tis alright.
from classic notebook changed location, so update to use the
new location. This will stop existing after notebook v7,
and we will need to use our own.
Fixes #235