From ee727d0dba307d6136206656f1d5593e83919afb Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 31 Jan 2025 15:53:48 +0100 Subject: [PATCH] fix: Adjust links to stay on the same Nextcloud version of the docs Signed-off-by: Joas Schilling --- admin_manual/apps_management.rst | 2 +- .../configuration_files/big_file_upload_configuration.rst | 8 +++++--- admin_manual/configuration_files/encryption_details.rst | 2 +- .../configuration_files/file_sharing_configuration.rst | 4 ++-- admin_manual/configuration_user/two_factor-auth.rst | 4 ++-- admin_manual/index.rst | 2 +- admin_manual/installation/example_ubuntu.rst | 2 +- admin_manual/installation/harden_server.rst | 4 +++- admin_manual/issues/general_troubleshooting.rst | 4 ++-- admin_manual/occ_command.rst | 7 ++++--- admin_manual/webhook_listeners/index.rst | 4 +++- admin_manual/windmill_workflows/index.rst | 4 +++- developer_manual/basics/logging.rst | 2 +- developer_manual/basics/setting.rst | 2 +- developer_manual/client_apis/OCS/ocs-share-api.rst | 2 +- .../client_apis/OCS/ocs-taskprocessing-api.rst | 4 +++- .../exapp_development/faq/DockerSocketProxy.rst | 4 +++- .../exapp_development/faq/Troubleshooting.rst | 4 +++- .../exapp_development/tech_details/Translations.rst | 4 +++- .../exapp_development/tech_details/api/logging.rst | 4 +++- developer_manual/getting_started/devenv.rst | 4 ++-- user_manual/external_storage/external_storage.rst | 2 +- user_manual/files/access_webdav.rst | 2 +- user_manual/files/deleted_file_management.rst | 2 +- user_manual/files/encrypting_files.rst | 8 ++++---- user_manual/files/large_file_upload.rst | 2 +- user_manual/files/quota.rst | 2 +- user_manual/files/sharing.rst | 2 +- user_manual/files/transfer_ownership.rst | 2 +- user_manual/groupware/sync_gnome.rst | 2 +- user_manual/groupware/sync_ios.rst | 4 ++-- user_manual/groupware/sync_kde.rst | 2 +- 32 files changed, 63 insertions(+), 44 deletions(-) diff --git a/admin_manual/apps_management.rst b/admin_manual/apps_management.rst index b37e0071b..dc0ed94df 100644 --- a/admin_manual/apps_management.rst +++ b/admin_manual/apps_management.rst @@ -30,7 +30,7 @@ have an **Featured**-tag. and custom consulting for supported apps, contact our `sales team `_. .. note:: If you would like to develop your own Nextcloud app, you can find out - more information in our `developer manual `_. + more information in our `developer manual `_. .. TODO ON RELEASE: Update version number above on release All apps must be licensed under AGPLv3+ or any compatible license. diff --git a/admin_manual/configuration_files/big_file_upload_configuration.rst b/admin_manual/configuration_files/big_file_upload_configuration.rst index f25f8842b..241bd0023 100644 --- a/admin_manual/configuration_files/big_file_upload_configuration.rst +++ b/admin_manual/configuration_files/big_file_upload_configuration.rst @@ -45,7 +45,7 @@ relevant php.ini files) :: The ``upload_max_filesize`` and ``post_max_size`` settings may not apply to file uploads through WebDAV single file PUT requests or `Chunked file uploads -`_ +`_ For those, PHP and webserver timeouts are the limiting factor on the upload size. .. TODO ON RELEASE: Update version number above on release @@ -170,19 +170,21 @@ Default is ``104857600`` (100 MiB). Large file upload on object storage ----------------------------------- -`Chunked file uploads `_ +`Chunked file uploads `_ do have a larger space consumption on the temporary folder when processing those uploads on object storage as the individual chunks get downloaded from the storage and will be assembled to the actual file on the Nextcloud servers temporary directory. It is recommended to increase the size of your temp directory accordingly and also ensure that request timeouts are high enough for PHP, webservers or any load balancers involved. +.. TODO ON RELEASE: Update version number above on release + .. tip:: In more recent versions of Nextcloud Server, when uploading to S3 in *Primary Storage* mode, we use S3 `MultipartUpload`. This allows chunked upload streaming of the chunks directly to S3 so that the final MOVE request no longer needs to assemble the final file on the Nextcloud server. This requires your ``memcache.distributed`` to be set to use Redis (or Memcached), otherwise we fall back on the prior behavior which consumes space on the Nextcloud Server for file assembly (as described above). Federated Cloud Sharing ----------------------- -If you are using `Federated Cloud Sharing `_ and want to share large files, you can increase the timeout values for requests to the federated servers. +If you are using `Federated Cloud Sharing `_ and want to share large files, you can increase the timeout values for requests to the federated servers. Therefore, you can set ``davstorage.request_timeout`` in your ``config.php``. The default value is 30 seconds. .. TODO ON RELEASE: Update version number above on release diff --git a/admin_manual/configuration_files/encryption_details.rst b/admin_manual/configuration_files/encryption_details.rst index 763a60472..4bf680608 100644 --- a/admin_manual/configuration_files/encryption_details.rst +++ b/admin_manual/configuration_files/encryption_details.rst @@ -346,7 +346,7 @@ Sources ------- - `encryption-recovery-tools repository on GitHub `_ -- `Nextcloud Encryption Configuration documentation `_ +- `Nextcloud Encryption Configuration documentation `_ - `Nextcloud Help response concerning the usage of version information `_ - `Sourcecode: Creation of the Message Authentication Code `_ - `Sourcecode: Derivation of the Encryption Key `_ diff --git a/admin_manual/configuration_files/file_sharing_configuration.rst b/admin_manual/configuration_files/file_sharing_configuration.rst index e42ec0931..f75217851 100644 --- a/admin_manual/configuration_files/file_sharing_configuration.rst +++ b/admin_manual/configuration_files/file_sharing_configuration.rst @@ -98,7 +98,7 @@ forcing them. `_ for discussion of this. .. note:: There are more sharing options on config.php level available: - `Configuration Parameters `_ + `Configuration Parameters `_ .. TODO ON RELEASE: Update version number above on release @@ -176,7 +176,7 @@ Trashbin contents are not transferred:: reference.) Users may also transfer files or folders selectively by themselves. -See `user documentation `_ for details. +See `user documentation `_ for details. .. TODO ON RELEASE: Update version number above on release diff --git a/admin_manual/configuration_user/two_factor-auth.rst b/admin_manual/configuration_user/two_factor-auth.rst index 478fc087b..7663f559b 100644 --- a/admin_manual/configuration_user/two_factor-auth.rst +++ b/admin_manual/configuration_user/two_factor-auth.rst @@ -15,7 +15,7 @@ Several 2FA apps are already available including a Telegram/Signal/SMS gateway and `U2F `_. -Developers can `build new two-factor provider apps `_. +Developers can `build new two-factor provider apps `_. .. TODO ON RELEASE: Update version number above on release @@ -29,7 +29,7 @@ you want, 2FA will be installed and enabled on your Nextcloud server. .. figure:: ../images/2fa-app-install.png -Once 2FA has been enabled, users have to `activate it in their personal settings. `_ +Once 2FA has been enabled, users have to `activate it in their personal settings. `_ .. TODO ON RELEASE: Update version number above on release diff --git a/admin_manual/index.rst b/admin_manual/index.rst index 0c8a05f81..a61b589e7 100644 --- a/admin_manual/index.rst +++ b/admin_manual/index.rst @@ -37,7 +37,7 @@ respective manuals: * `Nextcloud User Manual`_ * `Nextcloud Desktop Client`_ -.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/latest/user_manual/en/ +.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/31/user_manual/en/ .. _`Nextcloud Desktop Client`: https://docs.nextcloud.com/desktop/latest/ .. TODO ON RELEASE: Update version number above on release diff --git a/admin_manual/installation/example_ubuntu.rst b/admin_manual/installation/example_ubuntu.rst index cd1890d7d..d36fec739 100644 --- a/admin_manual/installation/example_ubuntu.rst +++ b/admin_manual/installation/example_ubuntu.rst @@ -14,7 +14,7 @@ following commands in a terminal:: * This installs the packages for the Nextcloud core system. If you are planning on running additional apps, keep in mind that they might - require additional packages. See `Prerequisites for manual installation `_ for details. + require additional packages. See `Prerequisites for manual installation `_ for details. .. TODO ON RELEASE: Update version number above on release diff --git a/admin_manual/installation/harden_server.rst b/admin_manual/installation/harden_server.rst index 083a6b095..7324313cc 100644 --- a/admin_manual/installation/harden_server.rst +++ b/admin_manual/installation/harden_server.rst @@ -287,9 +287,11 @@ Depending on your server setup, these are the possible connections: - submitted data: statistical data. see here for the `detailed field list`_ - Any remote Nextcloud server that is connected with federated sharing -.. _optional (config): https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#has-internet-connection +.. _optional (config): https://docs.nextcloud.com/server/31/admin_manual/configuration_server/config_sample_php_parameters.html#has-internet-connection .. _detailed field list : https://github.com/nextcloud/survey_client +.. TODO ON RELEASE: Update version number above on release + Setup fail2ban -------------- diff --git a/admin_manual/issues/general_troubleshooting.rst b/admin_manual/issues/general_troubleshooting.rst index c6658bf09..a24c859bc 100644 --- a/admin_manual/issues/general_troubleshooting.rst +++ b/admin_manual/issues/general_troubleshooting.rst @@ -31,7 +31,7 @@ configuration report with the :ref:`occ config command .. _the Nextcloud Forums: https://help.nextcloud.com .. _FAQ page: https://help.nextcloud.com/t/how-to-faq-wiki -.. _bugtracker: https://docs.nextcloud.com/server/latest/developer_manual/prologue/bugtracker/index.html +.. _bugtracker: https://docs.nextcloud.com/server/31/developer_manual/prologue/bugtracker/index.html .. TODO ON RELEASE: Update version number above on release @@ -431,7 +431,7 @@ does not match the actual data stored in the user's ``data/$userId/files`` direc .. note:: Metadata, versions, trashbin and encryption keys are not counted in the used space above. - Please refer to the `quota documentation `_ for details. + Please refer to the `quota documentation `_ for details. .. TODO ON RELEASE: Update version number above on release diff --git a/admin_manual/occ_command.rst b/admin_manual/occ_command.rst index 8ec940504..d56151546 100644 --- a/admin_manual/occ_command.rst +++ b/admin_manual/occ_command.rst @@ -367,8 +367,9 @@ While setting a configuration value, multiple options are available: .. note:: See `Appconfig Concepts`_ to learn more about `typed value`, `lazy` and `sensitive` flag. -.. _Appconfig Concepts: https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/config/appconfig.html#concept-overview +.. _Appconfig Concepts: https://docs.nextcloud.com/server/31/developer_manual/digging_deeper/config/appconfig.html#concept-overview +.. TODO ON RELEASE: Update version number above on release You can list all configuration values with one command:: @@ -960,7 +961,7 @@ The command line option ``--transfer-incoming-shares`` overwrites the config.php sudo -u www-data php occ files:transfer-ownership --transfer-incoming-shares=0 Users may also transfer files or folders selectively by themselves. -See `user documentation `_ for details. +See `user documentation `_ for details. .. TODO ON RELEASE: Update version number above on release @@ -1037,7 +1038,7 @@ Verify your app:: sudo -u www-data php occ integrity:check-app --path=/pathto/app appname When it returns nothing, your app is signed correctly. When it returns a message then there is an error. See `Code Signing -`_ in the Developer manual for more detailed information. +`_ in the Developer manual for more detailed information. .. TODO ON RELEASE: Update version number above on release diff --git a/admin_manual/webhook_listeners/index.rst b/admin_manual/webhook_listeners/index.rst index 7a5728596..54ee7551d 100644 --- a/admin_manual/webhook_listeners/index.rst +++ b/admin_manual/webhook_listeners/index.rst @@ -18,7 +18,9 @@ Installation Listening to events ------------------- -You can use the OCS API to add webhooks for specific events: https://docs.nextcloud.com/server/latest/developer_manual/_static/openapi.html#/operations/webhook_listeners-webhooks-index +You can use the OCS API to add webhooks for specific events: https://docs.nextcloud.com/31/latest/developer_manual/_static/openapi.html#/operations/webhook_listeners-webhooks-index + +.. TODO ON RELEASE: Update version number above on release Note: When authenticating with the OCS API to register webhooks the account you authenticate as must have administrator rights or delegated administrator rights. diff --git a/admin_manual/windmill_workflows/index.rst b/admin_manual/windmill_workflows/index.rst index dc271d273..6cfe2f30f 100644 --- a/admin_manual/windmill_workflows/index.rst +++ b/admin_manual/windmill_workflows/index.rst @@ -50,7 +50,9 @@ Each workflow in Windmill is a listener to a Nextcloud Webhook Event. If you are using the ExApp-packaged Windmill, it will automatically register webhooks for the workflows you build using the following mechanism. If you are not using the ExApp-packaged windmill install then you will have to register webhooks for your workflows manually via the webhook_listeners API: -see https://docs.nextcloud.com/server/latest/developer_manual/_static/openapi.html#/operations/webhook_listeners-webhooks-index +see https://docs.nextcloud.com/server/31/developer_manual/_static/openapi.html#/operations/webhook_listeners-webhooks-index + +.. TODO ON RELEASE: Update version number above on release The magic listener script ~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/developer_manual/basics/logging.rst b/developer_manual/basics/logging.rst index 8dac7fbde..935a419ff 100644 --- a/developer_manual/basics/logging.rst +++ b/developer_manual/basics/logging.rst @@ -47,7 +47,7 @@ Admin audit logging If you want to log things less for system administration but for compliance reasons, e.g. who accessed which file, who changed the password of an item or made it public, the -`admin audit log `_ +`admin audit log `_ is the correct place. .. TODO ON RELEASE: Update version number above on release diff --git a/developer_manual/basics/setting.rst b/developer_manual/basics/setting.rst index 5e15bbb9f..a7a2d1d97 100644 --- a/developer_manual/basics/setting.rst +++ b/developer_manual/basics/setting.rst @@ -110,7 +110,7 @@ The last missing part is to register both classes inside **/appinfo/info. `` instead. Additionally since Nextcloud 23, groups can be granted authorization to access individual -admin settings (`see admin docs `_). +admin settings (`see admin docs `_). This is a feature that needs to be enabled for each admin setting class. To do so, the setting class needs to implement `IDelegatedSettings` instead of `ISettings` and implement two additional methods. diff --git a/developer_manual/client_apis/OCS/ocs-share-api.rst b/developer_manual/client_apis/OCS/ocs-share-api.rst index 69c42b155..91038a6c1 100644 --- a/developer_manual/client_apis/OCS/ocs-share-api.rst +++ b/developer_manual/client_apis/OCS/ocs-share-api.rst @@ -227,7 +227,7 @@ Federated Cloud Shares ---------------------- Both the sending and the receiving instance need to have federated cloud sharing -enabled and configured. See `Configuring Federated Cloud Sharing `_. +enabled and configured. See `Configuring Federated Cloud Sharing `_. .. TODO ON RELEASE: Update version number above on release diff --git a/developer_manual/client_apis/OCS/ocs-taskprocessing-api.rst b/developer_manual/client_apis/OCS/ocs-taskprocessing-api.rst index 1c6ec37a6..56ec88e3e 100644 --- a/developer_manual/client_apis/OCS/ocs-taskprocessing-api.rst +++ b/developer_manual/client_apis/OCS/ocs-taskprocessing-api.rst @@ -8,4 +8,6 @@ OCS TaskProcessing API The OCS Task processing API allows you to run task processing tasks, like prompting large language models implemented by apps using :ref:`the backend Task Processing API`. -See the relevant `OpenAPI docs `_. \ No newline at end of file +See the relevant `OpenAPI docs `_. + +.. TODO ON RELEASE: Update version number above on release diff --git a/developer_manual/exapp_development/faq/DockerSocketProxy.rst b/developer_manual/exapp_development/faq/DockerSocketProxy.rst index ada4e1af7..19c7ef3f1 100644 --- a/developer_manual/exapp_development/faq/DockerSocketProxy.rst +++ b/developer_manual/exapp_development/faq/DockerSocketProxy.rst @@ -28,7 +28,9 @@ Nextcloud AIO implements its own `Docker Socket Proxy container `_ for more details. +See `Nextcloud in Docker AIO (all-in-one) `_ for more details. + +.. TODO ON RELEASE: Update version number above on release .. note:: diff --git a/developer_manual/exapp_development/faq/Troubleshooting.rst b/developer_manual/exapp_development/faq/Troubleshooting.rst index 01188a532..c3d6afed8 100644 --- a/developer_manual/exapp_development/faq/Troubleshooting.rst +++ b/developer_manual/exapp_development/faq/Troubleshooting.rst @@ -27,9 +27,11 @@ Here are some common steps to verify the network configuration: ExApp deployment issues ----------------------- -The deployment issues questions are covered in the `Test Deploy `_ section of the administration guide. +The deployment issues questions are covered in the `Test Deploy `_ section of the administration guide. Generally speaking, there are three steps to find the proper error message to understand the problem: +.. TODO ON RELEASE: Update version number above on release + 1. Check Nextcloud logs 2. Check ExApp container logs (available only if ExApp container is created and/or running) 3. Check Deploy daemon host logs (``journalctl -u docker.service``) diff --git a/developer_manual/exapp_development/tech_details/Translations.rst b/developer_manual/exapp_development/tech_details/Translations.rst index ce5eeea8e..bf68c9be8 100644 --- a/developer_manual/exapp_development/tech_details/Translations.rst +++ b/developer_manual/exapp_development/tech_details/Translations.rst @@ -26,10 +26,12 @@ There is an example repository with translations: `UI example with translations Manual install ************** -For the ``manual-install`` type, an administrator will have to manually extract to the server's `writable apps directory `_ ``l10n`` folder of the ExApp +For the ``manual-install`` type, an administrator will have to manually extract to the server's `writable apps directory `_ ``l10n`` folder of the ExApp (e.g. ``/path/to/apps-writable//l10n/*.(js|json)``). This will allow the server to access the ExApp's strings with translations. +.. TODO ON RELEASE: Update version number above on release + .. note:: Only the ``l10n`` folder must be present on the server side; ``appinfo/info.xml`` could lead to misdetection by the server as a PHP app folder. diff --git a/developer_manual/exapp_development/tech_details/api/logging.rst b/developer_manual/exapp_development/tech_details/api/logging.rst index ad8aa31d3..3044a22c3 100644 --- a/developer_manual/exapp_development/tech_details/api/logging.rst +++ b/developer_manual/exapp_development/tech_details/api/logging.rst @@ -25,7 +25,9 @@ Request data } -The possible values of ``log_lvl`` are described here: `Nextcloud Log level `_ +The possible values of ``log_lvl`` are described here: `Nextcloud Log level `_ + +.. TODO ON RELEASE: Update version number above on release Response data ************* diff --git a/developer_manual/getting_started/devenv.rst b/developer_manual/getting_started/devenv.rst index 7d9fb281e..482b88857 100644 --- a/developer_manual/getting_started/devenv.rst +++ b/developer_manual/getting_started/devenv.rst @@ -16,7 +16,7 @@ Please follow the steps on this page to set up your development environment manu Set up Web server and database ------------------------------ -First `set up your Web server and database `_ (**Section**: Manual Installation - Prerequisites). +First `set up your Web server and database `_ (**Section**: Manual Installation - Prerequisites). .. TODO ON RELEASE: Update version number above on release @@ -25,7 +25,7 @@ Get the source There are two ways to obtain Nextcloud sources: -* Using the `stable version `_ +* Using the `stable version `_ * Using the development version from `GitHub`_ which will be explained below. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/external_storage/external_storage.rst b/user_manual/external_storage/external_storage.rst index da9a08103..8769d264d 100644 --- a/user_manual/external_storage/external_storage.rst +++ b/user_manual/external_storage/external_storage.rst @@ -6,7 +6,7 @@ The External Storage application allows you to mount external storage services, such as Amazon S3, SMB/CIFS file servers and FTP servers… in Nextcloud. Your Nextcloud server administrator controls which of these are available to you. Please see `Configuring External Storage (GUI) -`_ in the Nextcloud Administrator's +`_ in the Nextcloud Administrator's manual for configuration how-tos and examples. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/files/access_webdav.rst b/user_manual/files/access_webdav.rst index 5c25a5722..0761de5b2 100644 --- a/user_manual/files/access_webdav.rst +++ b/user_manual/files/access_webdav.rst @@ -232,7 +232,7 @@ path of your certificate as in this example:: Accessing files using macOS --------------------------- -.. note:: The macOS Finder suffers from a `series of implementation problems `_ and should only be used if the Nextcloud server runs on **Apache** and **mod_php**, or **Nginx 1.3.8+**. Alternative macOS-compatible clients capable of accessing WebDAV shares include open source apps like `Cyberduck `_ (see instructions `here `_) and `Filezilla `_. Commercial clients include `Mountain Duck `_, `Forklift `_, `Transmit `_, and `Commander One `_. +.. note:: The macOS Finder suffers from a `series of implementation problems `_ and should only be used if the Nextcloud server runs on **Apache** and **mod_php**, or **Nginx 1.3.8+**. Alternative macOS-compatible clients capable of accessing WebDAV shares include open source apps like `Cyberduck `_ (see instructions `here `_) and `Filezilla `_. Commercial clients include `Mountain Duck `_, `Forklift `_, `Transmit `_, and `Commander One `_. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/files/deleted_file_management.rst b/user_manual/files/deleted_file_management.rst index 8684a7614..19678dfec 100644 --- a/user_manual/files/deleted_file_management.rst +++ b/user_manual/files/deleted_file_management.rst @@ -56,6 +56,6 @@ Nextcloud will permanently delete those trashed files with the soonest expiratio until the space limit is met again. .. note:: Your administrator may have configured the trash bin retention period - to override the storage space management. See `admin documentation `_ for more details. + to override the storage space management. See `admin documentation `_ for more details. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/files/encrypting_files.rst b/user_manual/files/encrypting_files.rst index 670c1acb5..c82da6522 100644 --- a/user_manual/files/encrypting_files.rst +++ b/user_manual/files/encrypting_files.rst @@ -34,7 +34,7 @@ How can encryption be disabled? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The only way to disable encryption is to run the `"decrypt all" -`_ +`_ script, which decrypts all files and disables encryption. .. TODO ON RELEASE: Update version number above on release @@ -43,8 +43,8 @@ Is it possible to disable encryption with the recovery key? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Yes, *if* every user uses the `file recovery key -`_, `"decrypt all" -`_ will use it to decrypt all files. +`_, `"decrypt all" +`_ will use it to decrypt all files. .. TODO ON RELEASE: Update version number above on release @@ -52,7 +52,7 @@ Can encryption be disabled without the user's password? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ If you don't have the users password or `file recovery key -`_, +`_, then there is no way to decrypt all files. What's more, running it on login would be dangerous, because you would most likely run into timeouts. diff --git a/user_manual/files/large_file_upload.rst b/user_manual/files/large_file_upload.rst index cf39c1c2f..e15bbd884 100644 --- a/user_manual/files/large_file_upload.rst +++ b/user_manual/files/large_file_upload.rst @@ -9,7 +9,7 @@ Modifying certain Nextcloud variables requires administrative access. If you req * Contact your administrator to request an increase in these variables * Refer to the section in the `Administration Documentation - `_ that describes how to manage file + `_ that describes how to manage file upload size limits. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/files/quota.rst b/user_manual/files/quota.rst index 93eeda092..96f509d63 100644 --- a/user_manual/files/quota.rst +++ b/user_manual/files/quota.rst @@ -29,7 +29,7 @@ deleted files exceed 50% of quota then the oldest files are removed until the total is below 50%. .. note:: Your administrator may have configured the trash bin retention period - to override the storage space management. See `administrator documentation `_ for more details. + to override the storage space management. See `administrator documentation `_ for more details. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/files/sharing.rst b/user_manual/files/sharing.rst index ba960b930..6c7b1aecb 100644 --- a/user_manual/files/sharing.rst +++ b/user_manual/files/sharing.rst @@ -12,7 +12,7 @@ Nextcloud users can share files and folders. Possible targets are: * users or groups on federated Nextcloud servers .. note:: Some options may not be available due to administrative configuration. - See `administrator documentation `__ for details. + See `administrator documentation `__ for details. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/files/transfer_ownership.rst b/user_manual/files/transfer_ownership.rst index 97cc75c24..d23beaeba 100644 --- a/user_manual/files/transfer_ownership.rst +++ b/user_manual/files/transfer_ownership.rst @@ -13,7 +13,7 @@ ownerships of those transferred files/folders will also be transferred. #. Click on *Transfer*. .. note:: The username autocompletion or listing may be limited due to administrative visibility configuration. - See `administrator documentation `_ for details. + See `administrator documentation `_ for details. .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/groupware/sync_gnome.rst b/user_manual/groupware/sync_gnome.rst index 3070b5dd3..348455132 100644 --- a/user_manual/groupware/sync_gnome.rst +++ b/user_manual/groupware/sync_gnome.rst @@ -15,7 +15,7 @@ This can be done by following these steps: #. Enter your server URL, username, and password. If you have enabled two-factor authentication (2FA), you need to generate an application password/token, because GNOME Online Accounts `doesn't support Nextcloud's WebFlow login yet `_ - (`Learn more `_): + (`Learn more `_): .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/groupware/sync_ios.rst b/user_manual/groupware/sync_ios.rst index 85c20bc7c..202b94b5e 100644 --- a/user_manual/groupware/sync_ios.rst +++ b/user_manual/groupware/sync_ios.rst @@ -47,7 +47,7 @@ You should now find your contacts in the address book of your iPhone. If it's still not working, have a look at `Troubleshooting Contacts & Calendar`_ or `Troubleshooting Service Discovery`_. -.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.com/server/latest/admin_manual/issues/general_troubleshooting.html#troubleshooting-contacts-calendar -.. _Troubleshooting Service Discovery: https://docs.nextcloud.com/server/latest/admin_manual/issues/general_troubleshooting.html#service-discovery +.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.com/server/31/admin_manual/issues/general_troubleshooting.html#troubleshooting-contacts-calendar +.. _Troubleshooting Service Discovery: https://docs.nextcloud.com/server/31/admin_manual/issues/general_troubleshooting.html#service-discovery .. TODO ON RELEASE: Update version number above on release diff --git a/user_manual/groupware/sync_kde.rst b/user_manual/groupware/sync_kde.rst index a3b42eb4f..b53fd2547 100644 --- a/user_manual/groupware/sync_kde.rst +++ b/user_manual/groupware/sync_kde.rst @@ -28,7 +28,7 @@ In Kalendar: In KOrganizer and Kalendar: -3. Enter your username. As password, you need to generate an app-password/token (`Learn more `_): +3. Enter your username. As password, you need to generate an app-password/token (`Learn more `_): .. TODO ON RELEASE: Update version number above on release