From 3245bf8f81d7224fba79f034398e937ffa170566 Mon Sep 17 00:00:00 2001 From: PHaeJin Date: Sat, 4 Nov 2017 00:23:55 -0700 Subject: [PATCH 1/7] Fix some broken links --- docs/source/links.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/links.txt b/docs/source/links.txt index 710ef8c1da..9a23026e58 100644 --- a/docs/source/links.txt +++ b/docs/source/links.txt @@ -25,8 +25,8 @@ .. _notebook_p1: https://nbviewer.jupyter.org/github/jupyter/notebook/blob/master/docs/source/examples/Notebook/Running%20Code.ipynb .. Other python projects -.. _matplotlib: http://matplotlib.org -.. _nbviewer: http://nbviewer.jupyter.org +.. _matplotlib: http://matplotlib.org/ +.. _nbviewer: http://nbviewer.jupyter.org/ .. _nbconvert: https://nbconvert.readthedocs.io/en/latest/ .. Other tools and projects From 945fe88ffe7bc81c5c5de14d28de64e564eb75f8 Mon Sep 17 00:00:00 2001 From: PHaeJin Date: Sun, 5 Nov 2017 00:15:33 -0700 Subject: [PATCH 2/7] typo fix --- tools/secure_notebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/secure_notebook.py b/tools/secure_notebook.py index e504aeadfc..1984d33946 100644 --- a/tools/secure_notebook.py +++ b/tools/secure_notebook.py @@ -3,7 +3,7 @@ script to automatically setup notebook over SSL. Generate cert and keyfiles (rsa 1024) in ~/.ssh/, ask for a password, and add -the corresponding entries in the notbook json configuration file. +the corresponding entries in the notebook json configuration file. """ From 7120d68272c3f3bbad4e0c4745f1fe6a9c21515d Mon Sep 17 00:00:00 2001 From: PHaeJin Date: Sun, 5 Nov 2017 00:21:18 -0700 Subject: [PATCH 3/7] Fix some broken links --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c90c95314c..f61689b022 100755 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ explanatory text. The Notebook has support for multiple programming languages, sharing, and interactive widgets. -Read `the documentation `_ +Read `the documentation `_ for more information. """, version = version, From 0875a8d813090a19515fc3d0caac4295eaa5491a Mon Sep 17 00:00:00 2001 From: PHaeJin Date: Tue, 7 Nov 2017 16:16:52 -0800 Subject: [PATCH 4/7] typo fix --- docs/source/links.txt | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/links.txt b/docs/source/links.txt index 9a23026e58..710ef8c1da 100644 --- a/docs/source/links.txt +++ b/docs/source/links.txt @@ -25,8 +25,8 @@ .. _notebook_p1: https://nbviewer.jupyter.org/github/jupyter/notebook/blob/master/docs/source/examples/Notebook/Running%20Code.ipynb .. Other python projects -.. _matplotlib: http://matplotlib.org/ -.. _nbviewer: http://nbviewer.jupyter.org/ +.. _matplotlib: http://matplotlib.org +.. _nbviewer: http://nbviewer.jupyter.org .. _nbconvert: https://nbconvert.readthedocs.io/en/latest/ .. Other tools and projects diff --git a/setup.py b/setup.py index f61689b022..c90c95314c 100755 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ explanatory text. The Notebook has support for multiple programming languages, sharing, and interactive widgets. -Read `the documentation `_ +Read `the documentation `_ for more information. """, version = version, From 8bea7d1f2fc846ac844fe9fca3529c4c37536ba9 Mon Sep 17 00:00:00 2001 From: PHaeJin Date: Thu, 9 Nov 2017 23:52:50 -0800 Subject: [PATCH 5/7] typo fix --- setupbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupbase.py b/setupbase.py index 1b1372761e..6a30d7d180 100644 --- a/setupbase.py +++ b/setupbase.py @@ -100,7 +100,7 @@ def find_package_data(): """ Find package_data. """ - # This is not enough for these things to appear in an sdist. + # This is not enough for these things to appear in a sdist. # We need to muck with the MANIFEST to get this to work # exclude components and less from the walk; From 724ed14eb29297517e35cfd0661d6b1d0ccd3366 Mon Sep 17 00:00:00 2001 From: PHaeJin Date: Fri, 10 Nov 2017 23:43:39 -0800 Subject: [PATCH 6/7] Fix typo --- docs/source/extending/keymaps.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/extending/keymaps.rst b/docs/source/extending/keymaps.rst index 1d2cc73349..43b89cb2dd 100644 --- a/docs/source/extending/keymaps.rst +++ b/docs/source/extending/keymaps.rst @@ -7,7 +7,7 @@ Customize keymaps which is not guaranteed to be kept in future versions of the notebook, and can be removed or changed without warnings. -The notebook shortcuts that are defined by jupyter both in edit mode an command +The notebook shortcuts that are defined by jupyter both in edit mode and command mode are configurable in the frontend configuration file ``~/.jupyter/nbconfig/notebook.json``. The modification of Keyboard shortcut suffer of several limitations, mainly that your Browser and OS might prevent From 6e4d4ba6a42a4c7262748942fa055ebaa6df9d63 Mon Sep 17 00:00:00 2001 From: PHaeJin Date: Fri, 10 Nov 2017 23:44:33 -0800 Subject: [PATCH 7/7] Fix typo --- notebook/serverextensions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebook/serverextensions.py b/notebook/serverextensions.py index 9889c702bc..504d451db1 100644 --- a/notebook/serverextensions.py +++ b/notebook/serverextensions.py @@ -283,8 +283,8 @@ class ServerExtensionApp(BaseExtensionApp): examples = _examples subcommands = dict( - enable=(EnableServerExtensionApp, "Enable an server extension"), - disable=(DisableServerExtensionApp, "Disable an server extension"), + enable=(EnableServerExtensionApp, "Enable a server extension"), + disable=(DisableServerExtensionApp, "Disable a server extension"), list=(ListServerExtensionsApp, "List server extensions") )