Move SQL 2019 extension's notebook code into Azure Data Studio (#4090)

This commit is contained in:
Cory Rivera
2019-02-20 10:55:49 -08:00
committed by GitHub
parent 2dd71cbe26
commit 70838c3e24
66 changed files with 8098 additions and 14 deletions

View File

@@ -0,0 +1,4 @@
// Make sure that all links load in the same tab
define(['base/js/namespace'], function (Jupyter) {
Jupyter._target = '_self';
});

View File

@@ -0,0 +1,6 @@
# Disable CSP in order to load Jupyter inside Azure Data Studio
c.NotebookApp.tornado_settings = {
'headers': {'Content-Security-Policy': ''}
}
c.NotebookApp.open_browser = False

View File

@@ -0,0 +1,40 @@
{
"kernel_python_credentials": {
"url": "",
"auth": "None"
},
"kernel_scala_credentials": {
"url": "",
"auth": "None"
},
"kernel_r_credentials": {
"url": "",
"auth": "None"
},
"ignore_ssl_errors": true,
"logging_config": {
"version": 1,
"formatters": {
"magicsFormatter": {
"format": "%(asctime)s\t%(levelname)s\t%(message)s",
"datefmt": ""
}
},
"handlers": {
"magicsHandler": {
"class": "hdijupyterutils.filehandler.MagicsFileHandler",
"formatter": "magicsFormatter",
"home_path": ""
}
},
"loggers": {
"magicsLogger": {
"handlers": [
"magicsHandler"
],
"level": "DEBUG",
"propagate": 0
}
}
}
}