Merge pull request #2065 from jinmehta13/console-welcome-message

Welcome Message for Console and Terminal Output
Matthias Bussonnier 9 years ago committed by GitHub
commit be5cf10a7d

@ -6,6 +6,7 @@
from __future__ import absolute_import, print_function
import notebook
import binascii
import datetime
import errno
@ -1349,6 +1350,11 @@ class NotebookApp(JupyterApp):
for line in self.notebook_info().split("\n"):
info(line)
info("Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).")
if 'dev' in notebook.__version__:
info("Welcome to Project Jupyter! Explore the various tools available"
" and their corresponding documentation. If you are interested"
" in contributing to the platform, please visit the community"
"resources section at http://jupyter.org/community.html.")
self.write_server_info_file()

@ -58,6 +58,9 @@ require([
console.warn(err);
}
console.log('Welcome to Project Jupyter! Explore the various tools available and their corresponding documentation. If you are interested in contributing to the platform, please visit the community resources section at http://jupyter.org/community.html.');
// Setup all of the config related things
var common_options = {

Loading…
Cancel
Save