Rename to `RetroLab` (#121)
* Rename text to RetroLab * More renaming * More renaming * Rename files * Update deps * Update logo * Lint * Update README.md * Minor CSS fix * Update tour * Update screencasts in README.mdpull/6294/head
parent
278233d653
commit
2047e3a5e4
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
{
|
||||
"NotebookApp": {
|
||||
"nbserver_extensions": {
|
||||
"jupyterlab_classic": true
|
||||
"retrolab": true
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"ServerApp": {
|
||||
"jpserver_extensions": {
|
||||
"jupyterlab_classic": true
|
||||
"retrolab": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 11 KiB |
@ -1,5 +0,0 @@
|
||||
import sys
|
||||
|
||||
from jupyterlab_classic.app import main
|
||||
|
||||
sys.exit(main())
|
||||
@ -1,9 +1,9 @@
|
||||
import '@jupyterlab-classic/application';
|
||||
import '@jupyterlab-classic/application-extension';
|
||||
import '@jupyterlab-classic/docmanager-extension';
|
||||
import '@jupyterlab-classic/help-extension';
|
||||
import '@jupyterlab-classic/lab-extension';
|
||||
import '@jupyterlab-classic/notebook-extension';
|
||||
import '@jupyterlab-classic/terminal-extension';
|
||||
import '@jupyterlab-classic/tree-extension';
|
||||
import '@jupyterlab-classic/ui-components';
|
||||
import '@retrolab/application';
|
||||
import '@retrolab/application-extension';
|
||||
import '@retrolab/docmanager-extension';
|
||||
import '@retrolab/help-extension';
|
||||
import '@retrolab/lab-extension';
|
||||
import '@retrolab/notebook-extension';
|
||||
import '@retrolab/terminal-extension';
|
||||
import '@retrolab/tree-extension';
|
||||
import '@retrolab/ui-components';
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
@import url('~@jupyterlab-classic/application/style/index.css');
|
||||
@import url('~@retrolab/application/style/index.css');
|
||||
@import url('~@lumino/widgets/style/index.css');
|
||||
|
||||
@import url('./base.css');
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import '@jupyterlab-classic/application/style/index.js';
|
||||
import '@retrolab/application/style/index.js';
|
||||
import '@lumino/widgets/style/index.js';
|
||||
|
||||
import './base.css';
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 9.1 KiB |
@ -1,22 +1,22 @@
|
||||
from ._version import __version__
|
||||
from .app import ClassicApp
|
||||
from .app import RetroApp
|
||||
from .serverextension import load_jupyter_server_extension
|
||||
|
||||
|
||||
def _jupyter_server_extension_paths():
|
||||
return [
|
||||
{
|
||||
'module': 'jupyterlab_classic'
|
||||
'module': 'retrolab'
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
def _jupyter_server_extension_points():
|
||||
return [{"module": "jupyterlab_classic", "app": ClassicApp}]
|
||||
return [{"module": "retrolab", "app": RetroApp}]
|
||||
|
||||
|
||||
def _jupyter_labextension_paths():
|
||||
return [{
|
||||
'src': 'labextension',
|
||||
'dest': '@jupyterlab-classic/lab-extension'
|
||||
'dest': '@retrolab/lab-extension'
|
||||
}]
|
||||
@ -0,0 +1,5 @@
|
||||
import sys
|
||||
|
||||
from retrolab.app import main
|
||||
|
||||
sys.exit(main())
|
||||
@ -1,8 +1,8 @@
|
||||
from .app import ClassicApp
|
||||
from .app import RetroApp
|
||||
|
||||
|
||||
def load_jupyter_server_extension(serverapp):
|
||||
extension = ClassicApp()
|
||||
extension = RetroApp()
|
||||
extension.serverapp = serverapp
|
||||
extension.load_config_file()
|
||||
extension.update_config(serverapp.config)
|
||||
Loading…
Reference in new issue