Skip to content

Commit 5412d5a

Browse files
authored
Merge pull request #12557 from nextcloud/bugfix/stable31
fix: Adjust links to stay on the same Nextcloud version of the docs
2 parents 74ed03f + ee727d0 commit 5412d5a

32 files changed

+63
-44
lines changed

admin_manual/apps_management.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ have an **Featured**-tag.
3030
and custom consulting for supported apps, contact our `sales team <https://nextcloud.com/enterprise/>`_.
3131

3232
.. note:: If you would like to develop your own Nextcloud app, you can find out
33-
more information in our `developer manual <https://docs.nextcloud.com/server/latest/go.php?to=developer-manual>`_.
33+
more information in our `developer manual <https://docs.nextcloud.com/server/31/go.php?to=developer-manual>`_.
3434
.. TODO ON RELEASE: Update version number above on release
3535
3636
All apps must be licensed under AGPLv3+ or any compatible license.

admin_manual/configuration_files/big_file_upload_configuration.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ relevant php.ini files) ::
4545

4646
The ``upload_max_filesize`` and ``post_max_size`` settings may not apply to file uploads
4747
through WebDAV single file PUT requests or `Chunked file uploads
48-
<https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html>`_
48+
<https://docs.nextcloud.com/server/31/developer_manual/client_apis/WebDAV/chunking.html>`_
4949
For those, PHP and webserver timeouts are the limiting factor on the upload size.
5050

5151
.. TODO ON RELEASE: Update version number above on release
@@ -170,19 +170,21 @@ Default is ``104857600`` (100 MiB).
170170
Large file upload on object storage
171171
-----------------------------------
172172

173-
`Chunked file uploads <https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html>`_
173+
`Chunked file uploads <https://docs.nextcloud.com/server/31/developer_manual/client_apis/WebDAV/chunking.html>`_
174174
do have a larger space consumption on the temporary folder when processing those uploads
175175
on object storage as the individual chunks get downloaded from the storage and will be assembled
176176
to the actual file on the Nextcloud servers temporary directory. It is recommended to increase
177177
the size of your temp directory accordingly and also ensure that request timeouts are high
178178
enough for PHP, webservers or any load balancers involved.
179179

180+
.. TODO ON RELEASE: Update version number above on release
181+
180182
.. 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).
181183

182184
Federated Cloud Sharing
183185
-----------------------
184186

185-
If you are using `Federated Cloud Sharing <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_ and want to share large files, you can increase the timeout values for requests to the federated servers.
187+
If you are using `Federated Cloud Sharing <https://docs.nextcloud.com/server/31/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_ and want to share large files, you can increase the timeout values for requests to the federated servers.
186188
Therefore, you can set ``davstorage.request_timeout`` in your ``config.php``. The default value is 30 seconds.
187189

188190
.. TODO ON RELEASE: Update version number above on release

admin_manual/configuration_files/encryption_details.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ Sources
346346
-------
347347

348348
- `encryption-recovery-tools repository on GitHub <https://github.com/nextcloud/encryption-recovery-tools>`_
349-
- `Nextcloud Encryption Configuration documentation <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/encryption_configuration.html>`_
349+
- `Nextcloud Encryption Configuration documentation <https://docs.nextcloud.com/server/31/admin_manual/configuration_files/encryption_configuration.html>`_
350350
- `Nextcloud Help response concerning the usage of version information <https://help.nextcloud.com/t/allow-file-decryption-with-only-the-files-keys-and-passwords/436/12>`_
351351
- `Sourcecode: Creation of the Message Authentication Code <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L504>`_
352352
- `Sourcecode: Derivation of the Encryption Key <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L346>`_

admin_manual/configuration_files/file_sharing_configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ forcing them.
9898
<https://github.com/owncloud/core/issues/7009>`_ for discussion of this.
9999

100100
.. note:: There are more sharing options on config.php level available:
101-
`Configuration Parameters <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#sharing>`_
101+
`Configuration Parameters <https://docs.nextcloud.com/server/31/admin_manual/configuration_server/config_sample_php_parameters.html#sharing>`_
102102

103103
.. TODO ON RELEASE: Update version number above on release
104104
@@ -176,7 +176,7 @@ Trashbin contents are not transferred::
176176
reference.)
177177

178178
Users may also transfer files or folders selectively by themselves.
179-
See `user documentation <https://docs.nextcloud.com/server/latest/user_manual/en/files/transfer_ownership.html>`_ for details.
179+
See `user documentation <https://docs.nextcloud.com/server/31/user_manual/en/files/transfer_ownership.html>`_ for details.
180180

181181
.. TODO ON RELEASE: Update version number above on release
182182

admin_manual/configuration_user/two_factor-auth.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Several 2FA apps are already available including
1515
a Telegram/Signal/SMS gateway and `U2F <https://en.wikipedia.org/wiki/Universal_2nd_Factor>`_.
1616

1717

18-
Developers can `build new two-factor provider apps <https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/two-factor-provider.html>`_.
18+
Developers can `build new two-factor provider apps <https://docs.nextcloud.com/server/31/developer_manual/digging_deeper/two-factor-provider.html>`_.
1919

2020
.. TODO ON RELEASE: Update version number above on release
2121
@@ -29,7 +29,7 @@ you want, 2FA will be installed and enabled on your Nextcloud server.
2929

3030
.. figure:: ../images/2fa-app-install.png
3131

32-
Once 2FA has been enabled, users have to `activate it in their personal settings. <https://docs.nextcloud.com/server/latest/user_manual/en/user_2fa.html>`_
32+
Once 2FA has been enabled, users have to `activate it in their personal settings. <https://docs.nextcloud.com/server/31/user_manual/en/user_2fa.html>`_
3333

3434
.. TODO ON RELEASE: Update version number above on release
3535

admin_manual/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ respective manuals:
3737
* `Nextcloud User Manual`_
3838
* `Nextcloud Desktop Client`_
3939

40-
.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/latest/user_manual/en/
40+
.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/31/user_manual/en/
4141
.. _`Nextcloud Desktop Client`: https://docs.nextcloud.com/desktop/latest/
4242

4343
.. TODO ON RELEASE: Update version number above on release

admin_manual/installation/example_ubuntu.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ following commands in a terminal::
1414

1515
* This installs the packages for the Nextcloud core system.
1616
If you are planning on running additional apps, keep in mind that they might
17-
require additional packages. See `Prerequisites for manual installation <https://docs.nextcloud.com/server/latest/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation>`_ for details.
17+
require additional packages. See `Prerequisites for manual installation <https://docs.nextcloud.com/server/31/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation>`_ for details.
1818

1919
.. TODO ON RELEASE: Update version number above on release
2020

admin_manual/installation/harden_server.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,11 @@ Depending on your server setup, these are the possible connections:
287287
- submitted data: statistical data. see here for the `detailed field list`_
288288
- Any remote Nextcloud server that is connected with federated sharing
289289

290-
.. _optional (config): https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#has-internet-connection
290+
.. _optional (config): https://docs.nextcloud.com/server/31/admin_manual/configuration_server/config_sample_php_parameters.html#has-internet-connection
291291
.. _detailed field list : https://github.com/nextcloud/survey_client
292292

293+
.. TODO ON RELEASE: Update version number above on release
294+
293295
294296
Setup fail2ban
295297
--------------

admin_manual/issues/general_troubleshooting.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ configuration report with the :ref:`occ config command
3131

3232
.. _the Nextcloud Forums: https://help.nextcloud.com
3333
.. _FAQ page: https://help.nextcloud.com/t/how-to-faq-wiki
34-
.. _bugtracker: https://docs.nextcloud.com/server/latest/developer_manual/prologue/bugtracker/index.html
34+
.. _bugtracker: https://docs.nextcloud.com/server/31/developer_manual/prologue/bugtracker/index.html
3535

3636
.. TODO ON RELEASE: Update version number above on release
3737
@@ -431,7 +431,7 @@ does not match the actual data stored in the user's ``data/$userId/files`` direc
431431
.. note::
432432

433433
Metadata, versions, trashbin and encryption keys are not counted in the used space above.
434-
Please refer to the `quota documentation <https://docs.nextcloud.com/server/latest/user_manual/en/files/quota.html>`_ for details.
434+
Please refer to the `quota documentation <https://docs.nextcloud.com/server/31/user_manual/en/files/quota.html>`_ for details.
435435

436436
.. TODO ON RELEASE: Update version number above on release
437437

admin_manual/occ_command.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,9 @@ While setting a configuration value, multiple options are available:
367367
.. note::
368368
See `Appconfig Concepts`_ to learn more about `typed value`, `lazy` and `sensitive` flag.
369369

370-
.. _Appconfig Concepts: https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/config/appconfig.html#concept-overview
370+
.. _Appconfig Concepts: https://docs.nextcloud.com/server/31/developer_manual/digging_deeper/config/appconfig.html#concept-overview
371371

372+
.. TODO ON RELEASE: Update version number above on release
372373
373374
You can list all configuration values with one command::
374375

@@ -960,7 +961,7 @@ The command line option ``--transfer-incoming-shares`` overwrites the config.php
960961
sudo -u www-data php occ files:transfer-ownership --transfer-incoming-shares=0 <source-user> <destination-user>
961962

962963
Users may also transfer files or folders selectively by themselves.
963-
See `user documentation <https://docs.nextcloud.com/server/latest/user_manual/en/files/transfer_ownership.html>`_ for details.
964+
See `user documentation <https://docs.nextcloud.com/server/31/user_manual/en/files/transfer_ownership.html>`_ for details.
964965

965966
.. TODO ON RELEASE: Update version number above on release
966967
@@ -1037,7 +1038,7 @@ Verify your app::
10371038
sudo -u www-data php occ integrity:check-app --path=/pathto/app appname
10381039

10391040
When it returns nothing, your app is signed correctly. When it returns a message then there is an error. See `Code Signing
1040-
<https://docs.nextcloud.com/server/latest/developer_manual/app_publishing_maintenance/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
1041+
<https://docs.nextcloud.com/server/31/developer_manual/app_publishing_maintenance/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
10411042

10421043
.. TODO ON RELEASE: Update version number above on release
10431044

0 commit comments

Comments
 (0)