Description: use usr/share/ipython/notebook by default for the static data
 provided by ipython-notebook-common
Author: Julian Taylor <jtaylor.debian@googlemail.com>
Forwarded: not-needed

--- a/IPython/frontend/html/notebook/notebookapp.py
+++ b/IPython/frontend/html/notebook/notebookapp.py
@@ -157,7 +157,7 @@
         
         settings = dict(
             template_path=os.path.join(os.path.dirname(__file__), "templates"),
-            static_path=os.path.join(os.path.dirname(__file__), "static"),
+            static_path=os.path.join("/usr/share/ipython/notebook/static"),
             cookie_secret=os.urandom(1024),
             login_url="%s/login"%(base_project_url.rstrip('/')),
         )
@@ -366,7 +366,7 @@
     def _mathjax_url_default(self):
         if not self.enable_mathjax:
             return u''
-        static_path = self.webapp_settings.get("static_path", os.path.join(os.path.dirname(__file__), "static"))
+        static_path = self.webapp_settings.get("static_path", "/usr/share/ipython/notebook/static")
         static_url_prefix = self.webapp_settings.get("static_url_prefix",
                                                      "/static/")
         if os.path.exists(os.path.join(static_path, 'mathjax', "MathJax.js")):
