Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2019-07-08 11:13:23 +0300
committerChristian Kamm <mail@ckamm.de>2019-07-09 17:34:55 +0300
commit3699d19cf348387543966ddd40a5c6beddd6ab84 (patch)
tree24982127992880d66697856b47867b7aee9c07a8 /docs
parentef24650cb8f71276441f42bdc8a0c1f0641a9b91 (diff)
Doc: Remove dead files
They had been moved to - advanced_usage/configuration_file.adoc - advanced_usage/environment_variables.adoc
Diffstat (limited to 'docs')
-rw-r--r--docs/modules/ROOT/pages/conffile.adoc98
-rw-r--r--docs/modules/ROOT/pages/envvars.adoc44
2 files changed, 0 insertions, 142 deletions
diff --git a/docs/modules/ROOT/pages/conffile.adoc b/docs/modules/ROOT/pages/conffile.adoc
deleted file mode 100644
index be7cb392a..000000000
--- a/docs/modules/ROOT/pages/conffile.adoc
+++ /dev/null
@@ -1,98 +0,0 @@
-= Advanced Usage - Configuration File
-:toc: right
-
-== Introduction
-
-The ownCloud Client reads a configuration file.
-You can locate this configuration file as follows:
-
-On Linux distributions: `$HOME/.config/ownCloud/owncloud.cfg`
-On Microsoft Windows systems: `%APPDATA%\ownCloud\owncloud.cfg`
-On MAC OS X systems: `$HOME/Library/Preferences/ownCloud/owncloud.cfg`
-
-The configuration file contains settings using the Microsoft Windows `.ini` file format.
-You can overwrite changes using the ownCloud configuration dialog.
-
-NOTE: Use caution when making changes to the ownCloud Client configuration file. Incorrect settings can produce unintended results.
-
-Some interesting values that can be set on the configuration file are:
-
-== `[ownCloud]` Section
-
-[width="100%",cols="30%,10%,60%",]
-|===
-| Variable | Default | Meaning
-| `remotePollInterval`
-| `30000`
-| Specifies the poll time for the remote repository in milliseconds.
-
-| `forceSyncInterval`
-| `7200000`
-| The duration of no activity after which a synchronization run shall be triggered automatically.
-
-| `fullLocalDiscoveryInterval`
-| `3600000`
-| The interval after which the next synchronization will perform a full local discovery.
-
-| `notificationRefreshInterval`
-| `300000`
-| Specifies the default interval of checking for new server notifications in milliseconds.
-|===
-
-== `[General]` Section
-
-[width="100%",cols="30%,10%,60%",]
-|===
-| Variable | Default | Meaning
-
-| `chunkSize`
-| `5242880`
-| Specifies the chunk size of uploaded files in bytes.
-
-| `promptDeleteAllFiles`
-| `true`
-| If a UI prompt should ask for confirmation if it was detected that all files and folders were deleted.
-
-| `maxLogLines`
-| `20000`
-| Specifies the maximum number of log lines displayed in the log window.
-
-| `timeout`
-| `300`
-| The timeout for network connections in seconds.
-
-| `moveToTrash`
-| `false`
-| If non-locally deleted files should be moved to trash instead of deleting them completely. This option only works on linux
-
-| `showExperimentalOptions`
-| `false`
-| Whether to show experimental options that are still undergoing testing in the user interface.
-Turning this on does not enable experimental behavior on its own.
-It does enable user interface options that can be used to opt in to experimental features.
-|===
-
-== `[Proxy]` Section
-
-[width="100%",cols="30%,10%,60%a",]
-|===
-| Variable | Default | Meaning
-
-| `host`
-| `127.0.0.1`
-| The address of the proxy server.
-
-| `port`
-| `8080`
-| The port were the proxy is listening.
-
-| `type`
-| `2`
-|
-
-* `0` for System Proxy.
-* `1` for SOCKS5 Proxy.
-* `2` for No Proxy.
-* `3` for HTTP(S) Proxy.
-
-|===
diff --git a/docs/modules/ROOT/pages/envvars.adoc b/docs/modules/ROOT/pages/envvars.adoc
deleted file mode 100644
index 7c5f249c7..000000000
--- a/docs/modules/ROOT/pages/envvars.adoc
+++ /dev/null
@@ -1,44 +0,0 @@
-= Advanced Usage - Environment Variables
-
-The behavior of the client can also be controlled using environment variables.
-The value of the environment variables overrides the values in the configuration file.
-
-The environment variables are:
-
-[cols="2,1,4", options="header"]
-|===
-| Setting
-| Default
-| Description
-
-| `OWNCLOUD_CHUNK_SIZE`
-| 5242880 (or 5 MiB)
-| Specifies the chunk size of uploaded files in bytes.
-Increasing this value may help with synchronization problems in certain configurations.
-
-| `OWNCLOUD_TIMEOUT`
-| 300
-| The timeout for network connections in seconds.
-
-| `OWNCLOUD_CRITICAL_FREE_SPACE_BYTES`
-| 50*1000*1000 bytes
-| The minimum disk space needed for operation.
-A fatal error is raised if less free space is available.
-
-| `OWNCLOUD_FREE_SPACE_BYTES`
-| 250*1000*1000 bytes
-| Downloads that would reduce the free space below this value are skipped.
-More information available under the "Low Disk Space" section.
-
-| `OWNCLOUD_MAX_PARALLEL`
-| 6
-| Maximum number of parallel jobs.
-
-| `OWNCLOUD_BLACKLIST_TIME_MIN`
-| 25
-| Minimum timeout, in seconds, for blacklisted files.
-
-| `OWNCLOUD_BLACKLIST_TIME_MAX`
-| 24*60*60 (or one day)
-| Maximum timeout, in seconds, for blacklisted files.
-|===