├── .gitignore ├── .travis.yml ├── 1.+Basics.snb ├── 2.+Interactivity.snb ├── 3.+Renderers.snb ├── 4.+Completions.snb ├── COPYING ├── README.md ├── common └── src │ └── main │ └── scala │ └── com │ └── bwater │ └── notebook │ ├── As.scala │ ├── Renderer.scala │ ├── StringCompletor.scala │ ├── Widget.scala │ ├── util │ ├── ClassUtils.scala │ └── Logging.scala │ └── widgets │ ├── DropDown.scala │ ├── InputBox.scala │ └── package.scala ├── kernel └── src │ ├── main │ └── scala │ │ ├── HackIMain.scala │ │ ├── ReplCalculator.scala │ │ └── com │ │ └── bwater │ │ └── notebook │ │ └── kernel │ │ ├── ConfigUtils.scala │ │ ├── EvaluationResult.scala │ │ ├── Repl.scala │ │ ├── StringCompletorResolver.scala │ │ ├── TestStringCompletor.scala │ │ ├── completor │ │ └── FileCompletor.scala │ │ └── render.scala │ └── test │ └── scala │ └── com │ └── bwater │ └── notebook │ └── kernel │ └── ReplTests.scala ├── observable └── src │ └── main │ ├── assets │ └── observable │ │ └── js │ │ ├── equiv.js │ │ └── observable.js │ └── scala │ └── com │ └── bwater │ └── notebook │ ├── Codec.scala │ ├── Connection.scala │ ├── JSBus.scala │ ├── ObsWebSocketService.scala │ ├── Observable.scala │ ├── ObservableHandler.scala │ ├── ObservableIntent.scala │ ├── ObservableMessage.scala │ └── Observer.scala ├── project ├── build.properties ├── build.scala └── plugins.sbt ├── server └── src │ ├── main │ ├── assets │ │ ├── from_ipython │ │ │ ├── README │ │ │ └── static │ │ │ │ ├── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── demo │ │ │ │ │ ├── activeline.html │ │ │ │ │ ├── changemode.html │ │ │ │ │ ├── closetag.html │ │ │ │ │ ├── complete.html │ │ │ │ │ ├── emacs.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── formatting.html │ │ │ │ │ ├── fullscreen.html │ │ │ │ │ ├── loadmode.html │ │ │ │ │ ├── marker.html │ │ │ │ │ ├── matchhighlighter.html │ │ │ │ │ ├── multiplex.html │ │ │ │ │ ├── mustache.html │ │ │ │ │ ├── preview.html │ │ │ │ │ ├── resize.html │ │ │ │ │ ├── runmode.html │ │ │ │ │ ├── search.html │ │ │ │ │ ├── theme.html │ │ │ │ │ ├── vim.html │ │ │ │ │ ├── visibletabs.html │ │ │ │ │ └── xmlcomplete.html │ │ │ │ ├── doc │ │ │ │ │ ├── baboon.png │ │ │ │ │ ├── baboon_vector.svg │ │ │ │ │ ├── compress.html │ │ │ │ │ ├── docs.css │ │ │ │ │ ├── internals.html │ │ │ │ │ ├── manual.html │ │ │ │ │ ├── oldrelease.html │ │ │ │ │ ├── reporting.html │ │ │ │ │ └── upgrade_v2.2.html │ │ │ │ ├── index.html │ │ │ │ ├── keymap │ │ │ │ │ ├── emacs.js │ │ │ │ │ └── vim.js │ │ │ │ ├── lib │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── codemirror.js │ │ │ │ │ └── util │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── formatting.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ ├── pig-hint.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── searchcursor.js │ │ │ │ │ │ ├── simple-hint.css │ │ │ │ │ │ ├── simple-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── mode │ │ │ │ │ ├── clike │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haskell │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── javascript.js │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── less │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── less.js │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── markdown.js │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mysql.js │ │ │ │ │ ├── ntriples │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── ocaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ocaml.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── perl │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── php.js │ │ │ │ │ ├── pig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── plsql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── plsql.js │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── python │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── r │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ ├── changes.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── spec.css │ │ │ │ │ │ │ └── spec.js │ │ │ │ │ ├── rst │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ruby.js │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── shell.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── stex │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.html │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── vb │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── testBase.js │ │ │ │ │ │ │ ├── testEmptySequenceKeyword.js │ │ │ │ │ │ │ ├── testMultiAttr.js │ │ │ │ │ │ │ ├── testNamespaces.js │ │ │ │ │ │ │ ├── testProcessingInstructions.js │ │ │ │ │ │ │ └── testQuotes.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ ├── package.json │ │ │ │ ├── test │ │ │ │ │ ├── driver.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mode_test.css │ │ │ │ │ ├── mode_test.js │ │ │ │ │ └── test.js │ │ │ │ └── theme │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── ipython.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ └── xq-dark.css │ │ │ │ ├── codemirror_README.txt │ │ │ │ ├── css │ │ │ │ ├── boilerplate.css │ │ │ │ ├── fbm.css │ │ │ │ ├── login.css │ │ │ │ ├── logout.css │ │ │ │ ├── notebook.css │ │ │ │ ├── page.css │ │ │ │ ├── printnotebook.css │ │ │ │ ├── projectdashboard.css │ │ │ │ ├── renderedhtml.css │ │ │ │ └── ribbon.less │ │ │ │ ├── dateformat │ │ │ │ └── date.format.js │ │ │ │ ├── favicon.ico │ │ │ │ ├── js │ │ │ │ ├── cell.js │ │ │ │ ├── clusterlist.js │ │ │ │ ├── codecell.js │ │ │ │ ├── csrf.js │ │ │ │ ├── events.js │ │ │ │ ├── initmathjax.js │ │ │ │ ├── kernel.js │ │ │ │ ├── keybindings.js │ │ │ │ ├── layoutmanager.js │ │ │ │ ├── loginmain.js │ │ │ │ ├── loginwidget.js │ │ │ │ ├── logoutmain.js │ │ │ │ ├── menubar.js │ │ │ │ ├── namespace.js │ │ │ │ ├── notebook.js │ │ │ │ ├── notebooklist.js │ │ │ │ ├── notebookmain.js │ │ │ │ ├── notificationwidget.js │ │ │ │ ├── page.js │ │ │ │ ├── pagemain.js │ │ │ │ ├── pager.js │ │ │ │ ├── printnotebookmain.js │ │ │ │ ├── projectdashboardmain.js │ │ │ │ ├── quickhelp.js │ │ │ │ ├── savewidget.js │ │ │ │ ├── textcell.js │ │ │ │ ├── toolbar.js │ │ │ │ └── utils.js │ │ │ │ ├── pagedown │ │ │ │ ├── LICENSE.txt │ │ │ │ └── Markdown.Converter.js │ │ │ │ └── prettify │ │ │ │ ├── COPYING │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ ├── templates │ │ │ ├── default.ssp │ │ │ ├── notebook.ssp │ │ │ ├── printnotebook.ssp │ │ │ └── projectdashboard.ssp │ │ └── thirdparty │ │ │ └── static │ │ │ ├── bootstrap-icon │ │ │ ├── README.txt │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ └── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── js │ │ │ │ └── bootstrap.js │ │ │ └── version.txt │ │ │ ├── curl │ │ │ ├── curl.jsm │ │ │ └── plugin │ │ │ │ ├── bundle.js │ │ │ │ ├── js.jsm │ │ │ │ └── link.jsm │ │ │ ├── jquery │ │ │ ├── css │ │ │ │ └── base │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── jquery-ui.min.css │ │ │ └── js │ │ │ │ ├── jquery-ui.jsm │ │ │ │ ├── jquery.autogrow.js │ │ │ │ ├── jquery.jsm │ │ │ │ └── jquery.mousewheel.js │ │ │ ├── jwerty.js │ │ │ ├── knockout.jsm │ │ │ └── less.jsm │ ├── resources │ │ ├── com │ │ │ └── bwater │ │ │ │ └── notebook │ │ │ │ └── server │ │ │ │ └── init.sc │ │ ├── log4j.server.properties │ │ ├── notebook-server.conf │ │ └── reference.conf │ └── scala │ │ ├── CalcWebSocketService.scala │ │ ├── Dispatcher.scala │ │ ├── KernelMessage.scala │ │ ├── LayoutTools.scala │ │ ├── NBSerializer.scala │ │ ├── NotebookManager.scala │ │ ├── ReqLogger.scala │ │ ├── ScalaNotebookConfig.scala │ │ ├── Scalate.scala │ │ ├── Server.scala │ │ └── WebSockWrapper.scala │ └── test │ └── scala │ ├── ClientAuthTests.scala │ ├── KernelTests.scala │ └── NBSerializerTests.scala └── subprocess └── src ├── main ├── resources │ ├── kernel.conf │ ├── log4j.subprocess.properties │ └── test-server.conf └── scala │ └── com │ └── bwater │ └── notebook │ ├── GuardedActor.scala │ ├── Kernel.scala │ └── kernel │ ├── pfork │ ├── BetterFork.scala │ └── ChildProcessMain.java │ └── remote │ ├── AkkaConfigUtils.scala │ └── RemoteActorSystem.scala └── test ├── resources ├── log4j.properties └── subprocess-test.conf └── scala └── com └── bwater └── notebook ├── EchoActor.scala ├── SingleVMSecurityTests.scala └── SingleVMTests.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/.travis.yml -------------------------------------------------------------------------------- /1.+Basics.snb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/1.+Basics.snb -------------------------------------------------------------------------------- /2.+Interactivity.snb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/2.+Interactivity.snb -------------------------------------------------------------------------------- /3.+Renderers.snb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/3.+Renderers.snb -------------------------------------------------------------------------------- /4.+Completions.snb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/4.+Completions.snb -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/README.md -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/As.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/As.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/Renderer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/Renderer.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/StringCompletor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/StringCompletor.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/Widget.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/Widget.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/util/ClassUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/util/ClassUtils.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/util/Logging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/util/Logging.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/widgets/DropDown.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/widgets/DropDown.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/widgets/InputBox.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/widgets/InputBox.scala -------------------------------------------------------------------------------- /common/src/main/scala/com/bwater/notebook/widgets/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/common/src/main/scala/com/bwater/notebook/widgets/package.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/HackIMain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/HackIMain.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/ReplCalculator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/ReplCalculator.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/com/bwater/notebook/kernel/ConfigUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/com/bwater/notebook/kernel/ConfigUtils.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/com/bwater/notebook/kernel/EvaluationResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/com/bwater/notebook/kernel/EvaluationResult.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/com/bwater/notebook/kernel/Repl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/com/bwater/notebook/kernel/Repl.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/com/bwater/notebook/kernel/StringCompletorResolver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/com/bwater/notebook/kernel/StringCompletorResolver.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/com/bwater/notebook/kernel/TestStringCompletor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/com/bwater/notebook/kernel/TestStringCompletor.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/com/bwater/notebook/kernel/completor/FileCompletor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/com/bwater/notebook/kernel/completor/FileCompletor.scala -------------------------------------------------------------------------------- /kernel/src/main/scala/com/bwater/notebook/kernel/render.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/main/scala/com/bwater/notebook/kernel/render.scala -------------------------------------------------------------------------------- /kernel/src/test/scala/com/bwater/notebook/kernel/ReplTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/kernel/src/test/scala/com/bwater/notebook/kernel/ReplTests.scala -------------------------------------------------------------------------------- /observable/src/main/assets/observable/js/equiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/assets/observable/js/equiv.js -------------------------------------------------------------------------------- /observable/src/main/assets/observable/js/observable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/assets/observable/js/observable.js -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/Codec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/Codec.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/Connection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/Connection.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/JSBus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/JSBus.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/ObsWebSocketService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/ObsWebSocketService.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/Observable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/Observable.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/ObservableHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/ObservableHandler.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/ObservableIntent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/ObservableIntent.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/ObservableMessage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/ObservableMessage.scala -------------------------------------------------------------------------------- /observable/src/main/scala/com/bwater/notebook/Observer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/observable/src/main/scala/com/bwater/notebook/Observer.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/project/build.scala -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/README -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/LICENSE -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/README.md -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/activeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/activeline.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/changemode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/changemode.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/closetag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/closetag.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/complete.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/emacs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/emacs.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/folding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/folding.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/formatting.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/fullscreen.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/loadmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/loadmode.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/marker.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/matchhighlighter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/matchhighlighter.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/multiplex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/multiplex.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/mustache.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/preview.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/resize.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/runmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/runmode.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/search.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/theme.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/vim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/vim.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/visibletabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/visibletabs.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/demo/xmlcomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/demo/xmlcomplete.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/baboon.png -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/baboon_vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/baboon_vector.svg -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/compress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/compress.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/docs.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/internals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/internals.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/manual.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/oldrelease.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/oldrelease.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/reporting.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/doc/upgrade_v2.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/doc/upgrade_v2.2.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/keymap/emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/keymap/emacs.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/keymap/vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/keymap/vim.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/codemirror.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/codemirror.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/closetag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/closetag.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/dialog.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/dialog.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/foldcode.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/formatting.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/javascript-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/javascript-hint.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/loadmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/loadmode.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/match-highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/match-highlighter.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/multiplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/multiplex.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/overlay.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/pig-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/pig-hint.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/runmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/runmode.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/search.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/searchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/searchcursor.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/simple-hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/simple-hint.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/simple-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/simple-hint.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/lib/util/xml-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/lib/util/xml-hint.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/clike/clike.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/clike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/clike/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/clike/scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/clike/scala.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/clojure/clojure.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/clojure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/clojure/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/coffeescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/coffeescript/LICENSE -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/coffeescript/coffeescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/coffeescript/coffeescript.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/coffeescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/coffeescript/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/css/css.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/css/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/diff/diff.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/diff/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ecl/ecl.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ecl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ecl/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/erlang/erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/erlang/erlang.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/erlang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/erlang/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/gfm/gfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/gfm/gfm.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/gfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/gfm/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/go/go.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/go/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/groovy/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/groovy/groovy.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/groovy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/groovy/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/haskell/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/haskell/haskell.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/haskell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/haskell/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/haxe/haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/haxe/haxe.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/haxe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/haxe/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/htmlembedded/htmlembedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/htmlembedded/htmlembedded.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/htmlembedded/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/htmlembedded/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/htmlmixed/htmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/htmlmixed/htmlmixed.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/htmlmixed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/htmlmixed/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/javascript/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/javascript/javascript.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/jinja2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/jinja2/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/jinja2/jinja2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/jinja2/jinja2.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/less/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/less/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/less/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/less/less.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/lua/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/lua/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/lua/lua.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/markdown/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/markdown/markdown.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/mysql/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/mysql/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/mysql/mysql.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ntriples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ntriples/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ntriples/ntriples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ntriples/ntriples.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ocaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ocaml/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ocaml/ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ocaml/ocaml.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/pascal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/pascal/LICENSE -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/pascal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/pascal/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/pascal/pascal.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/perl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/perl/LICENSE -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/perl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/perl/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/perl/perl.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/php/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/php/php.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/pig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/pig/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/pig/pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/pig/pig.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/plsql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/plsql/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/plsql/plsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/plsql/plsql.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/properties/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/properties/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/properties/properties.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/python/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/python/LICENSE.txt -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/python/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/python/python.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/r/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/r/LICENSE -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/r/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rpm/changes/changes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rpm/changes/changes.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rpm/changes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rpm/changes/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rpm/spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rpm/spec/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rpm/spec/spec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rpm/spec/spec.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rpm/spec/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rpm/spec/spec.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rst/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rst/rst.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ruby/LICENSE -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ruby/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ruby/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/ruby/ruby.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rust/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rust/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/rust/rust.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/scheme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/scheme/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/scheme/scheme.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/shell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/shell/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/shell/shell.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/smalltalk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/smalltalk/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/smalltalk/smalltalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/smalltalk/smalltalk.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/smarty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/smarty/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/smarty/smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/smarty/smarty.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/sparql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/sparql/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/sparql/sparql.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/stex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/stex/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/stex/stex.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/stex/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/stex/test.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/tiddlywiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/tiddlywiki/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/tiddlywiki/tiddlywiki.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/tiddlywiki/tiddlywiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/tiddlywiki/tiddlywiki.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/tiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/tiki/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/tiki/tiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/tiki/tiki.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/tiki/tiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/tiki/tiki.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/vb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/vb/LICENSE.txt -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/vb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/vb/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/vb/vb.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/vbscript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/vbscript/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/vbscript/vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/vbscript/vbscript.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/velocity/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/velocity/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/velocity/velocity.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/verilog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/verilog/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/verilog/verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/verilog/verilog.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xml/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xml/xml.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/LICENSE -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testBase.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testEmptySequenceKeyword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testEmptySequenceKeyword.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testMultiAttr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testMultiAttr.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testNamespaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testNamespaces.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testProcessingInstructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testProcessingInstructions.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testQuotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/test/testQuotes.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/xquery/xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/xquery/xquery.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/yaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/yaml/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/mode/yaml/yaml.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/package.json -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/test/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/test/driver.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/test/index.html -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/test/mode_test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/test/mode_test.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/test/mode_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/test/mode_test.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/test/test.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/ambiance.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/blackboard.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/cobalt.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/eclipse.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/elegant.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/erlang-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/erlang-dark.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/ipython.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/ipython.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/lesser-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/lesser-dark.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/monokai.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/neat.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/night.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/rubyblue.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/vibrant-ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/vibrant-ink.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror/theme/xq-dark.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/codemirror_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/codemirror_README.txt -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/boilerplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/boilerplate.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/fbm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/fbm.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/login.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/logout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/logout.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/notebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/notebook.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/page.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/printnotebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/printnotebook.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/projectdashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/projectdashboard.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/renderedhtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/renderedhtml.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/css/ribbon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/css/ribbon.less -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/dateformat/date.format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/dateformat/date.format.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/favicon.ico -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/cell.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/clusterlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/clusterlist.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/codecell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/codecell.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/csrf.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/events.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/initmathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/initmathjax.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/kernel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/kernel.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/keybindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/keybindings.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/layoutmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/layoutmanager.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/loginmain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/loginmain.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/loginwidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/loginwidget.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/logoutmain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/logoutmain.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/menubar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/menubar.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/namespace.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/notebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/notebook.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/notebooklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/notebooklist.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/notebookmain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/notebookmain.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/notificationwidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/notificationwidget.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/page.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/pagemain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/pagemain.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/pager.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/printnotebookmain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/printnotebookmain.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/projectdashboardmain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/projectdashboardmain.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/quickhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/quickhelp.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/savewidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/savewidget.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/textcell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/textcell.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/toolbar.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/js/utils.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/pagedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/pagedown/LICENSE.txt -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/pagedown/Markdown.Converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/pagedown/Markdown.Converter.js -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/prettify/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/prettify/COPYING -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/prettify/prettify.css -------------------------------------------------------------------------------- /server/src/main/assets/from_ipython/static/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/from_ipython/static/prettify/prettify.js -------------------------------------------------------------------------------- /server/src/main/assets/templates/default.ssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/templates/default.ssp -------------------------------------------------------------------------------- /server/src/main/assets/templates/notebook.ssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/templates/notebook.ssp -------------------------------------------------------------------------------- /server/src/main/assets/templates/printnotebook.ssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/templates/printnotebook.ssp -------------------------------------------------------------------------------- /server/src/main/assets/templates/projectdashboard.ssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/templates/projectdashboard.ssp -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap-icon/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap-icon/README.txt -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap-icon/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap-icon/css/bootstrap.css -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap-icon/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap-icon/css/bootstrap.min.css -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap-icon/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap-icon/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap-icon/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap-icon/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/bootstrap/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/bootstrap/version.txt -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/curl/curl.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/curl/curl.jsm -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/curl/plugin/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/curl/plugin/bundle.js -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/curl/plugin/js.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/curl/plugin/js.jsm -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/curl/plugin/link.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/curl/plugin/link.jsm -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/css/base/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/css/base/jquery-ui.min.css -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/js/jquery-ui.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/js/jquery-ui.jsm -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/js/jquery.autogrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/js/jquery.autogrow.js -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/js/jquery.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/js/jquery.jsm -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jquery/js/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jquery/js/jquery.mousewheel.js -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/jwerty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/jwerty.js -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/knockout.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/knockout.jsm -------------------------------------------------------------------------------- /server/src/main/assets/thirdparty/static/less.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/assets/thirdparty/static/less.jsm -------------------------------------------------------------------------------- /server/src/main/resources/com/bwater/notebook/server/init.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/resources/com/bwater/notebook/server/init.sc -------------------------------------------------------------------------------- /server/src/main/resources/log4j.server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/resources/log4j.server.properties -------------------------------------------------------------------------------- /server/src/main/resources/notebook-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/resources/notebook-server.conf -------------------------------------------------------------------------------- /server/src/main/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/resources/reference.conf -------------------------------------------------------------------------------- /server/src/main/scala/CalcWebSocketService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/CalcWebSocketService.scala -------------------------------------------------------------------------------- /server/src/main/scala/Dispatcher.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/Dispatcher.scala -------------------------------------------------------------------------------- /server/src/main/scala/KernelMessage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/KernelMessage.scala -------------------------------------------------------------------------------- /server/src/main/scala/LayoutTools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/LayoutTools.scala -------------------------------------------------------------------------------- /server/src/main/scala/NBSerializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/NBSerializer.scala -------------------------------------------------------------------------------- /server/src/main/scala/NotebookManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/NotebookManager.scala -------------------------------------------------------------------------------- /server/src/main/scala/ReqLogger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/ReqLogger.scala -------------------------------------------------------------------------------- /server/src/main/scala/ScalaNotebookConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/ScalaNotebookConfig.scala -------------------------------------------------------------------------------- /server/src/main/scala/Scalate.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/Scalate.scala -------------------------------------------------------------------------------- /server/src/main/scala/Server.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/Server.scala -------------------------------------------------------------------------------- /server/src/main/scala/WebSockWrapper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/main/scala/WebSockWrapper.scala -------------------------------------------------------------------------------- /server/src/test/scala/ClientAuthTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/test/scala/ClientAuthTests.scala -------------------------------------------------------------------------------- /server/src/test/scala/KernelTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/test/scala/KernelTests.scala -------------------------------------------------------------------------------- /server/src/test/scala/NBSerializerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/server/src/test/scala/NBSerializerTests.scala -------------------------------------------------------------------------------- /subprocess/src/main/resources/kernel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/resources/kernel.conf -------------------------------------------------------------------------------- /subprocess/src/main/resources/log4j.subprocess.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/resources/log4j.subprocess.properties -------------------------------------------------------------------------------- /subprocess/src/main/resources/test-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/resources/test-server.conf -------------------------------------------------------------------------------- /subprocess/src/main/scala/com/bwater/notebook/GuardedActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/scala/com/bwater/notebook/GuardedActor.scala -------------------------------------------------------------------------------- /subprocess/src/main/scala/com/bwater/notebook/Kernel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/scala/com/bwater/notebook/Kernel.scala -------------------------------------------------------------------------------- /subprocess/src/main/scala/com/bwater/notebook/kernel/pfork/BetterFork.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/scala/com/bwater/notebook/kernel/pfork/BetterFork.scala -------------------------------------------------------------------------------- /subprocess/src/main/scala/com/bwater/notebook/kernel/pfork/ChildProcessMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/scala/com/bwater/notebook/kernel/pfork/ChildProcessMain.java -------------------------------------------------------------------------------- /subprocess/src/main/scala/com/bwater/notebook/kernel/remote/AkkaConfigUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/scala/com/bwater/notebook/kernel/remote/AkkaConfigUtils.scala -------------------------------------------------------------------------------- /subprocess/src/main/scala/com/bwater/notebook/kernel/remote/RemoteActorSystem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/main/scala/com/bwater/notebook/kernel/remote/RemoteActorSystem.scala -------------------------------------------------------------------------------- /subprocess/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /subprocess/src/test/resources/subprocess-test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/test/resources/subprocess-test.conf -------------------------------------------------------------------------------- /subprocess/src/test/scala/com/bwater/notebook/EchoActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/test/scala/com/bwater/notebook/EchoActor.scala -------------------------------------------------------------------------------- /subprocess/src/test/scala/com/bwater/notebook/SingleVMSecurityTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/test/scala/com/bwater/notebook/SingleVMSecurityTests.scala -------------------------------------------------------------------------------- /subprocess/src/test/scala/com/bwater/notebook/SingleVMTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bridgewater/scala-notebook/HEAD/subprocess/src/test/scala/com/bwater/notebook/SingleVMTests.scala --------------------------------------------------------------------------------