You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/jupyterlab/handlers/error_handler.py

34 lines
679 B

# coding: utf-8
"""An error handler for JupyterLab."""
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from tornado import web
from jupyterlab_server.server import JupyterHandler
TEMPLATE = """
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>JupyterLab Error</title>
</head>
<body>
<h1>JupyterLab Error<h1>
%s
</body>
"""
class ErrorHandler(JupyterHandler):
def initialize(self, messages):
self.messages = messages
@web.authenticated
@web.removeslash
def get(self):
msgs = ['<h2>%s</h2>' % msg for msg in self.messages]
self.write(TEMPLATE % '\n'.join(msgs))