Skip to content

Commit 612fb51

Browse files
Copilotnextcloud-command
authored andcommitted
fix: use absolute URLs for cross-manual links to fix PDF navigation
Agent-Logs-Url: https://github.com/nextcloud/documentation/sessions/0eeab2cf-94b4-4068-b59b-d8eae342c840 Co-authored-by: nextcloud-command <88102737+nextcloud-command@users.noreply.github.com> Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
1 parent 51eaa50 commit 612fb51

48 files changed

Lines changed: 69 additions & 72 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎admin_manual/ai/overview.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Frontend apps
118118
* `Whiteboard <https://apps.nextcloud.com/apps/whiteboard>`_ integrating Assistant through the smart picker to offer a graphical UI for the various tasks
119119
* `Deck <https://apps.nextcloud.com/apps/deck>`_ integrating Assistant through the smart picker to offer a graphical UI for the various tasks
120120
* `Nextcloud Office <https://apps.nextcloud.com/apps/richdocuments>`_ integrating Assistant through the smart picker to offer a graphical UI for the various tasks in documents
121-
* `Desktop Clients <../../user_manual/desktop/index.html>`_ for simple "Chat with AI"
121+
* `Desktop Clients <https://docs.nextcloud.com/server/latest/user_manual/en/desktop/index.html>`_ for simple "Chat with AI"
122122

123123
Backend apps
124124
~~~~~~~~~~~~

‎admin_manual/configuration_database/mysql_4byte_support.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ installation needs to be tweaked a bit.
1313

1414
This guide applies only to MySQL 8 or newer and MariaDB 10.6 or newer.
1515
For a list of supported MySQL and MariaDB versions, see our
16-
`system requirements documentation <../installation/system_requirements.html>`.
16+
:doc:`system requirements documentation <../installation/system_requirements>`.
1717

1818
1. Make sure the following InnoDB settings are set on your MySQL server::
1919

‎admin_manual/configuration_files/big_file_upload_configuration.rst‎

Lines changed: 3 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-
<../../developer_manual/client_apis/WebDAV/chunking.html>`_
48+
<https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html>`_
4949
For those, PHP and webserver timeouts are the limiting factor on the upload size.
5050

5151
Adjust these values for your needs. If you see PHP timeouts in your logfiles,
@@ -160,7 +160,7 @@ Default is ``104857600`` (100 MiB).
160160
Large file upload on object storage
161161
-----------------------------------
162162

163-
`Chunked file uploads <../../developer_manual/client_apis/WebDAV/chunking.html>`_
163+
`Chunked file uploads <https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html>`_
164164
do have a larger space consumption on the temporary folder when processing those uploads
165165
on object storage as the individual chunks get downloaded from the storage and will be assembled
166166
to the actual file on the Nextcloud servers temporary directory. It is recommended to increase
@@ -172,5 +172,5 @@ enough for PHP, webservers or any load balancers involved.
172172
Federated Cloud Sharing
173173
-----------------------
174174

175-
If you are using `Federated Cloud Sharing <federated_cloud_sharing_configuration.html>`_ and want to share large files, you can increase the timeout values for requests to the federated servers.
175+
If you are using :doc:`Federated Cloud Sharing <federated_cloud_sharing_configuration>` and want to share large files, you can increase the timeout values for requests to the federated servers.
176176
Therefore, you can set ``davstorage.request_timeout`` in your ``config.php``. The default value is 30 seconds.

‎admin_manual/configuration_files/encryption_configuration.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,6 @@ Further Reading
389389
- :ref:`occ Command Reference: Encryption <encryption_label>`
390390
- `How Nextcloud uses encryption to protect your data <https://nextcloud.com/blog/encryption-in-nextcloud/>`_
391391
- `Technical impact of Authenticated Encryption <https://hackerone.com/reports/108082>`_
392-
- `Nextcloud SSE Implementation Details <encryption_details.html>`_
392+
- :doc:`Nextcloud SSE Implementation Details <encryption_details>`
393393
- `Nextcloud Encryption (SSE & E2EE) Recovery Tools <https://github.com/nextcloud/encryption-recovery-tools>`_
394394
- `Nextcloud E2EE Server API App (required for E2EE usage) <https://github.com/nextcloud/end_to_end_encryption/>`_

‎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 <encryption_configuration.html>`_
349+
- :doc:`Nextcloud Encryption Configuration documentation <encryption_configuration>`
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 <../configuration_server/config_sample_php_parameters.html#sharing>`_
101+
:doc:`Configuration Parameters <../configuration_server/config_sample_php_parameters>`
102102

103103
.. _transfer_userfiles_label:
104104

@@ -174,7 +174,7 @@ Trashbin contents are not transferred::
174174
reference.)
175175

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

179179

180180
Creating persistent file Shares

‎admin_manual/configuration_server/config_sample_php_parameters.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ Enable SMTP class debugging.
10741074
.. note::
10751075

10761076
``loglevel`` will likely need to be adjusted too. See docs:
1077-
email_configuration.rst#enabling-debug-mode
1077+
https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/email_configuration.html#enabling-debug-mode
10781078

10791079
Defaults to ``false``
10801080

‎admin_manual/configuration_user/profile_configuration.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,5 +420,5 @@ See also
420420
--------
421421

422422
- :doc:`../configuration_files/file_sharing_configuration` — sharing and autocomplete settings that interact with profile visibility
423-
- `User manual: Personal settings <../../user_manual/userpreferences.html>`_ — user-facing profile and personal info settings
423+
- `User manual: Personal settings <https://docs.nextcloud.com/server/latest/user_manual/en/userpreferences.html>`_ — user-facing profile and personal info settings
424424

‎admin_manual/configuration_user/two_factor-auth.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ Other 2FA providers may be found in the App Store.
4646
.. figure:: ../images/2fa-app-install.png
4747

4848
Developers can also `implement new two-factor provider
49-
apps <../../developer_manual/digging_deeper/two-factor-provider.html>`_.
49+
apps <https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/two-factor-provider.html>`_.
5050

5151
Enforcing two-factor authentication
5252
-----------------------------------
5353

5454
By default 2FA is *optional*, hence users are given the choice whether to enable
55-
it for their account `under their personal settings <../../user_manual/user_2fa.html>`_.
55+
it for their account `under their personal settings <https://docs.nextcloud.com/server/latest/user_manual/en/user_2fa.html>`_.
5656
Admins may, however, enforce the use of 2FA.
5757

5858
Enforcement is possible system-wide (all users) or for selected groups only. Select groups

‎admin_manual/desktop/index.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ You can find additional information here:
2222
* `User manual`_
2323
* `Developer manual`_
2424

25-
.. _`User manual`: ../../user_manual/desktop/index.html
26-
.. _`Developer manual`: ../../developer_manual/desktop/index.html
25+
.. _`User manual`: https://docs.nextcloud.com/server/latest/user_manual/en/desktop/index.html
26+
.. _`Developer manual`: https://docs.nextcloud.com/server/latest/developer_manual/desktop/index.html

0 commit comments

Comments
 (0)