From c4988ece638159b0afd8d71ee87762f2b5ad68bb Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Sat, 1 Mar 2025 14:32:56 +0100 Subject: [PATCH] fix(user): Fix inline code and links in PDF Signed-off-by: Joas Schilling --- user_manual/desktop/installation.rst | 28 +++++++++++++------------- user_manual/files/access_webdav.rst | 6 +++--- user_manual/groupware/sync_android.rst | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/user_manual/desktop/installation.rst b/user_manual/desktop/installation.rst index 17b7450b80d..fe747949d03 100644 --- a/user_manual/desktop/installation.rst +++ b/user_manual/desktop/installation.rst @@ -86,16 +86,16 @@ You can also choose to only install the client itself by using the following com If you for instance want to install everything but the ``DesktopShortcut`` and the ``ShellExtensions`` feature, you have two possibilities: -1. You explicitly name all the features you actually want to install (whitelist) where `Client` is always installed anyway:: +1. You explicitly name all the features you actually want to install (whitelist) where ``Client`` is always installed anyway:: msiexec /passive /i Nextcloud-x.y.z-x64.msi ADDDEFAULT=StartMenuShortcuts -2. You pass the `NO_DESKTOP_SHORTCUT` and `NO_SHELL_EXTENSIONS` properties:: +2. You pass the ``NO_DESKTOP_SHORTCUT`` and ``NO_SHELL_EXTENSIONS`` properties:: msiexec /passive /i Nextcloud-x.y.z-x64.msi NO_DESKTOP_SHORTCUT="1" NO_SHELL_EXTENSIONS="1" .. NOTE:: - The Nextcloud `.msi` remembers these properties, so you don't need to specify them on upgrades. + The Nextcloud ``.msi`` remembers these properties, so you don't need to specify them on upgrades. .. NOTE:: You cannot use these to change the installed features, if you want to do that, see the next section. @@ -103,7 +103,7 @@ If you for instance want to install everything but the ``DesktopShortcut`` and t Changing Installed Features ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -You can change the installed features later by using `REMOVE` and `ADDDEFAULT` properties. +You can change the installed features later by using ``REMOVE`` and ``ADDDEFAULT`` properties. 1. If you want to add the the desktop shortcut later, run the following command:: @@ -113,38 +113,38 @@ You can change the installed features later by using `REMOVE` and `ADDDEFAULT` p msiexec /passive /i Nextcloud-x.y.z-x64.msi REMOVE="DesktopShortcut" -Windows keeps track of the installed features and using `REMOVE` or `ADDDEFAULT` will only affect the mentioned features. +Windows keeps track of the installed features and using ``REMOVE`` or ``ADDDEFAULT`` will only affect the mentioned features. Compare `REMOVE `_ and `ADDDEFAULT `_ on the Windows Installer Guide. .. NOTE:: - You cannot specify `REMOVE` on initial installation as it will disable all features. + You cannot specify ``REMOVE`` on initial installation as it will disable all features. Installation Folder ^^^^^^^^^^^^^^^^^^^ -You can adjust the installation folder by specifying the `INSTALLDIR` +You can adjust the installation folder by specifying the ``INSTALLDIR`` property like this:: msiexec /passive /i Nextcloud-x.y.z-x64.msi INSTALLDIR="C:\Program Files\Non Standard Nextcloud Client Folder" -Be careful when using PowerShell instead of `cmd.exe`, it can be tricky to get +Be careful when using PowerShell instead of ``cmd.exe``, it can be tricky to get the whitespace escaping right there. -Specifying the `INSTALLDIR` like this only works on first installation, you cannot simply re-invoke the `.msi` with a different path. If you still need to change it, uninstall it first and reinstall it with the new path. +Specifying the ``INSTALLDIR`` like this only works on first installation, you cannot simply re-invoke the ``.msi`` with a different path. If you still need to change it, uninstall it first and reinstall it with the new path. Disabling Automatic Updates ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -To disable automatic updates, you can pass the `SKIPAUTOUPDATE` property.:: +To disable automatic updates, you can pass the ``SKIPAUTOUPDATE`` property.:: msiexec /passive /i Nextcloud-x.y.z-x64.msi SKIPAUTOUPDATE="1" Launch After Installation ^^^^^^^^^^^^^^^^^^^^^^^^^ -To launch the client automatically after installation, you can pass the `LAUNCH` property.:: +To launch the client automatically after installation, you can pass the ``LAUNCH`` property.:: msiexec /i Nextcloud-x.y.z-x64.msi LAUNCH="1" @@ -158,12 +158,12 @@ No Reboot After Installation ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The Nextcloud Client schedules a reboot after installation to make sure the Explorer extension is correctly (un)loaded. -If you're taking care of the reboot yourself, you can set the `REBOOT` property:: +If you're taking care of the reboot yourself, you can set the ``REBOOT`` property:: msiexec /i Nextcloud-x.y.z-x64.msi REBOOT=ReallySuppress -This will make `msiexec` exit with error `ERROR_SUCCESS_REBOOT_REQUIRED` (3010). -If your deployment tooling interprets this as an actual error and you want to avoid that, you may want to set the `DO_NOT_SCHEDULE_REBOOT` instead:: +This will make ``msiexec`` exit with error ``ERROR_SUCCESS_REBOOT_REQUIRED`` (3010). +If your deployment tooling interprets this as an actual error and you want to avoid that, you may want to set the ``DO_NOT_SCHEDULE_REBOOT`` instead:: msiexec /i Nextcloud-x.y.z-x64.msi DO_NOT_SCHEDULE_REBOOT="1" diff --git a/user_manual/files/access_webdav.rst b/user_manual/files/access_webdav.rst index 5c25a5722c4..f127e7bb935 100644 --- a/user_manual/files/access_webdav.rst +++ b/user_manual/files/access_webdav.rst @@ -414,12 +414,12 @@ Solution ^^^^^^^^ Windows limits the maximum size a file transferred from or to a WebDAV share -may have. You can increase the value **FileSizeLimitInBytes** in -**HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\WebClient\\Parameters** +may have. You can increase the value ``FileSizeLimitInBytes`` in +``HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\WebClient\\Parameters`` by clicking on **Modify**. To increase the limit to the maximum value of 4GB, select **Decimal**, enter a -value of **4294967295**, and reboot Windows or restart the **WebClient** +value of ``4294967295``, and reboot Windows or restart the **WebClient** service. Problem diff --git a/user_manual/groupware/sync_android.rst b/user_manual/groupware/sync_android.rst index b23e4bc7bda..e12eed04cd0 100644 --- a/user_manual/groupware/sync_android.rst +++ b/user_manual/groupware/sync_android.rst @@ -74,7 +74,7 @@ steps are required: .. note:: Using user name and password will not work if 2-Factor-Authentication is enabled and will throw a generic "Unknown resource" error. - Use a `dedicated App password <../session_management.html#managing-devices>`_ instead. + Use a :ref:`dedicated App password ` instead. .. tip:: DAVx⁵ lists the calendar subscriptions made through the Nextcloud Calendar app, but you need to install the `ICSx⁵ (formerly known as ICSDroid) `__ app on your Android device, `from the Google Play Store `__ or `from F-Droid `__ to sync them.