From d4cd13a3d8f76632e3008053e6cb53e284c5ba6f 2014-01-29 03:11:31
From: Brian E. Granger <ellisonbg@gmail.com>
Date: 2014-01-29 03:11:31
Subject: [PATCH] Removing Kernel menu.

---

diff --git a/IPython/html/static/notebook/js/menubar.js b/IPython/html/static/notebook/js/menubar.js
index e531eef..5d05b34 100644
--- a/IPython/html/static/notebook/js/menubar.js
+++ b/IPython/html/static/notebook/js/menubar.js
@@ -267,13 +267,6 @@ var IPython = (function (IPython) {
         this.element.find('#clear_all_output').click(function () {
             IPython.notebook.clear_all_output();
         });
-        // Kernel
-        this.element.find('#int_kernel').click(function () {
-            IPython.notebook.session.interrupt_kernel();
-        });
-        this.element.find('#restart_kernel').click(function () {
-            IPython.notebook.restart_kernel();
-        });
         // Help
         this.element.find('#keyboard_shortcuts').click(function () {
             IPython.quick_help.show_keyboard_shortcuts();
diff --git a/IPython/html/templates/notebook.html b/IPython/html/templates/notebook.html
index 7d05482..5a1821a 100644
--- a/IPython/html/templates/notebook.html
+++ b/IPython/html/templates/notebook.html
@@ -188,16 +188,6 @@ class="notebook_app"
                 </li>
             </ul>
         </li>
-        <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Kernel</a>
-            <ul class="dropdown-menu">
-                <li id="int_kernel"
-                    title="Send KeyboardInterrupt (CTRL-C) to the Kernel">
-                    <a href="#">Interrupt</a></li>
-                <li id="restart_kernel"
-                    title="Restart the Kernel">
-                    <a href="#">Restart</a></li>
-            </ul>
-        </li>
         <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Help</a>
             <ul class="dropdown-menu" title="Opens in a new window">
                 <li><a href="http://ipython.org/documentation.html" target="_blank">IPython Help</a></li>