forked from jupyter-server/jupyter_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.py
63 lines (49 loc) · 2.02 KB
/
application.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import os, jinja2
from traitlets import Unicode
from jupyter_server.extension.application import ExtensionApp, ExtensionAppJinjaMixin
from .handlers import (DefaultHandler, RedirectHandler,
ParameterHandler, TemplateHandler, TypescriptHandler, ErrorHandler)
DEFAULT_STATIC_FILES_PATH = os.path.join(os.path.dirname(__file__), "static")
DEFAULT_TEMPLATE_FILES_PATH = os.path.join(os.path.dirname(__file__), "templates")
class SimpleApp1(ExtensionAppJinjaMixin, ExtensionApp):
# The name of the extension.
name = "simple_ext1"
# The url that your extension will serve its homepage.
extension_url = '/simple_ext1/default'
# Should your extension expose other server extensions when launched directly?
load_other_extensions = True
# Local path to static files directory.
static_paths = [
DEFAULT_STATIC_FILES_PATH
]
# Local path to templates directory.
template_paths = [
DEFAULT_TEMPLATE_FILES_PATH
]
configA = Unicode('',
config=True,
help='Config A example.'
)
configB = Unicode('',
config=True,
help='Config B example.'
)
configC = Unicode('',
config=True,
help='Config C example.'
)
def initialize_handlers(self):
self.handlers.extend([
(r'/{}/default'.format(self.extension_name), DefaultHandler),
(r'/{}/params/(.+)$'.format(self.extension_name), ParameterHandler),
(r'/{}/template1/(.*)$'.format(self.extension_name), TemplateHandler),
(r'/{}/redirect'.format(self.extension_name), RedirectHandler),
(r'/{}/typescript/?'.format(self.extension_name), TypescriptHandler),
(r'/{}/(.*)', ErrorHandler)
])
def initialize_settings(self):
self.log.info('Config {}'.format(self.config))
#-----------------------------------------------------------------------------
# Main entry point
#-----------------------------------------------------------------------------
main = launch_new_instance = SimpleApp1.launch_instance