From b4e4ea09d6ff8205d40255dbbb5989422b73825c Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Wed, 30 Apr 2025 16:40:08 +0000 Subject: [PATCH 01/18] add user groups doc --- .../guides/notebooks/configuration/groups.rst | 128 ++++++++++++++++++ docs/guides/notebooks/configuration/index.rst | 1 + docs/updates/index.rst | 8 ++ 3 files changed, 137 insertions(+) create mode 100644 docs/guides/notebooks/configuration/groups.rst diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst new file mode 100644 index 00000000..879b49a3 --- /dev/null +++ b/docs/guides/notebooks/configuration/groups.rst @@ -0,0 +1,128 @@ +############################ +User groups for file sharing +############################ + +Create and manage closed user groups in order to share private files in the ``/project`` directory. + + +Create a closed group +===================== + +Comanage webpage +---------------- + +* In a browser, navigate to `id.lsst.cloud `_ and log in. + +* In the left menu sidebar, click on "Groups" and then "My Groups". + +* At right, a list of all the groups associated with your account will appear. + +* In the top horizontal menu, click on "Add Group". + +* Set the group properties: + + * The group name should be short and must start with ``g_``. + + * Write a short description. + + * Leave the status as the default "Active". + + * Leave the checkbox next to "Open" unselected, to create a closed group. + + * Leave the checkbox next to "Require All for Nested Memberships" unchecked; this can be changed later if nested sub-groups are created. + +* Click the blue "Add" button. + + +The next time you enter the Notebook Aspect, this group will be accessible. + + +Command line +------------ + +At this time, it is not possible to create new groups from the terminal command line in the Notebook Aspect. + +It is possible to list all groups with ``getent group``, and to see all groups a +user belongs to with ``groups `` (see your own username with ``whoami``). + + +Manage group membership +======================= + +Only group owners can manage group membership. + +Comanage webpage +---------------- + +* In a browser, navigate to `id.lsst.cloud `_ and log in. +* In the left menu sidebar, click on "Groups" and then "My Groups". +* At right, a list of all the groups associated with your account will appear. +* In the "Name" column, click on the group name you want to add members to. +* From the "Group Properties" page, select the tab "Members". +* At upper right, use the "Add member" box to find and add group members. +* In the "Permissions" column, make other group members "Owners" using the check boxes. + + +Command line +------------ + +At this time, it is not possible to add users to groups from the terminal command line in the Notebook Aspect. + + + +Set directory permissions +========================= + +The point of creating a closed group is to use it to give access permissions to a privately shared directory +in ``/project``. + +Comanage webpage +---------------- + +Shared files are not managed via the Comanage webpage. + + +Command line +------------ + +These instructions are not unique to the Rubin Science Platform or JupyterLab; +they are generic processes for manipulating directory permissions in Unix-like operating systems. + +* In a browser, navigate to `data.lsst.cloud `_ and log in to the Notebook Aspect. + +* Open a terminal and go to the shared ``/project`` directory. + + .. code-block:: bash + + cd /project + +* Create a new directory for sharing, and name it ``new-dir-name``. + + .. code-block:: bash + + mkdir + +* Add the group to the new directory. + + .. code-block:: bash + + chgrp + +* Give the group read, write, and execute permission on the directory. + + .. code-block:: bash + + chmod g+rwx + +* Review the final permissions on the new directory. + + .. code-block:: bash + + ls -lah + + The results should resemble the following. + + .. code-block:: bash + + drwxrwsr-x 2 4.0K + diff --git a/docs/guides/notebooks/configuration/index.rst b/docs/guides/notebooks/configuration/index.rst index 26b4d8fc..7844c11a 100644 --- a/docs/guides/notebooks/configuration/index.rst +++ b/docs/guides/notebooks/configuration/index.rst @@ -11,4 +11,5 @@ Configuring the Notebook Aspect shell-configuration notebook-user-setups user-installs + groups ui-configuration diff --git a/docs/updates/index.rst b/docs/updates/index.rst index 977b8b9c..13353f8b 100644 --- a/docs/updates/index.rst +++ b/docs/updates/index.rst @@ -2,6 +2,14 @@ Updates ####### +April 28 2025 +============= + +The capability for users to create groups and set directory permissions to enable +private file sharing between group members now exists, and instructions are +available: see `User groups for file sharing`_. + + March 6 2025 ============ From 8bad54386cb631d0a8dfcd27806f568e77b630a2 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Wed, 30 Apr 2025 16:48:22 +0000 Subject: [PATCH 02/18] fix broken link --- docs/guides/notebooks/configuration/groups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index 879b49a3..474f1897 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -11,7 +11,7 @@ Create a closed group Comanage webpage ---------------- -* In a browser, navigate to `id.lsst.cloud `_ and log in. +* In a browser, navigate to `id.lsst.cloud `_ and log in. * In the left menu sidebar, click on "Groups" and then "My Groups". From 7098a6170e73b74119b6f83198e0eb43e143f309 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Wed, 30 Apr 2025 16:58:14 +0000 Subject: [PATCH 03/18] fix ref --- docs/updates/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/updates/index.rst b/docs/updates/index.rst index 13353f8b..2b0806e0 100644 --- a/docs/updates/index.rst +++ b/docs/updates/index.rst @@ -7,7 +7,7 @@ April 28 2025 The capability for users to create groups and set directory permissions to enable private file sharing between group members now exists, and instructions are -available: see `User groups for file sharing`_. +available: see :ref:`User groups for file sharing`. March 6 2025 From 4564c720efed23a87937846e1806efba4a3c8634 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Wed, 30 Apr 2025 17:44:52 +0000 Subject: [PATCH 04/18] try fix with doc ref --- docs/updates/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/updates/index.rst b/docs/updates/index.rst index 2b0806e0..d759caa1 100644 --- a/docs/updates/index.rst +++ b/docs/updates/index.rst @@ -7,7 +7,7 @@ April 28 2025 The capability for users to create groups and set directory permissions to enable private file sharing between group members now exists, and instructions are -available: see :ref:`User groups for file sharing`. +available: see :doc:`User groups for file sharing ` March 6 2025 From ae1906d785a6590dde6314851f870bb63e3dd026 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Wed, 30 Apr 2025 17:48:12 +0000 Subject: [PATCH 05/18] fix trailing whitespace --- docs/updates/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/updates/index.rst b/docs/updates/index.rst index d759caa1..b2971c4b 100644 --- a/docs/updates/index.rst +++ b/docs/updates/index.rst @@ -7,7 +7,7 @@ April 28 2025 The capability for users to create groups and set directory permissions to enable private file sharing between group members now exists, and instructions are -available: see :doc:`User groups for file sharing ` +available: see :doc:`User groups for file sharing `. March 6 2025 From db7debb4862a9a5235e14e5ffd62736405ee5f40 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Wed, 30 Apr 2025 17:53:46 +0000 Subject: [PATCH 06/18] try ref with ref tag --- docs/guides/notebooks/configuration/groups.rst | 1 + docs/updates/index.rst | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index 474f1897..46545a35 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -4,6 +4,7 @@ User groups for file sharing Create and manage closed user groups in order to share private files in the ``/project`` directory. +.. _user-group-create: Create a closed group ===================== diff --git a/docs/updates/index.rst b/docs/updates/index.rst index b2971c4b..a5e16338 100644 --- a/docs/updates/index.rst +++ b/docs/updates/index.rst @@ -6,8 +6,8 @@ April 28 2025 ============= The capability for users to create groups and set directory permissions to enable -private file sharing between group members now exists, and instructions are -available: see :doc:`User groups for file sharing `. +private file sharing between group members now exists, +see :ref:`how to create user groups `. March 6 2025 From a7730e7ed79412ff47ab935eb4e47e6b162bf948 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 16:08:07 +0000 Subject: [PATCH 07/18] FE comment 1 --- docs/guides/notebooks/configuration/groups.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index 46545a35..7a48add4 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -1,13 +1,13 @@ -############################ -User groups for file sharing -############################ +################### +User-managed groups +################### Create and manage closed user groups in order to share private files in the ``/project`` directory. .. _user-group-create: -Create a closed group -===================== +Create a group +============== Comanage webpage ---------------- From 3027c30d29d8e44b53c29cad629932a5c009c3f9 Mon Sep 17 00:00:00 2001 From: Melissa Graham Date: Thu, 1 May 2025 09:09:05 -0700 Subject: [PATCH 08/18] FE comment 2 Co-authored-by: Frossie --- docs/guides/notebooks/configuration/groups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index 7a48add4..8edcb79f 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -36,7 +36,7 @@ Comanage webpage The next time you enter the Notebook Aspect, this group will be accessible. - +A user can only be a member of up to 15 groups at this time. Joining additional groups will have no effect. Command line ------------ From 278cb070a6b4c24012fa3d95427e65604aa5685a Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 18:42:27 +0000 Subject: [PATCH 09/18] FE comments --- .../guides/notebooks/configuration/groups.rst | 72 +++++++------------ 1 file changed, 27 insertions(+), 45 deletions(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index 8edcb79f..d4609d67 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -2,15 +2,19 @@ User-managed groups ################### -Create and manage closed user groups in order to share private files in the ``/project`` directory. +Create and manage closed user groups in order to share private files. .. _user-group-create: Create a group ============== -Comanage webpage ----------------- +Groups are created an managed in the Comanage system at `id.lsst.cloud `_, +not from the terminal command line as in other systems. + +From the terminal command line it is possible to list all groups with ``getent group``. + +How to create a group in Comanage: * In a browser, navigate to `id.lsst.cloud `_ and log in. @@ -36,15 +40,6 @@ Comanage webpage The next time you enter the Notebook Aspect, this group will be accessible. -A user can only be a member of up to 15 groups at this time. Joining additional groups will have no effect. - -Command line ------------- - -At this time, it is not possible to create new groups from the terminal command line in the Notebook Aspect. - -It is possible to list all groups with ``getent group``, and to see all groups a -user belongs to with ``groups `` (see your own username with ``whoami``). Manage group membership @@ -52,8 +47,13 @@ Manage group membership Only group owners can manage group membership. -Comanage webpage ----------------- +A user can only be a member of up to 15 groups at this time. +Joining additional groups will have no effect. + +From the terminal command line it is possible to see all groups a user belongs to with ``groups `` +(see your own username with ``whoami``). + +How to manage group membership in Comanage: * In a browser, navigate to `id.lsst.cloud `_ and log in. * In the left menu sidebar, click on "Groups" and then "My Groups". @@ -64,66 +64,48 @@ Comanage webpage * In the "Permissions" column, make other group members "Owners" using the check boxes. -Command line ------------- - -At this time, it is not possible to add users to groups from the terminal command line in the Notebook Aspect. - - - Set directory permissions ========================= -The point of creating a closed group is to use it to give access permissions to a privately shared directory -in ``/project``. - -Comanage webpage ----------------- - -Shared files are not managed via the Comanage webpage. - +The point of creating a closed group is to use it to give access permissions to a privately shared directory. -Command line ------------- +Shared files are not managed via the Comanage webpage; use the terminal command line in the Notebook Aspect. These instructions are not unique to the Rubin Science Platform or JupyterLab; they are generic processes for manipulating directory permissions in Unix-like operating systems. * In a browser, navigate to `data.lsst.cloud `_ and log in to the Notebook Aspect. -* Open a terminal and go to the shared ``/project`` directory. - - .. code-block:: bash - - cd /project - -* Create a new directory for sharing, and name it ``new-dir-name``. +* Open a terminal, navigate to the user home directory, and modify the permissions on your home directory to let others access shared directories within it. .. code-block:: bash - mkdir + cd /home + chmod o+x -* Add the group to the new directory. +* Navigate to your home directory and create a new directory for sharing. .. code-block:: bash - chgrp + cd ~ + mkdir -* Give the group read, write, and execute permission on the directory. +* Add the group to the new directory and give the group read, write, and execute permission. .. code-block:: bash - chmod g+rwx + chgrp + chmod g+rwx * Review the final permissions on the new directory. .. code-block:: bash - ls -lah + ls -lah The results should resemble the following. .. code-block:: bash - drwxrwsr-x 2 4.0K + drwxrwsr-x 2 4.0K From 562308751bdff21b04eb994e4ace9c5d7a9323a8 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 18:52:34 +0000 Subject: [PATCH 10/18] minor tweaks --- docs/guides/notebooks/configuration/groups.rst | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index d4609d67..3e4ba335 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -9,8 +9,8 @@ Create and manage closed user groups in order to share private files. Create a group ============== -Groups are created an managed in the Comanage system at `id.lsst.cloud `_, -not from the terminal command line as in other systems. +Groups are created an managed in the Comanage system at `id.lsst.cloud `_ +(not from the terminal command line, as in some other systems). From the terminal command line it is possible to list all groups with ``getent group``. @@ -63,20 +63,25 @@ How to manage group membership in Comanage: * At upper right, use the "Add member" box to find and add group members. * In the "Permissions" column, make other group members "Owners" using the check boxes. +The next time these users enter the Notebook Aspect, they will be able to access files shared with the group. + + Set directory permissions ========================= -The point of creating a closed group is to use it to give access permissions to a privately shared directory. +The point of creating a closed group is to permit group members to access privately shared files. Shared files are not managed via the Comanage webpage; use the terminal command line in the Notebook Aspect. -These instructions are not unique to the Rubin Science Platform or JupyterLab; -they are generic processes for manipulating directory permissions in Unix-like operating systems. +These instructions are not all unique to the Rubin Science Platform or JupyterLab; +some are generic processes for manipulating directory permissions in Unix-like operating systems. + +Instructions for creating and sharing a directory with a group: * In a browser, navigate to `data.lsst.cloud `_ and log in to the Notebook Aspect. -* Open a terminal, navigate to the user home directory, and modify the permissions on your home directory to let others access shared directories within it. +* Open a terminal, navigate to `/home`, and modify the permissions on your home directory to let others access any shared directories within it (see your own username with ``whoami``). .. code-block:: bash From 2f27495008ed620392f8ee4c5cc74b66bb48e564 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 18:54:27 +0000 Subject: [PATCH 11/18] fix typo --- docs/guides/notebooks/configuration/groups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index 3e4ba335..02210b9a 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -81,7 +81,7 @@ Instructions for creating and sharing a directory with a group: * In a browser, navigate to `data.lsst.cloud `_ and log in to the Notebook Aspect. -* Open a terminal, navigate to `/home`, and modify the permissions on your home directory to let others access any shared directories within it (see your own username with ``whoami``). +* Open a terminal, navigate to ``/home``, and modify the permissions on your home directory to let others access any shared directories within it (see your own username with ``whoami``). .. code-block:: bash From 3f56050b8d9f96fff2ded0b038e23a6bc75bd7c4 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 19:04:50 +0000 Subject: [PATCH 12/18] add note re file writes --- docs/guides/notebooks/configuration/groups.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index 02210b9a..a4745a7c 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -114,3 +114,6 @@ Instructions for creating and sharing a directory with a group: drwxrwsr-x 2 4.0K + +A file created in the shared directory will, by default, be readable but not writeable by other group members. +Modify individual files to be group-writeable with ``chmod g+w ``. From ab76a44267d45282958be37e0d5e21da18610d1f Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 19:08:44 +0000 Subject: [PATCH 13/18] fix typo --- docs/guides/notebooks/configuration/groups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index a4745a7c..d5d88477 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -116,4 +116,4 @@ Instructions for creating and sharing a directory with a group: A file created in the shared directory will, by default, be readable but not writeable by other group members. -Modify individual files to be group-writeable with ``chmod g+w ``. +Modify individual files to be group-writeable with ``chmod g+w ``. From 8520ec0a1124f4d261e4e5de9747315a0ccf3b02 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 19:21:19 +0000 Subject: [PATCH 14/18] add sticky --- docs/guides/notebooks/configuration/groups.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index d5d88477..cb7d6e25 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -95,12 +95,12 @@ Instructions for creating and sharing a directory with a group: cd ~ mkdir -* Add the group to the new directory and give the group read, write, and execute permission. +* Add the group to the new directory and give group members write permissions (`g+w`) and add the "sticky" bit (`s`) so that all files created in the directory are accessible to group members. .. code-block:: bash chgrp - chmod g+rwx + chmod g+ws * Review the final permissions on the new directory. @@ -114,6 +114,3 @@ Instructions for creating and sharing a directory with a group: drwxrwsr-x 2 4.0K - -A file created in the shared directory will, by default, be readable but not writeable by other group members. -Modify individual files to be group-writeable with ``chmod g+w ``. From 7a2a691d44ba174b407f301c4d7d002ccf0120e2 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 19:26:21 +0000 Subject: [PATCH 15/18] fix typos --- docs/guides/notebooks/configuration/groups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index cb7d6e25..d0bc680a 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -95,7 +95,7 @@ Instructions for creating and sharing a directory with a group: cd ~ mkdir -* Add the group to the new directory and give group members write permissions (`g+w`) and add the "sticky" bit (`s`) so that all files created in the directory are accessible to group members. +* Add the group to the new directory and give group members write permissions (``g+w``) and add the "sticky" bit (``s``) so that all files created in the directory are accessible to group members. .. code-block:: bash From d799f3dcaa437779a887f46d9a375b94b97e0b1f Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Thu, 1 May 2025 19:46:53 +0000 Subject: [PATCH 16/18] add how to chmod grp write --- docs/guides/notebooks/configuration/groups.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index d0bc680a..bf93b1c1 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -95,7 +95,7 @@ Instructions for creating and sharing a directory with a group: cd ~ mkdir -* Add the group to the new directory and give group members write permissions (``g+w``) and add the "sticky" bit (``s``) so that all files created in the directory are accessible to group members. +* Add the group to the new directory and give group members write permissions (``g+w``) and add the "sticky" bit (``s``) so that all files created in the directory are readable by group members. .. code-block:: bash @@ -114,3 +114,6 @@ Instructions for creating and sharing a directory with a group: drwxrwsr-x 2 4.0K + +Files created in this directory will, by default, only be writeable by the user that created them. +Modify any file to be writeable by any group member with ``chmod g+w ``. \ No newline at end of file From 8869d6253e1d91b9e4e8986ed5e808eac5213d24 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Sun, 25 May 2025 22:26:02 +0000 Subject: [PATCH 17/18] FE comments --- docs/guides/notebooks/configuration/groups.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/guides/notebooks/configuration/groups.rst b/docs/guides/notebooks/configuration/groups.rst index bf93b1c1..a8ceb1f5 100644 --- a/docs/guides/notebooks/configuration/groups.rst +++ b/docs/guides/notebooks/configuration/groups.rst @@ -12,8 +12,6 @@ Create a group Groups are created an managed in the Comanage system at `id.lsst.cloud `_ (not from the terminal command line, as in some other systems). -From the terminal command line it is possible to list all groups with ``getent group``. - How to create a group in Comanage: * In a browser, navigate to `id.lsst.cloud `_ and log in. From 62fa5279e2d2f376042cdccdb3e358442b85ef89 Mon Sep 17 00:00:00 2001 From: MelissaGraham Date: Sun, 25 May 2025 22:40:08 +0000 Subject: [PATCH 18/18] IDRHL timing out --- documenteer.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/documenteer.toml b/documenteer.toml index fd606797..fc5b20cc 100644 --- a/documenteer.toml +++ b/documenteer.toml @@ -29,4 +29,5 @@ ignore = [ 'https://www.star.bris.ac.uk/~mbt/topcat/', # MLG added; frequently times out 'http://www.star.bris.ac.uk/~mbt/topcat/', # MLG added; frequently times out 'http://www.star.bris.ac.uk/~mbt/topcat/sun253/sun253.html#SyntheticColumnQueryWindow', # MLG added; frequently times out + 'https://www.lsst.org/scientists/international-drh-list', # MLG added; was timing out ]