Skip to content

Commit f8ca236

Browse files
committed
Initial experiment
1 parent aacbd48 commit f8ca236

File tree

7 files changed

+79
-0
lines changed

7 files changed

+79
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory" : "components"
3+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module NotebookApp {
2+
3+
import Bootstrapper = phosphor.shell.Bootstrapper;
4+
5+
export
6+
class NotebookApplication extends Bootstrapper {
7+
configurePlugins(): Promise<void> {
8+
return this.pluginList.add([
9+
//plugins
10+
]);
11+
}
12+
}
13+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "phosphor-notebook",
3+
"main": "index.js",
4+
"version": "0.0.1",
5+
"authors": [
6+
"Jason Grout <[email protected]>"
7+
],
8+
"description": "Phosphor-based IPython notebook",
9+
"moduleType": [
10+
"amd"
11+
],
12+
"license": "BSD",
13+
"ignore": [
14+
"**/.*",
15+
"node_modules",
16+
"bower_components",
17+
"jupyter_notebook/static/components",
18+
"test",
19+
"tests"
20+
],
21+
"dependencies": {
22+
"phosphor": "~0.1.0"
23+
}
24+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link href="/static/components/phosphor/dist/phosphor.css" rel="stylesheet" type="text/css">
5+
<link href="build/index.css" rel="stylesheet" type="text/css">
6+
<script src="/static/components/phosphor/dist/phosphor.js"></script>
7+
<script src="build/app.js"></script>
8+
<script src="build/index.js"></script>
9+
</head>
10+
<body>
11+
<div id="app"></div>
12+
</body>
13+
</html>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module Notebook {
2+
3+
import NotebookApp = require("app");
4+
5+
function main(): void {
6+
var notebook = new NotebookApp.NotebookApplication;
7+
notebook.run();
8+
};
9+
10+
window.onload = main;
11+
}

jupyter_notebook/static/phosphor-notebook/tsconfig.json

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "v4",
3+
"repo": "borisyankov/DefinitelyTyped",
4+
"ref": "master",
5+
"path": "typings",
6+
"bundle": "typings/tsd.d.ts",
7+
"installed": {
8+
"codemirror/codemirror.d.ts": {
9+
"commit": "52fa2b9ce36f2c5843204e9bfbaada7cded9b47a"
10+
},
11+
"es6-promise/es6-promise.d.ts": {
12+
"commit": "52fa2b9ce36f2c5843204e9bfbaada7cded9b47a"
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)