File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -187,8 +187,6 @@ open http://localhost:8888/
187
187
# TODO Fix Default URL, it does not show on startup.
188
188
# Home page as defined by default_url = '/default'.
189
189
open http://localhost:8888/simple_ext11/default
190
- # HTML static page.
191
- open http://localhost:8888/static/simple_ext11/test.html
192
190
# Content from Handlers.
193
191
open http://localhost:8888/simple_ext11/params/test? var1=foo
194
192
# Content from Template.
Original file line number Diff line number Diff line change 1
1
from .application import SimpleApp1
2
2
3
3
4
- def _jupyter_server_extension_paths ():
4
+ def _jupyter_server_extension_points ():
5
5
return [{"module" : "simple_ext1.application" , "app" : SimpleApp1 }]
Original file line number Diff line number Diff line change 3
3
from .application import SimpleApp11
4
4
5
5
6
- def _jupyter_server_extension_paths ():
6
+ def _jupyter_server_extension_points ():
7
7
return [{"module" : "simple_ext11.application" , "app" : SimpleApp11 }]
Original file line number Diff line number Diff line change 3
3
from .application import SimpleApp2
4
4
5
5
6
- def _jupyter_server_extension_paths ():
6
+ def _jupyter_server_extension_points ():
7
7
return [
8
8
{"module" : "simple_ext2.application" , "app" : SimpleApp2 },
9
9
]
You can’t perform that action at this time.
0 commit comments