From fb0880f385dc800c9293d57f1a6f86e84e91a39b Mon Sep 17 00:00:00 2001
From: RRosio
Date: Fri, 26 Apr 2024 14:46:40 -0700
Subject: [PATCH 1/2] nb6 ci updates for check-links and python tests on macos
---
.github/workflows/check-release.yml | 2 ++
.github/workflows/python.yml | 4 ++--
README.md | 2 +-
docs-translations/hi-IN/README.md | 2 +-
docs-translations/ja-JP/README.md | 2 +-
docs-translations/zh-CN/README.md | 2 +-
docs/source/config_overview.rst | 2 +-
docs/source/public_server.rst | 2 +-
notebook/templates/login.html | 4 ++--
9 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml
index 870668b4ef..c61e095338 100644
--- a/.github/workflows/check-release.yml
+++ b/.github/workflows/check-release.yml
@@ -65,3 +65,5 @@ jobs:
- name: Check Links
if: ${{ matrix.group == 'link_check' }}
uses: jupyter-server/jupyter_releaser/.github/actions/check-links@v1
+ with:
+ ignore-links: 'https://travis-ci.org/jupyter/notebook.svg?branch=master'
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 77fc5dfe6c..6df6db9cad 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -6,11 +6,11 @@ on:
branches: '*'
jobs:
build:
- runs-on: ${{ matrix.os }}-latest
+ runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
- os: [ubuntu, macos, windows]
+ os: [ubuntu-latest, macos-12, windows-latest]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
steps:
- name: Checkout
diff --git a/README.md b/README.md
index a69283458d..a02ef5362d 100644
--- a/README.md
+++ b/README.md
@@ -56,7 +56,7 @@ Launch with:
### Running in a remote installation
-You need some configuration before starting Jupyter notebook remotely. See [Running a notebook server](https://jupyter-notebook.readthedocs.io/en/stable/public_server.html).
+You need some configuration before starting Jupyter notebook remotely. See [Running a notebook server](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html).
## Development Installation
diff --git a/docs-translations/hi-IN/README.md b/docs-translations/hi-IN/README.md
index 1e85490e66..b6a5007304 100644
--- a/docs-translations/hi-IN/README.md
+++ b/docs-translations/hi-IN/README.md
@@ -57,7 +57,7 @@ IPython कोडबेस का बिग स्प्लिट ™। IPython
### एक दूरस्थ स्थापना में चल रहा है
-आपको बृहस्पति नोटबुक को दूरस्थ रूप से शुरू करने से पहले कुछ कॉन्फ़िगरेशन की आवश्यकता है। देखें [नोटबुक सर्वर चला रहा है](https://jupyter-notebook.readthedocs.io/en/stable/public_server.html).
+आपको बृहस्पति नोटबुक को दूरस्थ रूप से शुरू करने से पहले कुछ कॉन्फ़िगरेशन की आवश्यकता है। देखें [नोटबुक सर्वर चला रहा है](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html).
## विकास स्थापना
diff --git a/docs-translations/ja-JP/README.md b/docs-translations/ja-JP/README.md
index 9262cdbecc..bdcacb8ff2 100644
--- a/docs-translations/ja-JP/README.md
+++ b/docs-translations/ja-JP/README.md
@@ -37,7 +37,7 @@ Jupyter Notebookの発展的な使用方法に関するドキュメントは、[
### リモートへのインストールにおける実行
-Jupyter Notebookをリモートで起動する前に、いくつかの構成が必要です。 [Notebookサーバーの実行](https://jupyter-notebook.readthedocs.io/en/stable/public_server.html)を参照してください。
+Jupyter Notebookをリモートで起動する前に、いくつかの構成が必要です。 [Notebookサーバーの実行](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html)を参照してください。
## 開発用インストール
diff --git a/docs-translations/zh-CN/README.md b/docs-translations/zh-CN/README.md
index 5bee3f7d4c..66578f5ca9 100644
--- a/docs-translations/zh-CN/README.md
+++ b/docs-translations/zh-CN/README.md
@@ -57,7 +57,7 @@ IPython代码库的Big Split™。 IPython 3是最后一个主要的整体
### 在远程安装中运行
-在远程启动Jupiter笔记本电脑之前,需要进行一些配置。请参阅 [运行笔记本服务器](https://jupyter-notebook.readthedocs.io/en/stable/public_server.html).
+在远程启动Jupiter笔记本电脑之前,需要进行一些配置。请参阅 [运行笔记本服务器](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html).
## 开发设置
diff --git a/docs/source/config_overview.rst b/docs/source/config_overview.rst
index 96356d07aa..2c6ed0c9aa 100644
--- a/docs/source/config_overview.rst
+++ b/docs/source/config_overview.rst
@@ -64,7 +64,7 @@ Notebook front-end client
Notebook extensions
-------------------
-- `Distributing Jupyter Extensions as Python Packages `_
+- `Distributing Jupyter Extensions as Python Packages `_
- `Extending the Notebook `_
diff --git a/docs/source/public_server.rst b/docs/source/public_server.rst
index edadbe3ffc..c8d8421715 100644
--- a/docs/source/public_server.rst
+++ b/docs/source/public_server.rst
@@ -32,7 +32,7 @@ This document describes how you can
To use JupyterHub, you need a Unix server (typically Linux) running
somewhere that is accessible to your users on a network. This may run over
the public internet, but doing so introduces additional
- `security concerns `_.
+ `security concerns `_.
diff --git a/notebook/templates/login.html b/notebook/templates/login.html
index 77273a9cf4..3a7fdfe070 100644
--- a/notebook/templates/login.html
+++ b/notebook/templates/login.html
@@ -57,7 +57,7 @@
If no password has been configured, you need to open the notebook
server with its login token in the URL, or paste it above.
This requirement will be lifted if you
-
+
enable a password.
@@ -76,7 +76,7 @@
See
+ href='https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html'>
the documentation on how to enable a password
in place of token authentication,
From 67b3c37d10dbfaa99632db66fda70d1d073e4a6e Mon Sep 17 00:00:00 2001
From: RRosio
Date: Fri, 26 Apr 2024 15:03:56 -0700
Subject: [PATCH 2/2] update and remove links as per suggestions in review
---
.github/workflows/check-release.yml | 2 --
README.md | 3 +--
docs-translations/hi-IN/README.md | 3 +--
docs-translations/ja-JP/README.md | 3 +--
docs-translations/ko-KR/README.md | 1 -
docs-translations/zh-CN/README.md | 5 ++---
notebook/templates/login.html | 4 ++--
7 files changed, 7 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml
index c61e095338..870668b4ef 100644
--- a/.github/workflows/check-release.yml
+++ b/.github/workflows/check-release.yml
@@ -65,5 +65,3 @@ jobs:
- name: Check Links
if: ${{ matrix.group == 'link_check' }}
uses: jupyter-server/jupyter_releaser/.github/actions/check-links@v1
- with:
- ignore-links: 'https://travis-ci.org/jupyter/notebook.svg?branch=master'
diff --git a/README.md b/README.md
index a02ef5362d..33b794e850 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,6 @@
# Jupyter Notebook
[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
-[![Build Status](https://travis-ci.org/jupyter/notebook.svg?branch=master)](https://travis-ci.org/jupyter/notebook)
[![Documentation Status](https://readthedocs.org/projects/jupyter-notebook/badge/?version=latest)](https://jupyter-notebook.readthedocs.io/en/stable/?badge=latest)
[![codecov](https://codecov.io/gh/jupyter/notebook/branch/master/graph/badge.svg)](https://codecov.io/gh/jupyter/notebook)
@@ -56,7 +55,7 @@ Launch with:
### Running in a remote installation
-You need some configuration before starting Jupyter notebook remotely. See [Running a notebook server](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html).
+You need some configuration before starting Jupyter notebook remotely. See [Running a notebook server](https://jupyter-notebook.readthedocs.io/en/v6.5.4/public_server.html).
## Development Installation
diff --git a/docs-translations/hi-IN/README.md b/docs-translations/hi-IN/README.md
index b6a5007304..6b69936c87 100644
--- a/docs-translations/hi-IN/README.md
+++ b/docs-translations/hi-IN/README.md
@@ -1,7 +1,6 @@
# Jupyter Notebook
[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
-[![Build Status](https://travis-ci.org/jupyter/notebook.svg?branch=master)](https://travis-ci.org/jupyter/notebook)
[![Documentation Status](https://readthedocs.org/projects/jupyter-notebook/badge/?version=latest)](https://jupyter-notebook.readthedocs.io/en/stable/?badge=latest)
@@ -57,7 +56,7 @@ IPython कोडबेस का बिग स्प्लिट ™। IPython
### एक दूरस्थ स्थापना में चल रहा है
-आपको बृहस्पति नोटबुक को दूरस्थ रूप से शुरू करने से पहले कुछ कॉन्फ़िगरेशन की आवश्यकता है। देखें [नोटबुक सर्वर चला रहा है](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html).
+आपको बृहस्पति नोटबुक को दूरस्थ रूप से शुरू करने से पहले कुछ कॉन्फ़िगरेशन की आवश्यकता है। देखें [नोटबुक सर्वर चला रहा है](https://jupyter-notebook.readthedocs.io/en/v6.5.4/public_server.html).
## विकास स्थापना
diff --git a/docs-translations/ja-JP/README.md b/docs-translations/ja-JP/README.md
index bdcacb8ff2..7e6419c2cf 100644
--- a/docs-translations/ja-JP/README.md
+++ b/docs-translations/ja-JP/README.md
@@ -1,7 +1,6 @@
# Jupyter Notebook
[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
-[![Build Status](https://travis-ci.org/jupyter/notebook.svg?branch=master)](https://travis-ci.org/jupyter/notebook)
[![Documentation Status](https://readthedocs.org/projects/jupyter-notebook/badge/?version=latest)](https://jupyter-notebook.readthedocs.io/en/stable/?badge=latest)
英語版のリンク : [[English Version](http://github.com/jupyter/notebook/)]
@@ -37,7 +36,7 @@ Jupyter Notebookの発展的な使用方法に関するドキュメントは、[
### リモートへのインストールにおける実行
-Jupyter Notebookをリモートで起動する前に、いくつかの構成が必要です。 [Notebookサーバーの実行](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html)を参照してください。
+Jupyter Notebookをリモートで起動する前に、いくつかの構成が必要です。 [Notebookサーバーの実行](https://jupyter-notebook.readthedocs.io/en/v6.5.4/public_server.html)を参照してください。
## 開発用インストール
diff --git a/docs-translations/ko-KR/README.md b/docs-translations/ko-KR/README.md
index a54b996648..945cf0125e 100644
--- a/docs-translations/ko-KR/README.md
+++ b/docs-translations/ko-KR/README.md
@@ -1,7 +1,6 @@
# Jupyter Notebook
[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
-[![Build Status](https://travis-ci.org/jupyter/notebook.svg?branch=master)](https://travis-ci.org/jupyter/notebook)
[![Documentation Status](https://readthedocs.org/projects/jupyter-notebook/badge/?version=latest)](http://jupyter-notebook.readthedocs.io/en/stable/?badge=stable)
English 버전 링크 : [[English Version](http://github.com/jupyter/notebook/)]
diff --git a/docs-translations/zh-CN/README.md b/docs-translations/zh-CN/README.md
index 66578f5ca9..3192c3ed3a 100644
--- a/docs-translations/zh-CN/README.md
+++ b/docs-translations/zh-CN/README.md
@@ -1,7 +1,6 @@
# Jupyter Notebook
-[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
-[![Build Status](https://travis-ci.org/jupyter/notebook.svg?branch=master)](https://travis-ci.org/jupyter/notebook)
+[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter))
[![Documentation Status](https://readthedocs.org/projects/jupyter-notebook/badge/?version=latest)](https://jupyter-notebook.readthedocs.io/en/stable/?badge=latest)
@@ -57,7 +56,7 @@ IPython代码库的Big Split™。 IPython 3是最后一个主要的整体
### 在远程安装中运行
-在远程启动Jupiter笔记本电脑之前,需要进行一些配置。请参阅 [运行笔记本服务器](https://jupyter-server.readthedocs.io/en/latest/operators/public-server.html).
+在远程启动Jupiter笔记本电脑之前,需要进行一些配置。请参阅 [运行笔记本服务器](https://jupyter-notebook.readthedocs.io/en/v6.5.4/public_server.html).
## 开发设置
diff --git a/notebook/templates/login.html b/notebook/templates/login.html
index 3a7fdfe070..7b268e25ce 100644
--- a/notebook/templates/login.html
+++ b/notebook/templates/login.html
@@ -57,7 +57,7 @@
If no password has been configured, you need to open the notebook
server with its login token in the URL, or paste it above.
This requirement will be lifted if you
-
+
enable a password.
@@ -76,7 +76,7 @@
See
+ href='https://jupyter-notebook.readthedocs.io/en/v6.5.4/public_server.html'>
the documentation on how to enable a password
in place of token authentication,