Skip to content

Commit 25a6d20

Browse files
authored
Merge pull request #14384 from nextcloud/backport/14230/stable32
[stable32] feat: auto replace latest urls for older releases
2 parents d80b647 + f094db3 commit 25a6d20

31 files changed

+23
-80
lines changed

admin_manual/apps_management.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ have an **Featured**-tag.
3131

3232
.. note:: If you would like to develop your own Nextcloud app, you can find out
3333
more information in our `developer manual <https://docs.nextcloud.com/server/32/go.php?to=developer-manual>`_.
34-
.. TODO ON RELEASE: Update version number above on release
3534

3635
All apps must be licensed under AGPLv3+ or any compatible license.
3736

admin_manual/configuration_files/big_file_upload_configuration.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ through WebDAV single file PUT requests or `Chunked file uploads
4848
<https://docs.nextcloud.com/server/32/developer_manual/client_apis/WebDAV/chunking.html>`_
4949
For those, PHP and webserver timeouts are the limiting factor on the upload size.
5050

51-
.. TODO ON RELEASE: Update version number above on release
52-
5351
Adjust these values for your needs. If you see PHP timeouts in your logfiles,
5452
increase the timeout values, which are in seconds::
5553

@@ -169,14 +167,10 @@ to the actual file on the Nextcloud servers temporary directory. It is recommend
169167
the size of your temp directory accordingly and also ensure that request timeouts are high
170168
enough for PHP, webservers or any load balancers involved.
171169

172-
.. TODO ON RELEASE: Update version number above on release
173-
174170
.. 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).
175171

176172
Federated Cloud Sharing
177173
-----------------------
178174

179175
If you are using `Federated Cloud Sharing <https://docs.nextcloud.com/server/32/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.
180176
Therefore, you can set ``davstorage.request_timeout`` in your ``config.php``. The default value is 30 seconds.
181-
182-
.. TODO ON RELEASE: Update version number above on release

admin_manual/configuration_files/encryption_details.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,5 +356,3 @@ Sources
356356
- `Sourcecode: Generation of the File Key <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L645>`_
357357
- `Sourcecode: Generation of the Initialization Vector <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L634>`_
358358
- `Sourcecode: Generation of a Key Pair <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L153>`_
359-
360-
.. TODO ON RELEASE: Update version number above on release

admin_manual/configuration_files/file_sharing_configuration.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,6 @@ forcing them.
100100
.. note:: There are more sharing options on config.php level available:
101101
`Configuration Parameters <https://docs.nextcloud.com/server/32/admin_manual/configuration_server/config_sample_php_parameters.html#sharing>`_
102102

103-
.. TODO ON RELEASE: Update version number above on release
104-
105103
.. _transfer_userfiles_label:
106104

107105
Advanced settings
@@ -178,8 +176,6 @@ reference.)
178176
Users may also transfer files or folders selectively by themselves.
179177
See `user documentation <https://docs.nextcloud.com/server/32/user_manual/en/files/transfer_ownership.html>`_ for details.
180178

181-
.. TODO ON RELEASE: Update version number above on release
182-
183179

184180
Creating persistent file Shares
185181
-------------------------------

admin_manual/configuration_user/two_factor-auth.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,13 @@ Other 2FA providers may be found in the App Store.
4848
Developers can also `implement new two-factor provider
4949
apps <https://docs.nextcloud.com/server/32/developer_manual/digging_deeper/two-factor-provider.html>`_.
5050

51-
.. TODO ON RELEASE: Update version number above on release
52-
5351
Enforcing two-factor authentication
5452
-----------------------------------
5553

5654
By default 2FA is *optional*, hence users are given the choice whether to enable
5755
it for their account `under their personal settings <https://docs.nextcloud.com/server/32/user_manual/en/user_2fa.html>`_.
5856
Admins may, however, enforce the use of 2FA.
5957

60-
.. TODO ON RELEASE: Update version number above on release
61-
6258
Enforcement is possible system-wide (all users) or for selected groups only. Select groups
6359
can also be excluded from 2FA requirements.
6460

admin_manual/index.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,3 @@ respective manuals:
3939

4040
.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/32/user_manual/en/
4141
.. _`Nextcloud Desktop Client`: https://docs.nextcloud.com/desktop/latest/
42-
43-
.. TODO ON RELEASE: Update version number above on release

admin_manual/installation/example_ubuntu.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ following commands in a terminal::
1616
If you are planning on running additional apps, keep in mind that they might
1717
require additional packages. See `Prerequisites for manual installation <https://docs.nextcloud.com/server/32/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation>`_ for details.
1818

19-
.. TODO ON RELEASE: Update version number above on release
20-
2119
Now you need to create a database user and the database itself by using the
2220
MySQL command line interface. The database tables will be created by Nextcloud
2321
when you login for the first time.

admin_manual/installation/harden_server.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,6 @@ Depending on your server setup, these are the possible connections:
305305
.. _optional (config): https://docs.nextcloud.com/server/32/admin_manual/configuration_server/config_sample_php_parameters.html#has-internet-connection
306306
.. _detailed field list: https://github.com/nextcloud/survey_client
307307

308-
.. TODO ON RELEASE: Update version number above on release
309-
310308

311309
Setup fail2ban
312310
--------------

admin_manual/issues/general_troubleshooting.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ configuration report with the :ref:`occ config command
3333
.. _FAQ page: https://help.nextcloud.com/t/how-to-faq-wiki
3434
.. _bugtracker: https://docs.nextcloud.com/server/32/developer_manual/prologue/bugtracker/index.html
3535

36-
.. TODO ON RELEASE: Update version number above on release
37-
3836
General troubleshooting
3937
-----------------------
4038

@@ -415,8 +413,6 @@ does not match the actual data stored in the user's ``data/$userId/files`` direc
415413
Metadata, versions, trashbin and encryption keys are not counted in the used space above.
416414
Please refer to the `quota documentation <https://docs.nextcloud.com/server/32/user_manual/en/files/quota.html>`_ for details.
417415

418-
.. TODO ON RELEASE: Update version number above on release
419-
420416
Running the following command can help fix the sizes and quota for a given user::
421417

422418
sudo -E -u www-data php occ files:scan -vvv <user-id>

admin_manual/occ_command.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,6 @@ While setting a configuration value, multiple options are available:
379379

380380
.. _Appconfig Concepts: https://docs.nextcloud.com/server/32/developer_manual/digging_deeper/config/appconfig.html#concept-overview
381381

382-
.. TODO ON RELEASE: Update version number above on release
383-
384382
You can list all configuration values with one command::
385383

386384
sudo -E -u www-data php occ config:list
@@ -1152,8 +1150,6 @@ The command line option ``--transfer-incoming-shares`` overwrites the config.php
11521150
Users may also transfer files or folders selectively by themselves.
11531151
See `user documentation <https://docs.nextcloud.com/server/32/user_manual/en/files/transfer_ownership.html>`_ for details.
11541152

1155-
.. TODO ON RELEASE: Update version number above on release
1156-
11571153
.. _occ_files_windows_filenames:
11581154

11591155
Toggle Windows compatibility
@@ -1245,8 +1241,6 @@ Verify your app::
12451241
When it returns nothing, your app is signed correctly. When it returns a message then there is an error. See `Code Signing
12461242
<https://docs.nextcloud.com/server/32/developer_manual/app_publishing_maintenance/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
12471243

1248-
.. TODO ON RELEASE: Update version number above on release
1249-
12501244
``integrity:sign-core`` is for Nextcloud core developers only.
12511245

12521246
See :doc:`../issues/code_signing` to learn more.

0 commit comments

Comments
 (0)