diff --git a/user_manual_de/Create HTML.lnk b/user_manual_de/Create HTML.lnk new file mode 100644 index 000000000..0dd9e1c91 Binary files /dev/null and b/user_manual_de/Create HTML.lnk differ diff --git a/user_manual_de/Create PDF.lnk b/user_manual_de/Create PDF.lnk new file mode 100644 index 000000000..f7c0969bc Binary files /dev/null and b/user_manual_de/Create PDF.lnk differ diff --git a/user_manual_de/Makefile b/user_manual_de/Makefile new file mode 100644 index 000000000..72f472c35 --- /dev/null +++ b/user_manual_de/Makefile @@ -0,0 +1,168 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +PAPER = +BUILDDIR = _build + +# Internal variables. +PAPEROPT_a4 = -D latex_paper_size=a4 +PAPEROPT_letter = -D latex_paper_size=letter +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +# the i18n builder cannot share the environment and doctrees with the others +I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . + +.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext + +help: + @echo "Please use \`make ' where is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" + @echo " pickle to make pickle files" + @echo " json to make JSON files" + @echo " htmlhelp to make HTML files and a HTML help project" + @echo " qthelp to make HTML files and a qthelp project" + @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " pdf to make PDF files" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " texinfo to make Texinfo files" + @echo " info to make Texinfo files and run them through makeinfo" + @echo " gettext to make PO message catalogs" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + +clean: + -rm -rf $(BUILDDIR)/* + +html: html-com + +html-all: html-release html-com + +html-release: + $(SPHINXBUILD) -b html -D html_theme='nextcloud_release' $(ALLSPHINXOPTS) $(BUILDDIR)/html/release + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html/release." + +html-com: + $(SPHINXBUILD) -b html -D html_theme='nextcloud_com' $(ALLSPHINXOPTS) $(BUILDDIR)/html/com + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html/com." + +dirhtml: + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." + +singlehtml: + $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml + @echo + @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." + +pickle: + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle + @echo + @echo "Build finished; now you can process the pickle files." + +json: + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + @echo + @echo "Build finished; now you can process the JSON files." + +htmlhelp: + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp + @echo + @echo "Build finished; now you can run HTML Help Workshop with the" \ + ".hhp project file in $(BUILDDIR)/htmlhelp." + +qthelp: + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp + @echo + @echo "Build finished; now you can run "qcollectiongenerator" with the" \ + ".qhcp project file in $(BUILDDIR)/qthelp, like this:" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/OwncloudDocumentation.qhcp" + @echo "To view the help file:" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/OwncloudDocumentation.qhc" + +devhelp: + $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp + @echo + @echo "Build finished." + @echo "To view the help file:" + @echo "# mkdir -p $$HOME/.local/share/devhelp/OwncloudDocumentation" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/OwncloudDocumentation" + @echo "# devhelp" + +epub: + $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub + @echo + @echo "Build finished. The epub file is in $(BUILDDIR)/epub." + +latex: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." + @echo "Run \`make' in that directory to run these through (pdf)latex" \ + "(use \`make latexpdf' here to do that automatically)." + +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +pdf: + $(SPHINXBUILD) -b pdf $(ALLSPHINXOPTS) $(BUILDDIR)/pdf + @echo + @echo "build finished. the text files are in $(BUILDDIR)/pdf." + +text: + $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text + @echo + @echo "build finished. the text files are in $(BUILDDIR)/text." + +man: + $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man + @echo + @echo "Build finished. The manual pages are in $(BUILDDIR)/man." + +texinfo: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo + @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." + @echo "Run \`make' in that directory to run these through makeinfo" \ + "(use \`make info' here to do that automatically)." + +info: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo "Running Texinfo files through makeinfo..." + make -C $(BUILDDIR)/texinfo info + @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." + +gettext: + $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale + @echo + @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." + +changes: + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes + @echo + @echo "The overview file is in $(BUILDDIR)/changes." + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck + @echo + @echo "Link check complete; look for any errors in the above output " \ + "or in $(BUILDDIR)/linkcheck/output.txt." + +doctest: + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest + @echo "Testing of doctests in the sources finished, look at the " \ + "results in $(BUILDDIR)/doctest/output.txt." diff --git a/user_manual_de/conf.py b/user_manual_de/conf.py new file mode 100644 index 000000000..4e7381546 --- /dev/null +++ b/user_manual_de/conf.py @@ -0,0 +1,296 @@ +# -*- coding: utf-8 -*- +# +# ownCloud Documentation documentation build configuration file, created by +# sphinx-quickstart on Mon Oct 22 23:16:40 2012-2014. +# +# This file is execfile()d with the current directory set to its containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. + +import sys, os + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +#sys.path.insert(0, os.path.abspath('.')) + +# -- General configuration ----------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +#needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be extensions +# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +extensions = ['sphinx.ext.todo', 'rst2pdf.pdfbuilder'] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['../_shared_assets/templates'] + +# The suffix of source filenames. +source_suffix = '.rst' + +# The encoding of source files. +#source_encoding = 'utf-8-sig' + +# The master toctree document. +master_doc = 'contents' + +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# +# The short X.Y version. +version = '11' +# The full version, including alpha/beta/rc tags. +release = '11' + +# General information about the project. +project = u'Nextcloud %s Benutzerhandbuch' % (version) +copyright = u'2012-2016, Die Nextcloud Entwickler' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +#language = None + +# There are two options for replacing |today|: either, you set today to some +# non-false value, then it is used: +#today = '' +# Else, today_fmt is used as the format for a strftime call. +#today_fmt = '%B %d, %Y' + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +exclude_patterns = ['_build'] + +# The reST default role (used for this markup: `text`) to use for all documents. +#default_role = None + +# If true, '()' will be appended to :func: etc. cross-reference text. +#add_function_parentheses = True + +# If true, the current module name will be prepended to all description +# unit titles (such as .. function::). +#add_module_names = True + +# If true, sectionauthor and moduleauthor directives will be shown in the +# output. They are ignored by default. +#show_authors = False + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + +# A list of ignored prefixes for module index sorting. +#modindex_common_prefix = [] + + +# -- Options for HTML output --------------------------------------------------- + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +#html_theme_options = {} + +# Add any paths that contain custom themes here, relative to this directory. +html_theme_path = ['../_shared_assets/themes'] + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +html_theme = 'nextcloud_com' +html_theme_options = { +# "rightsidebar": "true", +} +# The name for this set of Sphinx documents. If None, it defaults to +# " v documentation". +#html_title = None + +# A shorter title for the navigation bar. Default is the same as html_title. +html_short_title = "Benutzerhandbuch" + +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +#html_logo = None + +# The name of an image file (within the static path) to use as favicon of the +# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 +# pixels large. +#html_favicon = None + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['../_shared_assets/static'] + +# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, +# using the given strftime format. +#html_last_updated_fmt = '%b %d, %Y' + +# If true, SmartyPants will be used to convert quotes and dashes to +# typographically correct entities. +#html_use_smartypants = True + +# Custom sidebar templates, maps document names to template names. +#html_sidebars = {} + +# Additional templates that should be rendered to pages, maps page names to +# template names. +#html_additional_pages = {} + +# If false, no module index is generated. +#html_domain_indices = True + +# If false, no index is generated. +#html_use_index = True + +# If true, the index is split into individual pages for each letter. +#html_split_index = False + +# If true, links to the reST sources are added to the pages. +#html_show_sourcelink = True + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +html_show_sphinx = False + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +#html_show_copyright = True + +# If true, an OpenSearch description file will be output, and all pages will +# contain a tag referring to it. The value of this option must be the +# base URL from which the finished HTML is served. +#html_use_opensearch = '' + +# This is the file name suffix for HTML files (e.g. ".xhtml"). +#html_file_suffix = None + +# Output file base name for HTML help builder. +htmlhelp_basename = 'NextcloudBenutzerHandbuch' + + +# -- Options for LaTeX output -------------------------------------------------- + +latex_elements = { +# The paper size ('letterpaper' or 'a4paper'). +#'papersize': 'letterpaper', + +# The font size ('10pt', '11pt' or '12pt'). +#'pointsize': '10pt', + +# Additional stuff for the LaTeX preamble. +#'preamble': '', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, author, documentclass [howto/manual]). +latex_documents = [ + ('contents', 'Nextcloud_User_Manual.tex', u'Nextcloud Benutzerhandbuch', + u'Die Nextcloud Entwickler', 'manual'), +] + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +latex_logo = '../_shared_assets/static/logo-blue.pdf' + +# For "manual" documents, if this is true, then toplevel headings are parts, +# not chapters. +#latex_use_parts = False + +# If true, show page references after internal links. +#latex_show_pagerefs = False + +# If true, show URL addresses after external links. +#latex_show_urls = False + +# Documents to append as an appendix to all manuals. +#latex_appendices = [] + +# If false, no module index is generated. +#latex_domain_indices = True + +# -- Options for pdf page output ----------------------------------------------- + +pdf_documents = [('contents', u'NextcloudBenutzerhandbuch', u'Nextcloud Benutzerhandbuch', u'Die Nextcloud Entwickler'),] + +# -- Options for manual page output -------------------------------------------- + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + ('contents', 'nextcloudbenutzerhandbuch', u'Nextcloud Benutzerhandbuch', + [u'Die Nextcloud Entwickler'], 1) +] + +# If true, show URL addresses after external links. +#man_show_urls = False + + +# -- Options for Texinfo output ------------------------------------------------ + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + ('contents', 'NextcloudBenutzerhandbuch', u'Nextcloud Benutzerhandbuch', + u'Die Nextcloud Entwickler', 'Nextcloud', 'Das Nextcloud Benutzerhandbuch.', + 'Miscellaneous'), +] + +# Documents to append as an appendix to all manuals. +#texinfo_appendices = [] + +# If false, no module index is generated. +#texinfo_domain_indices = True + +# How to display URL addresses: 'footnote', 'no', or 'inline'. +#texinfo_show_urls = 'footnote' + + +# -- Options for Epub output --------------------------------------------------- + +# Bibliographic Dublin Core info. +epub_title = u'Nextcloud Benutzerhandbuch' +epub_author = u'Die Nextcloud Entwickler' +epub_publisher = u'Die Nextcloud Entwickler' +epub_copyright = u'2012-2016, Die Nextcloud Entwickler' + +# The language of the text. It defaults to the language option +# or en if the language is not set. +#epub_language = '' + +# The scheme of the identifier. Typical schemes are ISBN or URL. +#epub_scheme = '' + +# The unique identifier of the text. This can be a ISBN number +# or the project homepage. +#epub_identifier = '' + +# A unique identification for the text. +#epub_uid = '' + +# A tuple containing the cover image and cover page html template filenames. +#epub_cover = () + +# HTML files that should be inserted before the pages created by sphinx. +# The format is a list of tuples containing the path and title. +#epub_pre_files = [] + +# HTML files shat should be inserted after the pages created by sphinx. +# The format is a list of tuples containing the path and title. +#epub_post_files = [] + +# A list of files that should not be packed into the epub file. +#epub_exclude_files = [] + +# The depth of the table of contents in toc.ncx. +#epub_tocdepth = 3 + +# Allow duplicate toc entries. +#epub_tocdup = True + +# Include todos? +todo_include_todos = True + +# substitutions go here +rst_epilog = '.. |version| replace:: %s' % version diff --git a/user_manual_de/contents.rst b/user_manual_de/contents.rst new file mode 100644 index 000000000..e8f2e2306 --- /dev/null +++ b/user_manual_de/contents.rst @@ -0,0 +1,19 @@ +.. _contents: + +================= +Table of Contents +================= + +.. toctree:: + :maxdepth: 2 + + index + whats_new + webinterface + files/index + pim/index + userpreferences + user_2fa + session_management + external_storage/index + diff --git a/user_manual_de/external_storage/external_storage.rst b/user_manual_de/external_storage/external_storage.rst new file mode 100644 index 000000000..c52171abf --- /dev/null +++ b/user_manual_de/external_storage/external_storage.rst @@ -0,0 +1,13 @@ +============================ +Configuring External Storage +============================ + +The External Storage application allows you to mount external storage services, +such as Google Drive, Dropbox, Amazon S3, SMB/CIFS fileservers, and FTP servers +in Nextcloud. Your Nextcloud server administrator controls which of these are +available to you. Please see `Configuring External Storage (GUI) +`_ in the Nextcloud Administrator's +manual for configuration howtos and examples. + +.. TODO ON RELEASE: Update version number above on release diff --git a/user_manual_de/external_storage/index.rst b/user_manual_de/external_storage/index.rst new file mode 100644 index 000000000..cedd7c89d --- /dev/null +++ b/user_manual_de/external_storage/index.rst @@ -0,0 +1,9 @@ +================ +External Storage +================ + +.. toctree:: + :maxdepth: 1 + + external_storage + diff --git a/user_manual_de/files/access_webdav.rst b/user_manual_de/files/access_webdav.rst new file mode 100644 index 000000000..8d5ffb70c --- /dev/null +++ b/user_manual_de/files/access_webdav.rst @@ -0,0 +1,508 @@ +====================================== +Accessing Nextcloud Files Using WebDAV +====================================== + +Nextcloud fully supports the WebDAV protocol, and you can connect and synchronize +with your Nextcloud files over WebDAV. In this chapter you will learn how to +connect Linux, Mac OS X, Windows, and mobile devices to your Nextcloud server via +WebDAV. Before we get into configuring WebDAV, let's take a quick look at the +recommended way of connecting client devices to your Nextcloud servers. + +Nextcloud Desktop and Mobile Clients +------------------------------------ + +The recommended method for keeping your desktop PC synchronized with your +Nextcloud server is by using the `Nextcloud/ownCloud sync clients +`_. You can configure the client +to save files in any local directory you want, and you choose which directories +on the Nextcloud server to sync with. The client displays the current connection +status and logs all activity, so you always know which remote files have been +downloaded to your PC, and you can verify that files created and updated on your +local PC are properly synchronized with the server. + +The recommended method for syncing your Nextcloud server with Android and +Apple iOS devices is by using the `mobile apps +`_. + +To connect to your Nextcloud server with the mobile apps, use the +base URL and folder only:: + + example.com/nextcloud + +In addition to the mobile apps provided by Nextcloud or Nextcloud, you can use other apps to +connect to Nextcloud from your mobile device using WebDAV. `WebDAV Navigator`_ is +a good (proprietary) app for `Android devices`_ and `iPhones`_. The URL to use on these is:: + + example.com/nextcloud/remote.php/dav/files/USERNAME/ + +WebDAV Configuration +-------------------- + +If you prefer, you may also connect your desktop PC to your Nextcloud server by +using the WebDAV protocol rather than using a special client application. Web +Distributed Authoring and Versioning (WebDAV) is a Hypertext Transfer Protocol +(HTTP) extension that makes it easy to create, read, and edit files on Web +servers. With WebDAV you can access your Nextcloud shares on Linux, Mac OS X and +Windows in the same way as any remote network share, and stay synchronized. + +.. note:: In the following examples, You must adjust **example.com/** to the + URL of your Nextcloud server installation. + +Accessing Files Using Linux +--------------------------- + +You can access files in Linux operating systems using the following methods. + +Nautilus File Manager +^^^^^^^^^^^^^^^^^^^^^ + +Use the ``davs://`` protocol to connect the Nautilus file manager to your +Nextcloud share:: + + davs://example.com/nextcloud/remote.php/dav/files/USERNAME/ + +.. note:: If your server connection is not HTTPS-secured, use `dav://` instead + of `davs://`. + +.. image:: ../images/webdav_gnome3_nautilus.png + :alt: screenshot of configuring Nautilus file manager to use WebDAV + +Accessing Files with KDE and Dolphin File Manager +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +To access your Nextcloud files using the Dolphin file manager in KDE, use +the ``webdav://`` protocol:: + + webdav://example.com/nextcloud/remote.php/dav/files/USERNAME/ + +.. image:: ../images/webdav_dolphin.png + :alt: screenshot of configuring Dolphin file manager to use WebDAV + +You can create a permanent link to your Nextcloud server: + +#. Open Dolphin and click "Network" in the left hand "Places" column. +#. Click on the icon labeled **Add a Network Folder**. + The resulting dialog should appear with WebDAV already selected. +#. If WebDAV is not selected, select it. +#. Click **Next**. +#. Enter the following settings: + + * Name: The name you want to see in the **Places** bookmark, for example Nextcloud. + + * User: The Nextcloud username you used to log in, for example admin. + + * Server: The Nextcloud domain name, for example **example.com** (without + **http://** before or directories afterwards). + * Folder -- Enter the path ``nextcloud/remote.php/dav/files/USERNAME/``. +#. (Optional) Check the "Create icon checkbox" for a bookmark to appear in the + Places column. +#. (Optional) Provide any special settings or an SSL certificate in the "Port & + Encrypted" checkbox. + +Creating WebDAV Mounts on the Linux Command Line +------------------------------------------------ + +You can create WebDAV mounts from the Linux command line. This is useful if you +prefer to access Nextcloud the same way as any other remote filesystem mount. +The following example shows how to create a personal mount and have it mounted +automatically every time you log in to your Linux computer. + +1. Install the ``davfs2`` WebDAV filesystem driver, which allows you to mount + WebDAV shares just like any other remote filesystem. Use this command to + install it on Debian/Ubuntu:: + + apt-get install davfs2 + +2. Use this command to install it on CentOS, Fedora, and openSUSE:: + + yum install davfs2 + +3. Add yourself to the ``davfs2`` group:: + + usermod -aG davfs2 + +3. Then create an ``nextcloud`` directory in your home directory for the + mountpoint, and ``.davfs2/`` for your personal configuration file:: + + mkdir ~/nextcloud + mkdir ~/.davfs2 + +4. Copy ``/etc/davfs2/secrets`` to ``~/.davfs2``:: + + cp /etc/davfs2/secrets ~/.davfs2/secrets + +5. Set yourself as the owner and make the permissions read-write owner only:: + + chown : ~/.davfs2/secrets + chmod 600 ~/.davfs2/secrets + +6. Add your Nextcloud login credentials to the end of the ``secrets`` file, + using your Nextcloud server URL and your Nextcloud username and password:: + + example.com/nextcloud/remote.php/dav/files/USERNAME/ + +7. Add the mount information to ``/etc/fstab``:: + + example.com/nextcloud/remote.php/dav/files/USERNAME/ /home//nextcloud + davfs user,rw,auto 0 0 + +8. Then test that it mounts and authenticates by running the following + command. If you set it up correctly you won't need root permissions:: + + mount ~/nextcloud + +9. You should also be able to unmount it:: + + umount ~/nextcloud + +Now every time you login to your Linux system your Nextcloud share should +automatically mount via WebDAV in your ``~/nextcloud`` directory. If you prefer +to mount it manually, change ``auto`` to ``noauto`` in ``/etc/fstab``. + +Known Issues +------------ + +Problem +^^^^^^^ +Resource temporarily unavailable + +Solution +^^^^^^^^ +If you experience trouble when you create a file in the directory, +edit ``/etc/davfs2/davfs2.conf`` and add:: + + use_locks 0 + +Problem +^^^^^^^ +Certificate warnings + +Solution +^^^^^^^^ + +If you use a self-signed certificate, you will get a warning. To +change this, you need to configure ``davfs2`` to recognize your certificate. +Copy ``mycertificate.pem`` to ``/etc/davfs2/certs/``. Then edit +``/etc/davfs2/davfs2.conf`` and uncomment the line ``servercert``. Now add the +path of your certificate as in this example:: + + servercert /etc/davfs2/certs/mycertificate.pem + +Accessing Files Using Mac OS X +------------------------------ + +.. note:: The Mac OS X Finder suffers from a `series of implementation problems + `_ and should only be used if the + Nextcloud server runs on **Apache** and **mod_php**, or **Nginx 1.3.8+**. + +To access files through the Mac OS X Finder: + +1. Choose **Go > Connect to Server**. + + The "Connect to Server" window opens. + +2. Specify the address of the server in the **Server Address** field. + + .. image:: ../images/osx_webdav1.png + :alt: Screenshot of entering your Nextcloud server address on Mac OS X + + For example, the URL used to connect to the Nextcloud server + from the Mac OS X Finder is:: + + https://example.com/nextcloud/remote.php/dav/files/USERNAME/ + + .. image:: ../images/osx_webdav2.png + +3. Click **Connect**. + + The device connects to the server. + +For added details about how to connect to an external server using Mac OS X, +check the `vendor documentation +`_ + +Accessing Files Using Microsoft Windows +--------------------------------------- + +It is best to use a suitable WebDAV client from the +`WebDAV Project page `_ . + +If you must use the native Windows implementation, you can map Nextcloud to a new +drive. Mapping to a drive enables you to browse files stored on an Nextcloud +server the way you would files stored in a mapped network drive. + +Using this feature requires network connectivity. If you want to store your +files offline, use the Desktop Client to sync all files on your +Nextcloud to one or more directories of your local hard drive. + +.. note:: Prior to mapping your drive, you must permit the use of Basic + Authentication in the Windows Registry. The procedure is documented in + KB841215_ and differs between Windows XP/Server 2003 and Windows Vista/7. + Please follow the Knowledge Base article before proceeding, and follow the + Vista instructions if you run Windows 7. + +.. _KB841215: http://support.microsoft.com/kb/841215 + +Mapping Drives With the Command Line +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The following example shows how to map a drive using the command line. To map +the drive: + +1. Open a command prompt in Windows. +2. Enter the following line in the command prompt to map to the computer Z + drive:: + + net use Z: https:///remote.php/dav/files/USERNAME/ /user:youruser + yourpassword + + where is the URL to your Nextcloud server. + +For example: ``net use Z: https://example.com/nextcloud/remote.php/dav/files/USERNAME/ +/user:youruser yourpassword`` + + The computer maps the files of your Nextcloud account to the drive letter Z. + +.. note:: Though not recommended, you can also mount the Nextcloud server + using HTTP, leaving the connection unencrypted. If you plan to use HTTP + connections on devices while in a public place, we strongly recommend using a + VPN tunnel to provide the necessary security. + +An alternative command syntax is:: + + net use Z: \\example.com@ssl\nextcloud\remote.php\dav /user:youruser + yourpassword + +Mapping Drives With Windows Explorer +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +To map a drive using the Microsoft Windows Explorer: + +1. Migrate to your computer in Windows Explorer. +2. Right-click on **Computer** entry and select **Map network drive...** from + the drop-down menu. +3. Choose a local network drive to which you want to map Nextcloud. +4. Specify the address to your Nextcloud instance, followed by + **/remote.php/dav/files/USERNAME/**. + + For example:: + + https://example.com/nextcloud/remote.php/dav/files/USERNAME/ + +.. note:: For SSL protected servers, check **Reconnect at logon** to ensure + that the mapping is persistent upon subsequent reboots. If you want to + connect to the Nextcloud server as a different user, check **Connect using + different credentials**. + +.. figure:: ../images/explorer_webdav.png + :scale: 80% + :alt: screenshot of mapping WebDAV on Windows Explorer + +5. Click the ``Finish`` button. + + Windows Explorer maps the network drive, making your Nextcloud instance + available. + +Accessing Files Using Cyberduck +------------------------------- + +`Cyberduck `_ is an open source FTP and SFTP, +WebDAV, OpenStack Swift, and Amazon S3 browser designed for file transfers on +Mac OS X and Windows. + +.. note:: This example uses Cyberduck version 4.2.1. + +To use Cyberduck: + +1. Specify a server without any leading protocol information. For example: + + ``example.com`` + +2. Specify the appropriate port. The port you choose depends on whether or not +your Nextcloud server supports SSL. Cyberduck requires that you select a +different connection type if you plan to use SSL. For example: + + 80 (for WebDAV) + + 443 (for WebDAV (HTTPS/SSL)) + +3. Use the 'More Options' drop-down menu to add the rest of your WebDAV URL into +the 'Path' field. For example: + + ``remote.php/dav/files/USERNAME/`` + +Now Cyberduck enables file access to the Nextcloud server. + +Accessing public shares over WebDAV +----------------------------------- + +Nextcloud provides the possibility to access public shares over WebDAV. + +To access the public share, open:: + + https://example.com/nextcloud/public.php/dav + +in a WebDAV client, use the share token as username and the (optional) share password +as password. + +Known Problems +-------------- + +Problem +^^^^^^^ +Windows does not connect using HTTPS. + +Solution 1 +^^^^^^^^^^ + +The Windows WebDAV Client might not support Server Name Indication (SNI) on +encrypted connections. If you encounter an error mounting an SSL-encrypted +Nextcloud instance, contact your provider about assigning a dedicated IP address +for your SSL-based server. + +Solution 2 +^^^^^^^^^^ + +The Windows WebDAV Client might not support TSLv1.1 / TSLv1.2 connections. If +you have restricted your server config to only provide TLSv1.1 and above the +connection to your server might fail. Please refer to the WinHTTP_ documentation +for further information. + +.. _WinHTTP: https://msdn.microsoft.com/en-us/library/windows/desktop/aa382925.aspx#WinHTTP_5.1_Features + +Problem +^^^^^^^ + +You receive the following error message: **Error 0x800700DF: The file size +exceeds the limit allowed and cannot be saved.** + +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 +** 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** +service. + +Problem +^^^^^^^ + +Accessing your files from Microsoft Office via WebDAV fails. + +Solution +^^^^^^^^ + +Known problems and their solutions are documented in the KB2123563_ article. + +Problem +^^^^^^^ +Cannot map Nextcloud as a WebDAV drive in Windows using self-signed certificate. + +Solution +^^^^^^^^ + + #. Go to the your Nextcloud instance via your favorite Web browser. + #. Click through until you get to the certificate error in the browser status + line. + #. View the cert, then from the Details tab, select Copy to File. + #. Save to the desktop with an arbitrary name, for example ``myNextcloud.cer``. + #. Start, Run, MMC. + #. File, Add/Remove Snap-In. + #. Select Certificates, Click Add, My User Account, then Finish, then OK. + #. Dig down to Trust Root Certification Authorities, Certificates. + #. Right-Click Certificate, Select All Tasks, Import. + #. Select the Save Cert from the Desktop. + #. Select Place all Certificates in the following Store, Click Browse, + #. Check the Box that says Show Physical Stores, Expand out Trusted Root + Certification Authorities, and select Local Computer there, click OK, + Complete the Import. + #. Check the list to make sure it shows up. You will probably need to Refresh + before you see it. Exit MMC. + #. Open Browser, select Tools, Delete Browsing History. + #. Select all but In Private Filtering Data, complete. + #. Go to Internet Options, Content Tab, Clear SSL State. + #. Close browser, then re-open and test. + +Problem +^^^^^^^ + +You cannot download more than 50 MB or upload large Files when the upload takes +longer than 30 minutes using Web Client in Windows 7. + +Solution +^^^^^^^^ + +Workarounds are documented in the KB2668751_ article. + + +Accessing Files Using cURL +-------------------------- + +Since WebDAV is an extension of HTTP cURL can be used to script file operations. + +To create a folder with the current date as name: + +.. code-block:: bash + + $ curl -u user:pass -X MKCOL "https://example.com/nextcloud/remote.php/dav/files/USERNAME/$(date '+%d-%b-%Y')" + +To upload a file ``error.log`` into that directory: + +.. code-block:: bash + + $ curl -u user:pass -T error.log "https://example.com/nextcloud/remote.php/dav/files/USERNAME/$(date '+%d-%b-%Y')/error.log" + +To move a file: + +.. code-block:: bash + + $ curl -u user:pass -X MOVE --header 'Destination: https://example.com/nextcloud/remote.php/dav/files/USERNAME/target.jpg' https://example.com/nextcloud/remote.php/dav/files/USERNAME/source.jpg + +To get the properties of files in the root folder: + +.. code-block:: bash + + $ curl -X PROPFIND -H "Depth: 1" -u user:pass https://example.com/nextcloud/remote.php/dav/files/USERNAME/ | xml_pp + + + + /nextcloud/remote.php/dav/files/USERNAME/ + + + Tue, 13 Oct 2015 17:07:45 GMT + + + + 163 + 11802275840 + "561d3a6139d05" + + HTTP/1.1 200 OK + + + + /nextcloud/remote.php/dav/files/USERNAME/welcome.txt + + + Tue, 13 Oct 2015 17:07:35 GMT + 163 + + "47465fae667b2d0fee154f5e17d1f0f1" + text/plain + + HTTP/1.1 200 OK + + + + + +.. _KB2668751: https://support.microsoft.com/kb/2668751 +.. _KB2123563: https://support.microsoft.com/kb/2123563 +.. _WebDAV Navigator: http://seanashton.net/webdav/ +.. _Android devices: https://play.google.com/store/apps/details?id=com.schimera.webdavnavlite +.. _iPhones: https://itunes.apple.com/app/webdav-navigator/id382551345 +.. _BlackBerry devices: http://appworld.blackberry.com/webstore/content/46816 diff --git a/user_manual_de/files/access_webgui.rst b/user_manual_de/files/access_webgui.rst new file mode 100644 index 000000000..d53319814 --- /dev/null +++ b/user_manual_de/files/access_webgui.rst @@ -0,0 +1,217 @@ +====================================================== +Accessing your Files Using the Nextcloud Web Interface +====================================================== + +You can access your Nextcloud files with the Nextcloud Web interface and create, +preview, edit, delete, share, and re-share files. Your Nextcloud administrator +has the option to disable these features, so if any of them are missing on your +system ask your server administrator. + +.. figure:: ../images/files_page.png + :alt: The Files view screen. + +Tagging Files +------------- + +You can assign tags to files. To create tags, open a file to the Details view. +Then type your tags. To enter more than one tag press the return key after +creating each tag. All tags are system tags, and are shared by all users on your +Nextcloud server. + +.. figure:: ../images/files_page-7.png + :alt: Creating file tags. + +Then use the Tags filter on the left sidebar to filter files by tags. + +.. figure:: ../images/files_page-8.png + :alt: Viewing file tags. + +Comments +-------- + +Use the Details view to add and read comments on any file or folder. Comments +are visible to everyone who has access to the file. + +.. figure:: ../images/file_menu_comments_2.png + :alt: Creating and viewing comments. + +Video Player +------------ + +You can play videos in Nextcloud with the Video Player app by simply clicking on +the file. Video streaming by the native Nextcloud video player depends on your Web browser +and the video format. If your Nextcloud administrator has enabled video +streaming, and it doesn't work in your Web browser, it may be a browser issue. See https://developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats#Browser_compatibility for supported multimedia formats in Web browsers. + +.. figure:: ../images/video_player_2.png + :alt: Watching a movie. + +File Controls +------------- + +Nextcloud can display thumbnail previews for image files, MP3 covers, +and text files, if this enabled by your server administrator. Hover your cursor +over a file or folder to expose the controls for the following operations: + +Favorites + Click the star to the left of the file icon to mark it as a favorite, and + quickly find all of your favorites with the Favorites filter on the left + sidebar. + +.. figure:: ../images/files_page-1.png + :alt: Marking Favorite files. + +Share + Share the file or folder with a group or other users, and create public + shares with hyperlinks. You can also see who you have shared with already, + and revoke shares by clicking the trash can icon. + +.. note:: New in 9.0, you can see all re-shares of your original file shares. + + If username auto-completion + is enabled, when you start typing the user or group name Nextcloud will + automatically complete it for you. If your administrator has enabled email + notifications, you can send an email notification of the new share from the + sharing screen. + +.. figure:: ../images/files_page-2.png + :alt: Sharing files. + +You have five share permissions: + +* Can share; allows the users you share with to re-share. +* Can edit; allows the users you share with to edit your shared files, and to collaborate using the Documents app. +* Create; allows the users you share with to create new files and add them to the share. +* Change; allows uploading a new version of a shared file and replacing it. +* Delete; allows the users you share with to delete shared files. + +Overflow Menu + The Overflow menu (three dots) displays file details, and allows you to + rename, download, or delete files. + +.. figure:: ../images/files_page-3.png + :alt: Overflow menu. + + The Details view shows Activities, Sharing, and Versions information. + +.. figure:: ../images/files_page-4.png + :alt: Details screen. + +The **Settings** gear icon at the lower left allows you to show or hide hidden +files in your Nextcloud Web interface. These are also called dotfiles, because +they are prefixed with a dot, e.g. ``.mailfile``. The dot tells your operating +system to hide these files in your file browsers, unless you choose to display +them. Usually these are configuration files, so having the option to hide them +reduces clutter. + +.. figure:: ../images/hidden_files.png + :alt: Hiding or displaying hidden files. + +Previewing Files +---------------- + +You can display uncompressed text files, OpenDocument files, videos, and image +files in the Nextcloud embedded viewers by clicking on the file name. There may +be other file types you can preview if your Nextcloud administrator has enabled +them. If Nextcloud cannot display a file, it starts a download process and +downloads the file to your computer. + +Navigating Inside Your Nextcloud +-------------------------------- + +Navigating through folders in Nextcloud is as simple as clicking on a folder to +open it and using the back button on your browser to move to a previous level. +Nextcloud also provides a navigation bar at the top of the Files field for quick +navigation. + +Sharing Status Icons +-------------------- + +Any folder that has been shared is marked with the ``Shared`` overlay icon. +Public link shares are marked with a chain link. Un-shared folders are blank. + +.. figure:: ../images/files_page-5.png + :alt: Share status icons. + +Creating or Uploading Files and Directories +------------------------------------------- + +Upload or create new files or folders directly in an Nextcloud folder by clicking +on the *New* button in the Files app. + +.. figure:: ../images/files_page-6.png + :alt: The New file/folder/upload menu. + +The *New* button provides the following options: + +Up arrow + Upload files from your computer into Nextcloud. You can also upload files by + dragging and dropping them from your file manager. + +Text file + Creates a new text file and adds the file to your current folder. + +Folder + Creates a new folder in the current folder. + +Selecting Files or Folders +-------------------------- + +You can select one or more files or folders by clicking on their checkboxes. To +select all files in the current directory, click on the checkbox located at the +top of the files listing. + +When you select multiple files, you can delete all of them, or download them as +a ZIP file by using the ``Delete`` or ``Download`` buttons that appear at the +top. + +.. note:: If the ``Download`` button is not visible, the administrator has + disabled this feature. + +Filtering the Files View +------------------------ + +The right sidebar on the Files page contains several filters for quickly sorting +and managing your files. + +All files + The default view; displays all files that you have access to. + +Favorites + Files or folders marked with the yellow star. + +Shared with you + Displays all files shared with you by another user or group. + +Shared with others + Displays all files that you have shared with other users or groups. + +Shared by link + Displays all files that are shared by you via public link. + +External Storage + Files that you have access to on external storage devices and services such + as Dropbox, Google, and Amazon S3. + +Moving Files +------------ + +You can move files and folders by dragging and dropping them into any directory. + + +Change in Share Expiration Date +------------------------------- + +In older versions of Nextcloud, you could set an expiration date on both local +and public shares. Now you can set an expiration date only on public shares, +and local shares do not expire when public shares expire. The only way to +"expire" a local share is to click the trash can icon to un-share your files. + +Creating or Connecting to a Federation Share Link +------------------------------------------------- + +Federated Cloud Sharing allows you to mount file shares from remote Nextcloud +servers, and manage them just like a local share. In Nextcloud 9 the process for +creating a new sharing link is easier and more streamlined. See +:doc:`federated_cloud_sharing` to learn to how to create and connect to new +Federated Cloud shares. diff --git a/user_manual_de/files/deleted_file_management.rst b/user_manual_de/files/deleted_file_management.rst new file mode 100644 index 000000000..e2fbe667c --- /dev/null +++ b/user_manual_de/files/deleted_file_management.rst @@ -0,0 +1,57 @@ +====================== +Managing Deleted Files +====================== + +When you delete a file in Nextcloud, it is not immediately deleted permanently. +Instead, it is moved into the trash bin. It is not permanently deleted until +you manually delete it, or when the Deleted Files app deletes it to make room +for new files. + +Find your deleted files by clicking on the **Deleted files** +button on the Files page of the Nextcloud Web interface. You'll have options to +either restore or permanently delete files. + +Quotas +------ + +Deleted files are not counted against your storage quota. Only files that +originate with users count against their quotas, not files +shared with them that originate from other users. (See :doc:`quota` to learn +more about quotas.) + +What Happens When Shared Files Are Deleted +------------------------------------------ + +Deleting files gets a little complicated when they are shared files, as this +scenario illustrates: + +1. User1 shares a folder "test" with User2 and User3 +2. User2 (the recipient) deletes a file/folder "sub" inside of "test" +3. The folder "sub" will be moved to the trashbin of both User1 (owner) and + User2 (recipient) +4. But User3 will not have a copy of "sub" in her trash bin + +When User1 deletes "sub" then it is moved to User1's trash bin. It is +deleted from User2 and User3, but not placed in their trash bins. + +When you share files, other users may copy, rename, move, and share them with +other people, just as they can for any computer files; Nextcloud does not have +magic powers to prevent this. + +How the Deleted Files app Manages Storage Space +----------------------------------------------- + +To ensure that users do not run over their storage quotas, the Deleted Files +app allocates a maximum of 50% of their currently available free space to +deleted files. If your deleted files exceed this limit, Nextcloud deletes the +oldest files (files with the oldest timestamps from when they were deleted) +until it meets the memory usage limit again. + +Nextcloud checks the age of deleted files every time new files are added to the +deleted files. By default, deleted files stay in the trash bin for 180 days. The +Nextcloud server administrator can adjust this value in the ``config.php`` file +by setting the ``trashbin_retention_obligation`` value. Files older than the +``trashbin_retention_obligation`` value will be deleted permanently. +Additionally, Nextcloud calculates the maximum available space every time a new +file is added. If the deleted files exceed the new maximum allowed space +Nextcloud will expire old deleted files until the limit is met once again. diff --git a/user_manual_de/files/desktop_mobile_sync.rst b/user_manual_de/files/desktop_mobile_sync.rst new file mode 100644 index 000000000..ceec8efd2 --- /dev/null +++ b/user_manual_de/files/desktop_mobile_sync.rst @@ -0,0 +1,32 @@ +================================== +Desktop and Mobile Synchronization +================================== + +For synchronizing files with your desktop computer, we recommend using the +`Nextcloud Sync Client`_ for Windows, Mac OS X and Linux until the Nextcloud +Sync Client will be released.. + + +The Nextcloud Desktop Sync Client enables you to connect to your private +Nextcloud Server. +You can create folders in your home directory, and keep the contents of those +folders synced with your Nextcloud server. Simply copy a file into the directory +and the Nextcloud desktop client does the rest. Make a change to the files on one +computer, it will flow across the others using these desktop sync clients. +You will always +have your latest files with you wherever you are. + +Its usage is documented separately in the `Nextcloud Desktop Client Manual`_. + +.. _Nextcloud Sync Client: https://nextcloud.com/install/ +.. _Nextcloud Desktop Client Manual: https://docs.nextcloud.org/ + +Mobile Clients +-------------- + +Visit your Personal page in your Nextcloud Web interface to find download links +for Android and iOS mobile sync clients. Or, visit the `Nextcloud download page +`_. + +Visit the `Nextcloud documentation page `_ to read +the user manuals. diff --git a/user_manual_de/files/encrypting_files.rst b/user_manual_de/files/encrypting_files.rst new file mode 100644 index 000000000..c246804c4 --- /dev/null +++ b/user_manual_de/files/encrypting_files.rst @@ -0,0 +1,143 @@ +=============================== +Encrypting Your Nextcloud Files +=============================== + +Nextcloud includes an Encryption app, and when it is enabled by your Nextcloud +administrator all of your Nextcloud data files are automatically encrypted. +Encryption is server-wide, so when it is enabled you cannot choose to keep your +files unencrypted. You don't have to do anything special, as it uses your +Nextcloud login as the password for your unique private encryption key. Just log +in and out and manage and share your files as you normally do, and you can +still change your password whenever you want. + +Its main purpose is to encrypt files on remote storage services that are +connected to your Nextcloud server, such as Dropbox and Google Drive. This is an +easy and seamless way to protect your files on remote storage. You can share +your remote files through Nextcloud in the usual way, however you cannot share +your encrypted files directly from Dropbox, Google Drive, or whatever remote +service you are using, because the encryption keys are stored on your Nextcloud +server, and are never exposed to outside service providers. + +If your Nextcloud server is not connected to any remote storage services, then +it is better to use some other form of encryption such as file-level or whole +disk encryption. Because the keys are kept on your Nextcloud server, it is +possible for your Nextcloud admin to snoop in your files, and if the server is +compromised the intruder may get access to your files. (Read +`How Nextcloud uses encryption to protect your data +`_ +to learn more.) + +Encryption FAQ +-------------- + +How Can Encryption Be Disabled? +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +The only way to disable encryption is to run the :ref:`"decrypt all" ` +script, which decrypts all files and disables encryption. + +Is It Possible To Disable Encryption With The Recovery Key? +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Yes, *if* every user uses the :ref:`file recovery key +`, :ref:`"decrypt all" ` will use it +to decrypt all files. + +Can Encryption Be Disabled Without The User’s Password? +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +If you don't have the users password or :ref:`file recovery key +` then there is no way to decrypt all files. What's +more, running it on login would be dangerous, because you would most likely run +into timeouts. + +Is It Planned To Move This To The Next User Login Or A Background Job? +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +If we did that, then we would need to store your login password in the database. +This could be seen as a security issue, so nothing like that is planned. + +Is Group Sharing Possible With The Recovery Key? +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +If you mean adding users to groups and make it magically work? No. This only +works with the master key. + +Using Encryption +---------------- + +Nextcloud encryption is pretty much set it and forget it, but you have a few +options you can use. + +When your Nextcloud admin enables encryption for the first time, you must log +out and then log back in to create your encryption keys and encrypt your files. +When encryption has been enabled on your Nextcloud server you will see a yellow +banner on your Files page warning you to log out and then log back in. + +.. figure:: ../images/encryption1.png + +When you log back in it takes a few minutes to work, depending on how many +files you have, and then you are returned to your default Nextcloud page. + +.. figure:: ../images/encryption2.png + + +.. note:: You must never lose your Nextcloud password, because you will lose + access to your files. Though there is an optional recovery option that your + Nextcloud administrator may enable; see the Recovery Key Password section + (below) to learn about this. + +Sharing Encrypted Files +----------------------- + +Only users who have private encryption keys have access to shared encrypted +files and folders. Users who have not yet created their private encryption keys +will not have access to encrypted shared files; they will see folders and +filenames, but will not be able to open or download the files. They will see a +yellow warning banner that says "Encryption App is enabled but your keys are not +initialized, please log-out and log-in again." + +Share owners may need to re-share files after encryption is enabled; users +trying to access the share will see a message advising them to ask the share +owner to re-share the file with them. For individual shares, un-share and +re-share the file. For group shares, share with any individuals who can't access +the share. This updates the encryption, and then the share owner can remove the +individual shares. + +Recovery Key Password +~~~~~~~~~~~~~~~~~~~~~ + +If your Nextcloud administrator has enabled the recovery key feature, you can +choose to use this feature for your account. If you enable "Password recovery" +the administrator can read your data with a special password. This feature +enables the administrator to recover your files in the event you lose your +Nextcloud password. If the recovery key is not enabled, then there is no way to +restore your files if you lose your login password. + +.. figure:: ../images/encryption3.png + +Files Not Encrypted +------------------- + +Only the data in your files is encrypted, and not the filenames or folder +structures. These files are never encrypted: + +- Old files in the trash bin. +- Image thumbnails from the Gallery app. +- Previews from the Files app. +- The search index from the full text search app. +- Third-party app data + +There may be other files that are not encrypted; only files that are exposed to +third-party storage providers are guaranteed to be encrypted. + +Change Private Key Password +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This option is only available if your log-in password, but not your encryption +password, was changed by your administrator. This can occur if your Nextcloud +provider uses a external user back-end (for example, LDAP) and changed your +login password using that back-end configuration. In this case, you can set +your encryption password to your new login password by providing your old and +new login password. The Encryption app works only if your login password and +your encryption password are identical. diff --git a/user_manual_de/files/federated_cloud_sharing.rst b/user_manual_de/files/federated_cloud_sharing.rst new file mode 100644 index 000000000..10d4c0d99 --- /dev/null +++ b/user_manual_de/files/federated_cloud_sharing.rst @@ -0,0 +1,57 @@ +======================= +Using Federation Shares +======================= + +Federation Sharing allows you to mount file shares from remote Nextcloud servers, in effect +creating your own cloud of Nextclouds. You can create direct share links with +users on other Nextcloud servers. + +Creating a New Federation Share +------------------------------- + +Federation sharing is enabled on new or upgraded Nextcloud installations +by default. Follow these steps to create a new share with other Nextcloud or ownCloud 9+ servers: + +1. Go to your ``Files`` page and click the Share icon on the file or directory +you want to share. In the sidebar enter the username and URL of the remote user +in this form: ``@``. In this example, that is +``layla@remote-server/nextcloud``. The form automatically echoes the address +that you type and labels it as "remote". Click on the label. + +.. figure:: ../images/direct-share-1.png + +2. When your local Nextcloud server makes a successful connection with the remote +Nextcloud server you'll see a confirmation. Your only share option is **Can +edit**. + +Click the Share button anytime to see who you have shared your file with. Remove +your linked share anytime by clicking the trash can icon. This only unlinks the +share, and does not delete any files. + +Creating a New Federated Cloud Share via Email +---------------------------------------------- + +Use this method when you are sharing with users on ownCloud 8.x and older. + +What if you do not know the username or URL? Then you can have Nextcloud create +the link for you and email it to your recipient. + +.. figure:: ../images/create_public_share-6.png + +When your recipient receives your email they will have to take a number of +steps to complete the share link. First they must open the link you sent them in +a Web browser, and then click the **Add to your Nextcloud** button. + +.. figure:: ../images/create_public_share-8.png + +The **Add to your Nextcloud** button changes to a form field, and your recipient +needs to enter the URL of their Nextcloud or ownCloud server in this field and press the +return key, or click the arrow. + +.. figure:: ../images/create_public_share-9.png + +Next, they will see a dialog asking to confirm. All they have to do is click +the **Add remote share** button and they're finished. + +Remove your linked share anytime by clicking the trash can icon. This only +unlinks the share, and does not delete any files. diff --git a/user_manual_de/files/file_drop.rst b/user_manual_de/files/file_drop.rst new file mode 100644 index 000000000..60e1a423c --- /dev/null +++ b/user_manual_de/files/file_drop.rst @@ -0,0 +1,42 @@ +======================== +Making Anonymous Uploads +======================== + +You may create your own special upload directories so that other people can upload +files to you without having to log in to the server, and without being an Nextcloud +user. +They will not be allowed to see the contents of this directory, or to make any +changes. This is an excellent alternative to sending large attachments via email, +using an FTP server, or using commercial file-sharing services. + +Setting Up Your Own File Drop +----------------------------- + +Go to Files and create or choose the folder, the anonymous upload should be +made to. + +.. image:: ../images/anonym_click_sharing.png + +Check Share Link, Allow editing, Hide file listing. + +.. image:: ../images/anonym_hide_file_listing.png + +Now you can send the link to the uploadfolder manualy or by using the +Nextcloud send function, if your administrator has enabled it. + + +Uploading Files +--------------- + +Using the anonymous upload function is simple. You receive a link to the upload +folder, click the link, and then you'll see an Nextcloud page with a **Click to +upload** button. + +.. image:: ../images/anonym_upload.png + +This opens a file picker, and you select the file or directory you want to +upload. You're also able to just drop files into the window. + +When your upload is completed, the filenames are listed: + +.. image:: ../images/anonym_uploaded_files.png diff --git a/user_manual_de/files/gallery_app.rst b/user_manual_de/files/gallery_app.rst new file mode 100644 index 000000000..62df696f6 --- /dev/null +++ b/user_manual_de/files/gallery_app.rst @@ -0,0 +1,244 @@ +=========== +Gallery App +=========== + +The Pictures app has been rewritten and improved, and is now called the Gallery +app. It supports more image formats, sorting, zoom, and scrolling. It also +supports advanced customizations via a simple text file. + +On your main Nextcloud Files page, click the little icon at the top right, +underneath your username, to open your Gallery. The Gallery app automatically +finds all images in your Nextcloud folders, and overlays the thumbnails with the +folder names. Click on the folder thumbnails to open the folders. At the top +left you have two sorting options, alphabetical and by date. + +.. figure:: ../images/gallery-1.png + :alt: Gallery folder thumbnails. + +After entering any folder, click on any image to open it in slideshow mode. +This has the following features: a download button at the top center, forward +and back buttons at the right and left sides, an automatic slideshow button at +the bottom right, and a close button at the top right. + +.. figure:: ../images/gallery-2.png + :alt: Gallery in slideshow mode. + +Custom Configuration +-------------------- + +You may customize a Gallery album with a simple text file named +**gallery.cnf**, which contains parameters structured using the +`Yaml `_ markup language. You may have +multiple **gallery.cnf** files; you need one in your own root Nextcloud folder +(your Home folder) that defines global features, and then you may have +individual per-album **gallery.cnf** files if you want to define different +behaviors in different albums. + +Features +^^^^^^^^ + +The following general features are currently implemented: + +* Native SVG support. +* Access to external shares. + +The following album features are currently implemented: + +* Adding a link to a file containing a description. +* Typing a simple copyright statement directly in the configuration file. +* Adding a link to a file containing a copyright statement. +* Defining a sort type and order. +* Defining the colour of the background. +* Defining if sub-albums will inherit the configuration. + +The following slideshow features are currently implemented: + +* Showing a button which lets you pick which background, either black or + white, to use for the picture you are currently viewing (for images with + transparent backgrounds). + +Setup +^^^^^ + +The configuration file has to be named **gallery.cnf**. You may have multiple +per-album **gallery.cnf** files. To enable global features, place one in your +top-level folder, which is symbolised in the Web GUI by the home icon. (This +puts it in ``data//files/``.) See :ref:`an example below +` in the **Global features** section. + +.. note:: You need to refresh your browser after changing your configuration to + see your changes. + +Format +^^^^^^ + +UTF-8, **without BOM**. A file created from within the Nextcloud Web GUI works. + +Structure +^^^^^^^^^ + +You should include a comment in the file, so that people stumbling upon +the file know what it's for. Comments start with #. + +Spacing is created using 2 spaces. **Do not use tabs.** + +Take a look at the `YAML Format documentation +`_ if you are +getting error messages. + +Here is an example `gallery.cnf`:: + + # Gallery configuration file + # Created on 31 Jan 2016 by Nextcloud User + features: + external_shares: yes + native_svg: yes + background_colour_toggle: yes + design: + background: "#ff9f00" + inherit: yes + information: + description: This is an **album description** which is only shown if there + is no `description_link` + description_link: readme.md + copyright: Copyright 2003-2016 [interfaSys sàrl](http://www.interfasys.ch), + Switzerland + copyright_link: copyright.md + inherit: yes + sorting: + type: date + order: des + inherit: yes + +.. _supported_variables_label: + +Supported Variables +^^^^^^^^^^^^^^^^^^^ + +**Global Features** + +Place this in your root Nextcloud folder, which is your Home folder. + +* **external_shares**: Set to **yes** in your root configuration file if you + want to load images stored on external locations, when using the + **files_external** app. +* **native_svg**: Set to **yes** in your root configuration file to enable + rendering SVG images in your browser. This may represent a security risk if + you can't fully trust your SVG files. +* **background_colour_toggle**: Set to **yes** in your root configuration file + to enable a button that toggles between black and white backgrounds on + transparent images. + +.. note:: External shares are 20-50 times slower than local shares. Be prepared + to wait a long time before being able to see all the images contained in a + shared album. + +**Album Configuration** + +Each album can be individually configured using the following configuration +sections. Use the **inherit** parameter to pass configurations on to +sub-albums. + +**Design** + +* **background**: Defines the colour of the background of the photowall + using the RGB hexadecimal representation of that colour. For example: + **"#ffa033"**. You must use quotes around the value or it will + be ignored. It is strongly recommended to use a custom theme, with a CSS + loading spinner if you intend to use this feature. You can use `this colour + wheel `_ to find a colour you like. +* **inherit**: Set to **yes** if you want sub-folders to inherit this part of + the configuration. + +**Album Presentation** + +* **description**: A markdown-formatted string which will be displayed in the + info box. It can spread over multiple lines using the Yaml markers. +* **description_link**: A markdown file located within the album which will + be parsed and displayed in the info box instead of the description. +* **copyright**: A markdown-formatted string. This supports links to external + resources. +* **copyright_link**: Any file (e.g. copyright.html), in the album itself, + which will be downloaded when the user clicks on the link +* **inherit**: Set to **yes** if you want sub-folders to inherit this part of + the configuration. + +See ``_ for the markdown syntax. + +.. note:: Do not add links to your `copyright` string if you use the + **copyright_link** variable. + +**Sorting** + +* **sorting**: **date** or **name**. **date** only works for files. +* **sort_order**: **asc** or **des** (Ascending or descending). +* **inherit**: Set to **yes** if you want sub-folders to inherit this part of + the configuration. + +Notes +----- + +* When only the sort **type** variable has been set, the default sort order + will be used. +* When only the sort **order** variable has been found, the sort configuration + will be ignored and the script will keep looking for a valid configuration in + upper folders. +* To enable a feature such as native SVG in a public share, you need to create + in that folder a configuration file containing that feature. +* If you share a folder publicly, don't forget to add all the files you link to + (e.g. ``description.md`` or ``copyright.md``) inside the shared folder as + the user won't have access to files stored in the parent folder. +* Since people can download a whole folder as an archive, it's usually best to + include all files within a shared folder, rather than adding text directly + in the configuration file. + +Examples +-------- + +**Sorting Only** + +Applies to the current folder only:: + + # Gallery configuration file + sorting: + type: date + order: asc + +Short description and link to copyright document, applies to the current folder +and all of its sub-folders. This also shows you the syntax you can use to +spread a description over multiple lines:: + + # Gallery configuration file + information: + description: | # La Maison Bleue, Winter '16 + This is our Winter 2016 collection shot in **Kyoto** + Visit our [website](http://www.secretdesigner.ninja) for more information + copyright: Copyright 2015 La Maison Bleue, France + copyright_link: copyright_2015_lmb.html + inherit: yes + +**Load Images From External Clouds** + +.. note:: Features can only be defined in the root folder. + +You can add standard configuration items to the same configuration file:: + + # Gallery configuration file + features: + external_shares: yes + +**Enabling native SVG** + +.. note:: Special features can only be defined in the root folder. + +You can add standard configuration items to the same configuration file:: + + # Gallery configuration file + features: + native_svg: yes + +Possible Future Extensions +-------------------------- + +Different sorting parameters for albums. + diff --git a/user_manual_de/files/index.rst b/user_manual_de/files/index.rst new file mode 100644 index 000000000..cc8c4c3ca --- /dev/null +++ b/user_manual_de/files/index.rst @@ -0,0 +1,19 @@ +======================= +Files & Synchronization +======================= + +.. toctree:: + :maxdepth: 1 + + access_webgui + access_webdav + gallery_app + deleted_file_management + desktop_mobile_sync + encrypting_files + federated_cloud_sharing + file_drop + large_file_upload + quota + version_control + diff --git a/user_manual_de/files/large_file_upload.rst b/user_manual_de/files/large_file_upload.rst new file mode 100644 index 000000000..5b558301e --- /dev/null +++ b/user_manual_de/files/large_file_upload.rst @@ -0,0 +1,22 @@ +================== +Large File Uploads +================== + +When uploading files through the web client, Nextcloud is limited by PHP and +Apache configurations. By default, PHP is configured for only 2 megabyte +uploads. As this default upload limit is not entirely useful, we recommend that +your Nextcloud admin increase the Nextcloud variables to sizes appropriate for +users. + +Modifying certain Nextcloud variables requires administrative access. If you +require larger upload limits than have been provided by the default (or already +set by your administrator): + +* Contact your administrator to request an increase in these variables + +* Refer to the section in the `Admin Documentation + `_ that describes how to manage file + upload size limits. + +.. TODO ON RELEASE: Update version number above on release diff --git a/user_manual_de/files/quota.rst b/user_manual_de/files/quota.rst new file mode 100644 index 000000000..f711c74c6 --- /dev/null +++ b/user_manual_de/files/quota.rst @@ -0,0 +1,36 @@ +============= +Storage Quota +============= + +Your Nextcloud admin has the option to set a storage quota on users. Look at +the top of your Personal page to see what your quota is, and how much you have +used. + +.. figure:: ../images/quota1.png + +It may be helpful to understand how your quota is calculated. + +Metadata (thumbnails, temporary files, cache, and encryption keys) takes up +about 10% of disk space, but is not counted against user quotas. Some apps +store information in the database, such as the Calendar and Contacts apps. This +data is excluded from your quota. + +When other users share files with you, the shared files count against the +original share owner's quota. When you share a folder and allow other users or +groups to upload files to it, all uploaded and edited files count against your +quota. When you re-share files shared with you, the re-share still counts +against the quota of the original share owner. + +Encrypted files are a little larger than unencrypted files; the unencrypted size +is calculated against your quota. + +Deleted files that are still in the trash bin do not count against quotas. The +trash bin is set at 50% of quota. Deleted file aging is set at 30 days. When +deleted files exceed 50% of quota then the oldest files are removed until the +total is below 50%. + +When version control is enabled, the older file versions are not counted against +quotas. + +If you create a public share via URL, and allow uploads, any uploaded files +count against your quota. diff --git a/user_manual_de/files/version_control.rst b/user_manual_de/files/version_control.rst new file mode 100644 index 000000000..4eb14e6fe --- /dev/null +++ b/user_manual_de/files/version_control.rst @@ -0,0 +1,33 @@ +=============== +Version Control +=============== + +Nextcloud supports simple version control system for files. Versioning creates +backups of files which are accessible via the Versions tab on the Details +sidebar. This tab contains the history of the file where you can roll back a +file to any previous version. Changes made at intervals greater than two minutes +are saved in data/[user]/versions. + +.. figure:: ../images/files_versioning.png + +To restore a specific version of a file, click the circular arrow to the left. +Click on the timestamp to download it. + +The versioning app expires old versions automatically to make sure that +the user doesn't run out of space. This pattern is used to delete +old versions: + +* For the first second we keep one version +* For the first 10 seconds Nextcloud keeps one version every 2 seconds +* For the first minute Nextcloud keeps one version every 10 seconds +* For the first hour Nextcloud keeps one version every minute +* For the first 24 hours Nextcloud keeps one version every hour +* For the first 30 days Nextcloud keeps one version every day +* After the first 30 days Nextcloud keeps one version every week + +The versions are adjusted along this pattern every time a new version gets +created. + +The version app never uses more that 50% of the user's currently available free +space. If the stored versions exceed this limit, Nextcloud deletes the oldest +versions until it meets the disk space limit again. diff --git a/user_manual_de/images/2fa_backupcode_1.png b/user_manual_de/images/2fa_backupcode_1.png new file mode 100644 index 000000000..ba979b910 Binary files /dev/null and b/user_manual_de/images/2fa_backupcode_1.png differ diff --git a/user_manual_de/images/2fa_backupcode_2.png b/user_manual_de/images/2fa_backupcode_2.png new file mode 100644 index 000000000..bb4c0b466 Binary files /dev/null and b/user_manual_de/images/2fa_backupcode_2.png differ diff --git a/user_manual_de/images/anonym_click_sharing.png b/user_manual_de/images/anonym_click_sharing.png new file mode 100644 index 000000000..7c7812915 Binary files /dev/null and b/user_manual_de/images/anonym_click_sharing.png differ diff --git a/user_manual_de/images/anonym_hide_file_listing.png b/user_manual_de/images/anonym_hide_file_listing.png new file mode 100644 index 000000000..eb3bc5e56 Binary files /dev/null and b/user_manual_de/images/anonym_hide_file_listing.png differ diff --git a/user_manual_de/images/anonym_upload.png b/user_manual_de/images/anonym_upload.png new file mode 100644 index 000000000..04044af9c Binary files /dev/null and b/user_manual_de/images/anonym_upload.png differ diff --git a/user_manual_de/images/anonym_uploaded_files.png b/user_manual_de/images/anonym_uploaded_files.png new file mode 100644 index 000000000..e887a3aac Binary files /dev/null and b/user_manual_de/images/anonym_uploaded_files.png differ diff --git a/user_manual_de/images/apis_auth_google_drive.png b/user_manual_de/images/apis_auth_google_drive.png new file mode 100644 index 000000000..8089490e5 Binary files /dev/null and b/user_manual_de/images/apis_auth_google_drive.png differ diff --git a/user_manual_de/images/bookmark_addurl.png b/user_manual_de/images/bookmark_addurl.png new file mode 100644 index 000000000..b9983654f Binary files /dev/null and b/user_manual_de/images/bookmark_addurl.png differ diff --git a/user_manual_de/images/bookmark_list.jpg b/user_manual_de/images/bookmark_list.jpg new file mode 100644 index 000000000..61e7c9a01 Binary files /dev/null and b/user_manual_de/images/bookmark_list.jpg differ diff --git a/user_manual_de/images/bookmark_setting.png b/user_manual_de/images/bookmark_setting.png new file mode 100644 index 000000000..0eec3bdb1 Binary files /dev/null and b/user_manual_de/images/bookmark_setting.png differ diff --git a/user_manual_de/images/caldav.png b/user_manual_de/images/caldav.png new file mode 100644 index 000000000..077bb7504 Binary files /dev/null and b/user_manual_de/images/caldav.png differ diff --git a/user_manual_de/images/calendar_caldav_icon.png b/user_manual_de/images/calendar_caldav_icon.png new file mode 100644 index 000000000..f3baf9005 Binary files /dev/null and b/user_manual_de/images/calendar_caldav_icon.png differ diff --git a/user_manual_de/images/calendar_caldav_ios.png b/user_manual_de/images/calendar_caldav_ios.png new file mode 100644 index 000000000..85e409081 Binary files /dev/null and b/user_manual_de/images/calendar_caldav_ios.png differ diff --git a/user_manual_de/images/calendar_caldav_link.png b/user_manual_de/images/calendar_caldav_link.png new file mode 100644 index 000000000..462b646c7 Binary files /dev/null and b/user_manual_de/images/calendar_caldav_link.png differ diff --git a/user_manual_de/images/calendar_create_event.png b/user_manual_de/images/calendar_create_event.png new file mode 100644 index 000000000..a298a48d6 Binary files /dev/null and b/user_manual_de/images/calendar_create_event.png differ diff --git a/user_manual_de/images/calendar_create_event_advanced.png b/user_manual_de/images/calendar_create_event_advanced.png new file mode 100644 index 000000000..19fbb67ea Binary files /dev/null and b/user_manual_de/images/calendar_create_event_advanced.png differ diff --git a/user_manual_de/images/calendar_create_event_repeat.png b/user_manual_de/images/calendar_create_event_repeat.png new file mode 100644 index 000000000..6f90f66db Binary files /dev/null and b/user_manual_de/images/calendar_create_event_repeat.png differ diff --git a/user_manual_de/images/calendar_create_event_repeat_advanced.png b/user_manual_de/images/calendar_create_event_repeat_advanced.png new file mode 100644 index 000000000..d29189efe Binary files /dev/null and b/user_manual_de/images/calendar_create_event_repeat_advanced.png differ diff --git a/user_manual_de/images/calendar_create_event_share.png b/user_manual_de/images/calendar_create_event_share.png new file mode 100644 index 000000000..bcc5ce5db Binary files /dev/null and b/user_manual_de/images/calendar_create_event_share.png differ diff --git a/user_manual_de/images/calendar_create_new.png b/user_manual_de/images/calendar_create_new.png new file mode 100644 index 000000000..c582a558b Binary files /dev/null and b/user_manual_de/images/calendar_create_new.png differ diff --git a/user_manual_de/images/calendar_createevent.png b/user_manual_de/images/calendar_createevent.png new file mode 100644 index 000000000..5ca9bb320 Binary files /dev/null and b/user_manual_de/images/calendar_createevent.png differ diff --git a/user_manual_de/images/calendar_default.png b/user_manual_de/images/calendar_default.png new file mode 100644 index 000000000..6363b149c Binary files /dev/null and b/user_manual_de/images/calendar_default.png differ diff --git a/user_manual_de/images/calendar_edit_event.png b/user_manual_de/images/calendar_edit_event.png new file mode 100644 index 000000000..479b4441f Binary files /dev/null and b/user_manual_de/images/calendar_edit_event.png differ diff --git a/user_manual_de/images/calendar_export.png b/user_manual_de/images/calendar_export.png new file mode 100644 index 000000000..916cedf95 Binary files /dev/null and b/user_manual_de/images/calendar_export.png differ diff --git a/user_manual_de/images/calendar_import.png b/user_manual_de/images/calendar_import.png new file mode 100644 index 000000000..9806f99c8 Binary files /dev/null and b/user_manual_de/images/calendar_import.png differ diff --git a/user_manual_de/images/calendar_manage-calendars.png b/user_manual_de/images/calendar_manage-calendars.png new file mode 100644 index 000000000..610cfcb53 Binary files /dev/null and b/user_manual_de/images/calendar_manage-calendars.png differ diff --git a/user_manual_de/images/calendar_newtimezone1.png b/user_manual_de/images/calendar_newtimezone1.png new file mode 100644 index 000000000..961c58c47 Binary files /dev/null and b/user_manual_de/images/calendar_newtimezone1.png differ diff --git a/user_manual_de/images/calendar_settings.png b/user_manual_de/images/calendar_settings.png new file mode 100644 index 000000000..ae4c2acfa Binary files /dev/null and b/user_manual_de/images/calendar_settings.png differ diff --git a/user_manual_de/images/calendar_share.png b/user_manual_de/images/calendar_share.png new file mode 100644 index 000000000..ac408e0da Binary files /dev/null and b/user_manual_de/images/calendar_share.png differ diff --git a/user_manual_de/images/chain-link-on-public-share.png b/user_manual_de/images/chain-link-on-public-share.png new file mode 100644 index 000000000..b5a223814 Binary files /dev/null and b/user_manual_de/images/chain-link-on-public-share.png differ diff --git a/user_manual_de/images/contact_address_book_add.png b/user_manual_de/images/contact_address_book_add.png new file mode 100644 index 000000000..9dd7fe0db Binary files /dev/null and b/user_manual_de/images/contact_address_book_add.png differ diff --git a/user_manual_de/images/contact_bottombar.png b/user_manual_de/images/contact_bottombar.png new file mode 100644 index 000000000..3d91ea982 Binary files /dev/null and b/user_manual_de/images/contact_bottombar.png differ diff --git a/user_manual_de/images/contact_crop.jpg b/user_manual_de/images/contact_crop.jpg new file mode 100644 index 000000000..6231a5a54 Binary files /dev/null and b/user_manual_de/images/contact_crop.jpg differ diff --git a/user_manual_de/images/contact_del_ab.png b/user_manual_de/images/contact_del_ab.png new file mode 100644 index 000000000..d325a880f Binary files /dev/null and b/user_manual_de/images/contact_del_ab.png differ diff --git a/user_manual_de/images/contact_emptycontact.png b/user_manual_de/images/contact_emptycontact.png new file mode 100644 index 000000000..97b0e74ec Binary files /dev/null and b/user_manual_de/images/contact_emptycontact.png differ diff --git a/user_manual_de/images/contact_new.png b/user_manual_de/images/contact_new.png new file mode 100644 index 000000000..4cef92150 Binary files /dev/null and b/user_manual_de/images/contact_new.png differ diff --git a/user_manual_de/images/contact_picture.jpg b/user_manual_de/images/contact_picture.jpg new file mode 100644 index 000000000..089ac71bf Binary files /dev/null and b/user_manual_de/images/contact_picture.jpg differ diff --git a/user_manual_de/images/contact_picture.png b/user_manual_de/images/contact_picture.png new file mode 100644 index 000000000..17e828a95 Binary files /dev/null and b/user_manual_de/images/contact_picture.png differ diff --git a/user_manual_de/images/contact_picture_default.png b/user_manual_de/images/contact_picture_default.png new file mode 100644 index 000000000..24802de2c Binary files /dev/null and b/user_manual_de/images/contact_picture_default.png differ diff --git a/user_manual_de/images/contact_syncopt.jpg b/user_manual_de/images/contact_syncopt.jpg new file mode 100644 index 000000000..7efffb5ff Binary files /dev/null and b/user_manual_de/images/contact_syncopt.jpg differ diff --git a/user_manual_de/images/contact_thunderbird-Symbol_Gear.jpg b/user_manual_de/images/contact_thunderbird-Symbol_Gear.jpg new file mode 100755 index 000000000..d9f60413c Binary files /dev/null and b/user_manual_de/images/contact_thunderbird-Symbol_Gear.jpg differ diff --git a/user_manual_de/images/contact_thunderbird-Symbol_Impeller.jpg b/user_manual_de/images/contact_thunderbird-Symbol_Impeller.jpg new file mode 100755 index 000000000..a3e7fe53b Binary files /dev/null and b/user_manual_de/images/contact_thunderbird-Symbol_Impeller.jpg differ diff --git a/user_manual_de/images/contact_thunderbird-URL_config.jpg b/user_manual_de/images/contact_thunderbird-URL_config.jpg new file mode 100755 index 000000000..9ab48faaf Binary files /dev/null and b/user_manual_de/images/contact_thunderbird-URL_config.jpg differ diff --git a/user_manual_de/images/contact_uploadbutton.png b/user_manual_de/images/contact_uploadbutton.png new file mode 100644 index 000000000..ce9027551 Binary files /dev/null and b/user_manual_de/images/contact_uploadbutton.png differ diff --git a/user_manual_de/images/contact_vcfpick.jpg b/user_manual_de/images/contact_vcfpick.jpg new file mode 100644 index 000000000..b09bea5db Binary files /dev/null and b/user_manual_de/images/contact_vcfpick.jpg differ diff --git a/user_manual_de/images/contacts_empty.png b/user_manual_de/images/contacts_empty.png new file mode 100644 index 000000000..70f045cf3 Binary files /dev/null and b/user_manual_de/images/contacts_empty.png differ diff --git a/user_manual_de/images/contacts_settings.png b/user_manual_de/images/contacts_settings.png new file mode 100644 index 000000000..a42659e0a Binary files /dev/null and b/user_manual_de/images/contacts_settings.png differ diff --git a/user_manual_de/images/create_public_share-10.png b/user_manual_de/images/create_public_share-10.png new file mode 100644 index 000000000..95b884a7f Binary files /dev/null and b/user_manual_de/images/create_public_share-10.png differ diff --git a/user_manual_de/images/create_public_share-6.png b/user_manual_de/images/create_public_share-6.png new file mode 100644 index 000000000..a2eeea183 Binary files /dev/null and b/user_manual_de/images/create_public_share-6.png differ diff --git a/user_manual_de/images/create_public_share-8.png b/user_manual_de/images/create_public_share-8.png new file mode 100644 index 000000000..d40c2bd0c Binary files /dev/null and b/user_manual_de/images/create_public_share-8.png differ diff --git a/user_manual_de/images/create_public_share-9.png b/user_manual_de/images/create_public_share-9.png new file mode 100644 index 000000000..07cf254ee Binary files /dev/null and b/user_manual_de/images/create_public_share-9.png differ diff --git a/user_manual_de/images/cross.png b/user_manual_de/images/cross.png new file mode 100644 index 000000000..3389c66e0 Binary files /dev/null and b/user_manual_de/images/cross.png differ diff --git a/user_manual_de/images/direct-share-1.png b/user_manual_de/images/direct-share-1.png new file mode 100644 index 000000000..4cac18744 Binary files /dev/null and b/user_manual_de/images/direct-share-1.png differ diff --git a/user_manual_de/images/direct-share-3.png b/user_manual_de/images/direct-share-3.png new file mode 100644 index 000000000..20d512c6b Binary files /dev/null and b/user_manual_de/images/direct-share-3.png differ diff --git a/user_manual_de/images/direct-share-4.png b/user_manual_de/images/direct-share-4.png new file mode 100644 index 000000000..081ca9478 Binary files /dev/null and b/user_manual_de/images/direct-share-4.png differ diff --git a/user_manual_de/images/direct-share-5.png b/user_manual_de/images/direct-share-5.png new file mode 100644 index 000000000..575eb8f14 Binary files /dev/null and b/user_manual_de/images/direct-share-5.png differ diff --git a/user_manual_de/images/documents_personal_settings.png b/user_manual_de/images/documents_personal_settings.png new file mode 100644 index 000000000..c7c7c0795 Binary files /dev/null and b/user_manual_de/images/documents_personal_settings.png differ diff --git a/user_manual_de/images/download.png b/user_manual_de/images/download.png new file mode 100644 index 000000000..0f71a5a77 Binary files /dev/null and b/user_manual_de/images/download.png differ diff --git a/user_manual_de/images/email_address_personal_settings.png b/user_manual_de/images/email_address_personal_settings.png new file mode 100644 index 000000000..26798f27f Binary files /dev/null and b/user_manual_de/images/email_address_personal_settings.png differ diff --git a/user_manual_de/images/email_server_smtp_wizard.png b/user_manual_de/images/email_server_smtp_wizard.png new file mode 100644 index 000000000..576dc8a31 Binary files /dev/null and b/user_manual_de/images/email_server_smtp_wizard.png differ diff --git a/user_manual_de/images/encryption1.png b/user_manual_de/images/encryption1.png new file mode 100644 index 000000000..73a0fdac8 Binary files /dev/null and b/user_manual_de/images/encryption1.png differ diff --git a/user_manual_de/images/encryption2.png b/user_manual_de/images/encryption2.png new file mode 100644 index 000000000..2a72475d2 Binary files /dev/null and b/user_manual_de/images/encryption2.png differ diff --git a/user_manual_de/images/encryption3.png b/user_manual_de/images/encryption3.png new file mode 100644 index 000000000..0b8c615e0 Binary files /dev/null and b/user_manual_de/images/encryption3.png differ diff --git a/user_manual_de/images/encryption4.png b/user_manual_de/images/encryption4.png new file mode 100644 index 000000000..e1ff5e356 Binary files /dev/null and b/user_manual_de/images/encryption4.png differ diff --git a/user_manual_de/images/event_export.png b/user_manual_de/images/event_export.png new file mode 100644 index 000000000..6249db315 Binary files /dev/null and b/user_manual_de/images/event_export.png differ diff --git a/user_manual_de/images/explorer_webdav.png b/user_manual_de/images/explorer_webdav.png new file mode 100644 index 000000000..01f5fa01f Binary files /dev/null and b/user_manual_de/images/explorer_webdav.png differ diff --git a/user_manual_de/images/external_google_drive_1_sign_in.png b/user_manual_de/images/external_google_drive_1_sign_in.png new file mode 100644 index 000000000..43db0e13e Binary files /dev/null and b/user_manual_de/images/external_google_drive_1_sign_in.png differ diff --git a/user_manual_de/images/external_google_drive_2_verify.png b/user_manual_de/images/external_google_drive_2_verify.png new file mode 100644 index 000000000..e055bc04c Binary files /dev/null and b/user_manual_de/images/external_google_drive_2_verify.png differ diff --git a/user_manual_de/images/external_google_drive_3_create_project.png b/user_manual_de/images/external_google_drive_3_create_project.png new file mode 100644 index 000000000..a706f9200 Binary files /dev/null and b/user_manual_de/images/external_google_drive_3_create_project.png differ diff --git a/user_manual_de/images/external_google_drive_4_enable_api.png b/user_manual_de/images/external_google_drive_4_enable_api.png new file mode 100644 index 000000000..31925e2c5 Binary files /dev/null and b/user_manual_de/images/external_google_drive_4_enable_api.png differ diff --git a/user_manual_de/images/external_google_drive_5_setup_ownCloud.png b/user_manual_de/images/external_google_drive_5_setup_ownCloud.png new file mode 100644 index 000000000..35b4ce4ab Binary files /dev/null and b/user_manual_de/images/external_google_drive_5_setup_ownCloud.png differ diff --git a/user_manual_de/images/external_google_drive_6_accept.png b/user_manual_de/images/external_google_drive_6_accept.png new file mode 100644 index 000000000..5e1c7ef54 Binary files /dev/null and b/user_manual_de/images/external_google_drive_6_accept.png differ diff --git a/user_manual_de/images/file_menu_comments_2.png b/user_manual_de/images/file_menu_comments_2.png new file mode 100644 index 000000000..aac661276 Binary files /dev/null and b/user_manual_de/images/file_menu_comments_2.png differ diff --git a/user_manual_de/images/files_page-1.png b/user_manual_de/images/files_page-1.png new file mode 100644 index 000000000..8e4f49f88 Binary files /dev/null and b/user_manual_de/images/files_page-1.png differ diff --git a/user_manual_de/images/files_page-2.png b/user_manual_de/images/files_page-2.png new file mode 100644 index 000000000..20f95cc82 Binary files /dev/null and b/user_manual_de/images/files_page-2.png differ diff --git a/user_manual_de/images/files_page-3.png b/user_manual_de/images/files_page-3.png new file mode 100644 index 000000000..76aa51843 Binary files /dev/null and b/user_manual_de/images/files_page-3.png differ diff --git a/user_manual_de/images/files_page-4.png b/user_manual_de/images/files_page-4.png new file mode 100644 index 000000000..04ea7b014 Binary files /dev/null and b/user_manual_de/images/files_page-4.png differ diff --git a/user_manual_de/images/files_page-5.png b/user_manual_de/images/files_page-5.png new file mode 100644 index 000000000..26a42fa3e Binary files /dev/null and b/user_manual_de/images/files_page-5.png differ diff --git a/user_manual_de/images/files_page-6.png b/user_manual_de/images/files_page-6.png new file mode 100644 index 000000000..1446ffafb Binary files /dev/null and b/user_manual_de/images/files_page-6.png differ diff --git a/user_manual_de/images/files_page-7.png b/user_manual_de/images/files_page-7.png new file mode 100644 index 000000000..02cf3aaee Binary files /dev/null and b/user_manual_de/images/files_page-7.png differ diff --git a/user_manual_de/images/files_page-8.png b/user_manual_de/images/files_page-8.png new file mode 100644 index 000000000..01b9ab767 Binary files /dev/null and b/user_manual_de/images/files_page-8.png differ diff --git a/user_manual_de/images/files_page.png b/user_manual_de/images/files_page.png new file mode 100644 index 000000000..07bde3d36 Binary files /dev/null and b/user_manual_de/images/files_page.png differ diff --git a/user_manual_de/images/files_versioning.png b/user_manual_de/images/files_versioning.png new file mode 100644 index 000000000..6464fc6e3 Binary files /dev/null and b/user_manual_de/images/files_versioning.png differ diff --git a/user_manual_de/images/full_name.png b/user_manual_de/images/full_name.png new file mode 100644 index 000000000..7a1d67064 Binary files /dev/null and b/user_manual_de/images/full_name.png differ diff --git a/user_manual_de/images/gallery-1.png b/user_manual_de/images/gallery-1.png new file mode 100644 index 000000000..11dbad6b5 Binary files /dev/null and b/user_manual_de/images/gallery-1.png differ diff --git a/user_manual_de/images/gallery-2.png b/user_manual_de/images/gallery-2.png new file mode 100644 index 000000000..bfeee9ac6 Binary files /dev/null and b/user_manual_de/images/gallery-2.png differ diff --git a/user_manual_de/images/gear.png b/user_manual_de/images/gear.png new file mode 100644 index 000000000..f6eb6ce0c Binary files /dev/null and b/user_manual_de/images/gear.png differ diff --git a/user_manual_de/images/hidden_files.png b/user_manual_de/images/hidden_files.png new file mode 100644 index 000000000..8e8290fc6 Binary files /dev/null and b/user_manual_de/images/hidden_files.png differ diff --git a/user_manual_de/images/kdes.png b/user_manual_de/images/kdes.png new file mode 100644 index 000000000..d564d74a6 Binary files /dev/null and b/user_manual_de/images/kdes.png differ diff --git a/user_manual_de/images/kdes1.png b/user_manual_de/images/kdes1.png new file mode 100644 index 000000000..595b9f606 Binary files /dev/null and b/user_manual_de/images/kdes1.png differ diff --git a/user_manual_de/images/kdes2.png b/user_manual_de/images/kdes2.png new file mode 100644 index 000000000..2de5a04e0 Binary files /dev/null and b/user_manual_de/images/kdes2.png differ diff --git a/user_manual_de/images/kdes3.png b/user_manual_de/images/kdes3.png new file mode 100644 index 000000000..26f252e2d Binary files /dev/null and b/user_manual_de/images/kdes3.png differ diff --git a/user_manual_de/images/kdes4.png b/user_manual_de/images/kdes4.png new file mode 100644 index 000000000..a9348a7d6 Binary files /dev/null and b/user_manual_de/images/kdes4.png differ diff --git a/user_manual_de/images/kdes5.png b/user_manual_de/images/kdes5.png new file mode 100644 index 000000000..a49b5d286 Binary files /dev/null and b/user_manual_de/images/kdes5.png differ diff --git a/user_manual_de/images/kdes6.png b/user_manual_de/images/kdes6.png new file mode 100644 index 000000000..7643fefae Binary files /dev/null and b/user_manual_de/images/kdes6.png differ diff --git a/user_manual_de/images/kdes7.png b/user_manual_de/images/kdes7.png new file mode 100644 index 000000000..e151fbfd1 Binary files /dev/null and b/user_manual_de/images/kdes7.png differ diff --git a/user_manual_de/images/kdes9.png b/user_manual_de/images/kdes9.png new file mode 100644 index 000000000..1fc73b3c2 Binary files /dev/null and b/user_manual_de/images/kdes9.png differ diff --git a/user_manual_de/images/language_personal_settings.png b/user_manual_de/images/language_personal_settings.png new file mode 100644 index 000000000..f86cf8f75 Binary files /dev/null and b/user_manual_de/images/language_personal_settings.png differ diff --git a/user_manual_de/images/mail_templates.png b/user_manual_de/images/mail_templates.png new file mode 100644 index 000000000..f09ef1929 Binary files /dev/null and b/user_manual_de/images/mail_templates.png differ diff --git a/user_manual_de/images/nautilus_webdav.png b/user_manual_de/images/nautilus_webdav.png new file mode 100644 index 000000000..929d8b323 Binary files /dev/null and b/user_manual_de/images/nautilus_webdav.png differ diff --git a/user_manual_de/images/new_project_google_drive.png b/user_manual_de/images/new_project_google_drive.png new file mode 100644 index 000000000..9f1e23704 Binary files /dev/null and b/user_manual_de/images/new_project_google_drive.png differ diff --git a/user_manual_de/images/new_project_google_drive_api_settings.png b/user_manual_de/images/new_project_google_drive_api_settings.png new file mode 100644 index 000000000..9e208d57c Binary files /dev/null and b/user_manual_de/images/new_project_google_drive_api_settings.png differ diff --git a/user_manual_de/images/new_project_google_drive_branding.png b/user_manual_de/images/new_project_google_drive_branding.png new file mode 100644 index 000000000..cc7180bdc Binary files /dev/null and b/user_manual_de/images/new_project_google_drive_branding.png differ diff --git a/user_manual_de/images/new_project_google_drive_new_client.png b/user_manual_de/images/new_project_google_drive_new_client.png new file mode 100644 index 000000000..8b64e5f0b Binary files /dev/null and b/user_manual_de/images/new_project_google_drive_new_client.png differ diff --git a/user_manual_de/images/notifications_personal_settings.png b/user_manual_de/images/notifications_personal_settings.png new file mode 100644 index 000000000..0dfc1ab83 Binary files /dev/null and b/user_manual_de/images/notifications_personal_settings.png differ diff --git a/user_manual_de/images/oc_apps_dropdown.png b/user_manual_de/images/oc_apps_dropdown.png new file mode 100644 index 000000000..52832e05b Binary files /dev/null and b/user_manual_de/images/oc_apps_dropdown.png differ diff --git a/user_manual_de/images/oc_connect.png b/user_manual_de/images/oc_connect.png new file mode 100644 index 000000000..1e7144ea3 Binary files /dev/null and b/user_manual_de/images/oc_connect.png differ diff --git a/user_manual_de/images/oc_documents_col_edit.png b/user_manual_de/images/oc_documents_col_edit.png new file mode 100644 index 000000000..c11b5c501 Binary files /dev/null and b/user_manual_de/images/oc_documents_col_edit.png differ diff --git a/user_manual_de/images/oc_documents_share.png b/user_manual_de/images/oc_documents_share.png new file mode 100644 index 000000000..41e33a255 Binary files /dev/null and b/user_manual_de/images/oc_documents_share.png differ diff --git a/user_manual_de/images/oc_edit.png b/user_manual_de/images/oc_edit.png new file mode 100644 index 000000000..a546b4820 Binary files /dev/null and b/user_manual_de/images/oc_edit.png differ diff --git a/user_manual_de/images/oc_files_share.png b/user_manual_de/images/oc_files_share.png new file mode 100644 index 000000000..e9213e855 Binary files /dev/null and b/user_manual_de/images/oc_files_share.png differ diff --git a/user_manual_de/images/oc_filesweb.png b/user_manual_de/images/oc_filesweb.png new file mode 100644 index 000000000..15b27856b Binary files /dev/null and b/user_manual_de/images/oc_filesweb.png differ diff --git a/user_manual_de/images/oc_filesweb_navigate.png b/user_manual_de/images/oc_filesweb_navigate.png new file mode 100644 index 000000000..c9694333e Binary files /dev/null and b/user_manual_de/images/oc_filesweb_navigate.png differ diff --git a/user_manual_de/images/oc_filesweb_new.png b/user_manual_de/images/oc_filesweb_new.png new file mode 100644 index 000000000..0c9535c0b Binary files /dev/null and b/user_manual_de/images/oc_filesweb_new.png differ diff --git a/user_manual_de/images/oc_main_web.png b/user_manual_de/images/oc_main_web.png new file mode 100644 index 000000000..71352f5a0 Binary files /dev/null and b/user_manual_de/images/oc_main_web.png differ diff --git a/user_manual_de/images/oc_personal_settings_dropdown.png b/user_manual_de/images/oc_personal_settings_dropdown.png new file mode 100644 index 000000000..053550a83 Binary files /dev/null and b/user_manual_de/images/oc_personal_settings_dropdown.png differ diff --git a/user_manual_de/images/oc_personal_settings_window.png b/user_manual_de/images/oc_personal_settings_window.png new file mode 100644 index 000000000..3cc0aa376 Binary files /dev/null and b/user_manual_de/images/oc_personal_settings_window.png differ diff --git a/user_manual_de/images/oc_share_expiration_calendar.png b/user_manual_de/images/oc_share_expiration_calendar.png new file mode 100644 index 000000000..1406c57ad Binary files /dev/null and b/user_manual_de/images/oc_share_expiration_calendar.png differ diff --git a/user_manual_de/images/oc_share_with_options.png b/user_manual_de/images/oc_share_with_options.png new file mode 100644 index 000000000..86b22e50b Binary files /dev/null and b/user_manual_de/images/oc_share_with_options.png differ diff --git a/user_manual_de/images/oc_ui.png b/user_manual_de/images/oc_ui.png new file mode 100644 index 000000000..c4d2b1cf4 Binary files /dev/null and b/user_manual_de/images/oc_ui.png differ diff --git a/user_manual_de/images/osx_webdav1.png b/user_manual_de/images/osx_webdav1.png new file mode 100644 index 000000000..7f0b87f44 Binary files /dev/null and b/user_manual_de/images/osx_webdav1.png differ diff --git a/user_manual_de/images/osx_webdav2.png b/user_manual_de/images/osx_webdav2.png new file mode 100644 index 000000000..52ec1cc3f Binary files /dev/null and b/user_manual_de/images/osx_webdav2.png differ diff --git a/user_manual_de/images/owncloud_webinterface_map.png b/user_manual_de/images/owncloud_webinterface_map.png new file mode 100644 index 000000000..00ef48692 Binary files /dev/null and b/user_manual_de/images/owncloud_webinterface_map.png differ diff --git a/user_manual_de/images/password_change.png b/user_manual_de/images/password_change.png new file mode 100644 index 000000000..3907bfa3c Binary files /dev/null and b/user_manual_de/images/password_change.png differ diff --git a/user_manual_de/images/pencil.png b/user_manual_de/images/pencil.png new file mode 100644 index 000000000..975bd2d70 Binary files /dev/null and b/user_manual_de/images/pencil.png differ diff --git a/user_manual_de/images/personal_settings.png b/user_manual_de/images/personal_settings.png new file mode 100644 index 000000000..1ee6bd277 Binary files /dev/null and b/user_manual_de/images/personal_settings.png differ diff --git a/user_manual_de/images/profile_picture_personal_settings.png b/user_manual_de/images/profile_picture_personal_settings.png new file mode 100644 index 000000000..988993bb6 Binary files /dev/null and b/user_manual_de/images/profile_picture_personal_settings.png differ diff --git a/user_manual_de/images/quota1.png b/user_manual_de/images/quota1.png new file mode 100644 index 000000000..f05b825dc Binary files /dev/null and b/user_manual_de/images/quota1.png differ diff --git a/user_manual_de/images/remote_shares.png b/user_manual_de/images/remote_shares.png new file mode 100644 index 000000000..1b48ef5ae Binary files /dev/null and b/user_manual_de/images/remote_shares.png differ diff --git a/user_manual_de/images/s2s-add-remote-share.png b/user_manual_de/images/s2s-add-remote-share.png new file mode 100644 index 000000000..5589747c8 Binary files /dev/null and b/user_manual_de/images/s2s-add-remote-share.png differ diff --git a/user_manual_de/images/s2s-connect-to-remote-share.png b/user_manual_de/images/s2s-connect-to-remote-share.png new file mode 100644 index 000000000..57c72e721 Binary files /dev/null and b/user_manual_de/images/s2s-connect-to-remote-share.png differ diff --git a/user_manual_de/images/s2s-create_public_share.png b/user_manual_de/images/s2s-create_public_share.png new file mode 100644 index 000000000..08566af15 Binary files /dev/null and b/user_manual_de/images/s2s-create_public_share.png differ diff --git a/user_manual_de/images/s2s-remote-share-labeled.png b/user_manual_de/images/s2s-remote-share-labeled.png new file mode 100644 index 000000000..338fe63e4 Binary files /dev/null and b/user_manual_de/images/s2s-remote-share-labeled.png differ diff --git a/user_manual_de/images/s2s_share_link.png b/user_manual_de/images/s2s_share_link.png new file mode 100644 index 000000000..3db88dfcf Binary files /dev/null and b/user_manual_de/images/s2s_share_link.png differ diff --git a/user_manual_de/images/settings_devices.png b/user_manual_de/images/settings_devices.png new file mode 100644 index 000000000..16c971d9b Binary files /dev/null and b/user_manual_de/images/settings_devices.png differ diff --git a/user_manual_de/images/settings_devices_add.png b/user_manual_de/images/settings_devices_add.png new file mode 100644 index 000000000..a826be075 Binary files /dev/null and b/user_manual_de/images/settings_devices_add.png differ diff --git a/user_manual_de/images/settings_sessions.png b/user_manual_de/images/settings_sessions.png new file mode 100644 index 000000000..5a55bcd4c Binary files /dev/null and b/user_manual_de/images/settings_sessions.png differ diff --git a/user_manual_de/images/share.png b/user_manual_de/images/share.png new file mode 100644 index 000000000..fdacbbabe Binary files /dev/null and b/user_manual_de/images/share.png differ diff --git a/user_manual_de/images/share_link.png b/user_manual_de/images/share_link.png new file mode 100644 index 000000000..3db88dfcf Binary files /dev/null and b/user_manual_de/images/share_link.png differ diff --git a/user_manual_de/images/share_link_adding.png b/user_manual_de/images/share_link_adding.png new file mode 100644 index 000000000..57c72e721 Binary files /dev/null and b/user_manual_de/images/share_link_adding.png differ diff --git a/user_manual_de/images/totp_enable.png b/user_manual_de/images/totp_enable.png new file mode 100644 index 000000000..d131a4628 Binary files /dev/null and b/user_manual_de/images/totp_enable.png differ diff --git a/user_manual_de/images/totp_login_2.png b/user_manual_de/images/totp_login_2.png new file mode 100644 index 000000000..cdb41e743 Binary files /dev/null and b/user_manual_de/images/totp_login_2.png differ diff --git a/user_manual_de/images/usage_indicator.png b/user_manual_de/images/usage_indicator.png new file mode 100644 index 000000000..7ad8bbbff Binary files /dev/null and b/user_manual_de/images/usage_indicator.png differ diff --git a/user_manual_de/images/users-files.png b/user_manual_de/images/users-files.png new file mode 100644 index 000000000..1d528a10d Binary files /dev/null and b/user_manual_de/images/users-files.png differ diff --git a/user_manual_de/images/users-overlays.png b/user_manual_de/images/users-overlays.png new file mode 100644 index 000000000..b9b518b3e Binary files /dev/null and b/user_manual_de/images/users-overlays.png differ diff --git a/user_manual_de/images/users-share-local.png b/user_manual_de/images/users-share-local.png new file mode 100644 index 000000000..e95351b39 Binary files /dev/null and b/user_manual_de/images/users-share-local.png differ diff --git a/user_manual_de/images/users-share-local2.png b/user_manual_de/images/users-share-local2.png new file mode 100644 index 000000000..a4752f86c Binary files /dev/null and b/user_manual_de/images/users-share-local2.png differ diff --git a/user_manual_de/images/users-share-public.png b/user_manual_de/images/users-share-public.png new file mode 100644 index 000000000..f0c4aca96 Binary files /dev/null and b/user_manual_de/images/users-share-public.png differ diff --git a/user_manual_de/images/version_personal_settings.png b/user_manual_de/images/version_personal_settings.png new file mode 100644 index 000000000..63c91829a Binary files /dev/null and b/user_manual_de/images/version_personal_settings.png differ diff --git a/user_manual_de/images/video_player_2.png b/user_manual_de/images/video_player_2.png new file mode 100644 index 000000000..9aa435a45 Binary files /dev/null and b/user_manual_de/images/video_player_2.png differ diff --git a/user_manual_de/images/webdav_dolphin.png b/user_manual_de/images/webdav_dolphin.png new file mode 100644 index 000000000..ba89fa77f Binary files /dev/null and b/user_manual_de/images/webdav_dolphin.png differ diff --git a/user_manual_de/images/webdav_gnome3_nautilus.png b/user_manual_de/images/webdav_gnome3_nautilus.png new file mode 100644 index 000000000..bcc2fff89 Binary files /dev/null and b/user_manual_de/images/webdav_gnome3_nautilus.png differ diff --git a/user_manual_de/index.rst b/user_manual_de/index.rst new file mode 100644 index 000000000..ea25df6a4 --- /dev/null +++ b/user_manual_de/index.rst @@ -0,0 +1,26 @@ +.. _index: + +============================================ +Nextcloud |version| User Manual Introduction +============================================ + +**Welcome to Nextcloud: A safe home for all your data.** + +Nextcloud is open source file sync and share software for everyone from +individuals operating the free Nextcloud Server in the privacy of their own +home, to large enterprises and service providers supported by the Nextcloud +Enterprise Subscription. Nextcloud provides a safe, secure, and compliant +file synchronization and sharing solution on servers that you control. + +You can share one or more files and folders on your computer, and synchronize +them with your Nextcloud server. Place files in your local shared directories, +and those files are immediately synchronized to the server and to other devices +using the Nextcloud / ownCloud Desktop Sync Client, Android app, or iOS app. To +learn more about the Nextcloud desktop and mobile clients, please refer to +their respective manuals: + +* `Nextcloud/ownCloud Desktop Client`_ +* `Nextcloud Android App`_ + +.. _`Nextcloud/ownCloud Desktop Client`: https://doc.owncloud.org/desktop/2.2/ +.. _`Nextcloud Android App`: https://docs.nextcloud.org/android/ diff --git a/user_manual_de/make.bat b/user_manual_de/make.bat new file mode 100644 index 000000000..3fbb57f5d --- /dev/null +++ b/user_manual_de/make.bat @@ -0,0 +1,199 @@ +@ECHO OFF + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set BUILDDIR=_build +set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . +set I18NSPHINXOPTS=%SPHINXOPTS% . +if NOT "%PAPER%" == "" ( + set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% + set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% +) + +if "%1" == "" goto help + +if "%1" == "help" ( + :help + echo.Please use `make ^` where ^ is one of + echo. html to make standalone HTML files + echo. dirhtml to make HTML files named index.html in directories + echo. singlehtml to make a single large HTML file + echo. pdf to make a PDF file with rst2pdf + echo. pickle to make pickle files + echo. json to make JSON files + echo. htmlhelp to make HTML files and a HTML help project + echo. qthelp to make HTML files and a qthelp project + echo. devhelp to make HTML files and a Devhelp project + echo. epub to make an epub + echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter + echo. text to make text files + echo. man to make manual pages + echo. texinfo to make Texinfo files + echo. gettext to make PO message catalogs + echo. changes to make an overview over all changed/added/deprecated items + echo. linkcheck to check all external links for integrity + echo. doctest to run all doctests embedded in the documentation if enabled + goto end +) + +if "%1" == "clean" ( + for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i + del /q /s %BUILDDIR%\* + goto end +) + +if "%1" == "html" ( + %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/html. + goto end +) + +if "%1" == "dirhtml" ( + %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. + goto end +) + +if "%1" == "singlehtml" ( + %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. + goto end +) + +if "%1" == "pdf" ( + %SPHINXBUILD% -b pdf %ALLSPHINXOPTS% %BUILDDIR%/pdf + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The PDF file is in %BUILDDIR%/pdf. + goto end +) + +if "%1" == "pickle" ( + %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can process the pickle files. + goto end +) + +if "%1" == "json" ( + %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can process the JSON files. + goto end +) + +if "%1" == "htmlhelp" ( + %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can run HTML Help Workshop with the ^ +.hhp project file in %BUILDDIR%/htmlhelp. + goto end +) + +if "%1" == "qthelp" ( + %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can run "qcollectiongenerator" with the ^ +.qhcp project file in %BUILDDIR%/qthelp, like this: + echo.^> qcollectiongenerator %BUILDDIR%\qthelp\OwncloudDocumentation.qhcp + echo.To view the help file: + echo.^> assistant -collectionFile %BUILDDIR%\qthelp\OwncloudDocumentation.ghc + goto end +) + +if "%1" == "devhelp" ( + %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. + goto end +) + +if "%1" == "epub" ( + %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The epub file is in %BUILDDIR%/epub. + goto end +) + +if "%1" == "latex" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "text" ( + %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The text files are in %BUILDDIR%/text. + goto end +) + +if "%1" == "man" ( + %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The manual pages are in %BUILDDIR%/man. + goto end +) + +if "%1" == "texinfo" ( + %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. + goto end +) + +if "%1" == "gettext" ( + %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The message catalogs are in %BUILDDIR%/locale. + goto end +) + +if "%1" == "changes" ( + %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes + if errorlevel 1 exit /b 1 + echo. + echo.The overview file is in %BUILDDIR%/changes. + goto end +) + +if "%1" == "linkcheck" ( + %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck + if errorlevel 1 exit /b 1 + echo. + echo.Link check complete; look for any errors in the above output ^ +or in %BUILDDIR%/linkcheck/output.txt. + goto end +) + +if "%1" == "doctest" ( + %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest + if errorlevel 1 exit /b 1 + echo. + echo.Testing of doctests in the sources finished, look at the ^ +results in %BUILDDIR%/doctest/output.txt. + goto end +) + +:end diff --git a/user_manual_de/pim/calendar.rst b/user_manual_de/pim/calendar.rst new file mode 100644 index 000000000..ebfc55470 --- /dev/null +++ b/user_manual_de/pim/calendar.rst @@ -0,0 +1,6 @@ +====================== +Using the Calendar App +====================== + +The Calendar app is not enabled by default in Nextcloud |version| and needs to +be enabled separately. \ No newline at end of file diff --git a/user_manual_de/pim/contacts.rst b/user_manual_de/pim/contacts.rst new file mode 100644 index 000000000..71bf6af17 --- /dev/null +++ b/user_manual_de/pim/contacts.rst @@ -0,0 +1,6 @@ +====================== +Using the Contacts App +====================== + +The Contacts app is not enabled by default in Nextcloud |version| and needs to +be enabled separately. \ No newline at end of file diff --git a/user_manual_de/pim/index.rst b/user_manual_de/pim/index.rst new file mode 100644 index 000000000..9960f226b --- /dev/null +++ b/user_manual_de/pim/index.rst @@ -0,0 +1,19 @@ +=================== +Contacts & Calendar +=================== + +The Contacts, Calendar, and Mail apps are not included in Nextcloud 10. +You may easily install them by clicking the Enable button on +their respective Apps > Productivity entries. + +.. toctree:: + :maxdepth: 1 + + contacts + calendar + sync_ios + sync_osx + sync_kde + sync_thunderbird + troubleshooting + diff --git a/user_manual_de/pim/sync_ios.rst b/user_manual_de/pim/sync_ios.rst new file mode 100644 index 000000000..963665e9a --- /dev/null +++ b/user_manual_de/pim/sync_ios.rst @@ -0,0 +1,56 @@ +iOS - Synchronize iPhone/iPad +============================= + +Calendar +-------- + +#. Open the settings application. +#. Select Mail, Contacts, Calendars. +#. Select Add Account. +#. Select Other as account type. +#. Select Add CalDAV account. +#. For server, type ``example.com/remote.php/dav/principals/users/USERNAME/`` +#. Enter your user name and password. +#. Select Next. +#. If your server does not support SSL, a warning will be displayed. + Select Continue. +#. If the iPhone is unable to verify the account information perform the + following steps: + + - Select OK. + - Select advanced settings. + - If your server does not support SSL, make sure Use SSL is set to OFF. + - Change port to 80. + - Go back to account information and hit Save. + +Your calendar will now be visible in the Calendar application + + +Address book +------------ + +#. Open the settings application. +#. Select Mail, Contacts, Calendars. +#. Select Add Account. +#. Select Other as account type. +#. Select Add CardDAV account. +#. For server, type ``example.com/remote.php/dav/principals/users/USERNAME/`` +#. Enter your user name and password. +#. Select Next. +#. If your server does not support SSL, a warning will be displayed. + Select Continue. +#. If the iPhone is unable to verify the account information perform the + following: + + - Select OK. + - Select advanced settings. + - If your server does not support SSL, make sure Use SSL is set to OFF. + - Change port to 80. + - Go back to account information and hit Save. + +Now should now find your contacts in the address book of your iPhone. +If it's still not working, have a look at the :doc:`troubleshooting` +and `Troubleshooting Contacts & Calendar`_ guides. + +.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.org/server/11/admin_manual/issues/index.html#troubleshooting-contacts-calendar +.. TODO ON RELEASE: Update version number above on release diff --git a/user_manual_de/pim/sync_kde.rst b/user_manual_de/pim/sync_kde.rst new file mode 100644 index 000000000..9a0ee6b69 --- /dev/null +++ b/user_manual_de/pim/sync_kde.rst @@ -0,0 +1,56 @@ +========================= +Synchronizing with KDE SC +========================= + +.. image:: ../images/kdes1.png + +From KDE SC 4.8 and forward setting up Nextcloud is very easy. Note that the KDE +calendar needs to have the Nextcloud Calendar and Contacts apps enabled on the +Nextcloud server. You need both and not just the Calendar. From System Settings +Personal Information/Akonadi Resources Configuration select DAV Groupware +resource. + +.. image:: ../images/kdes2.png + +Enter your Nextcloud username and password and click "Next". + + +.. image:: ../images/kdes3.png + +Select Nextcloud in the drop down list and click "Next". + + + +.. image:: ../images/kdes4.png + +Enter the host name and installation path. If you do not use SSL +remember to de-select "Use secure connection". + + +.. image:: ../images/kdes5.png + +Test the connection. If everything went well you should see a message +like the one below. + + +.. image:: ../images/kdes6.png + +Click "Finish" and you will be able to change the display name and +refresh interval. + + +.. image:: ../images/kdes7.png + +Now you should see the Akonadi resource doing the first +synchronization. + +.. missing +.. .. image:: ../images/kdes8.png + +You can find the Contacts and Calendars in Kontact (or +KOrganizer/KAddressbook if you run the programs separately.) + + +.. image:: ../images/kdes9.png + +.. image:: ../images/kdes.png diff --git a/user_manual_de/pim/sync_osx.rst b/user_manual_de/pim/sync_osx.rst new file mode 100644 index 000000000..f535c3bfb --- /dev/null +++ b/user_manual_de/pim/sync_osx.rst @@ -0,0 +1,50 @@ +Synchronizing with OS X +======================= + +To use Nextcloud with iCal you will need to use the following URL:: + + https://example.com/remote.php/dav/principals/users/USERNAME/ + +The setup is basically the same as with iOS using the path ``https://example.com/remote.php/dav/principals/users/USERNAME/`` +to sync with Nextcloud. For OS X 10.7 Lion and 10.8 Mountain Lion everything works +fine, but OS X 10.6 (Snow Leopard) and older needs some fiddling to work. A user +contributed the following: + +#. Make sure, addressbook is not running. If it is, select the windows and press +Command + Q to terminate it. +#. Navigate to **/Users/YOUR\_USERNAME/Library/Application Support/AddressBook/Sources**. +If you already have some kind of addressbook setup, it is likely you will see +some folders named like this **BEA92826-FBF3-4E53-B5C6-ED7C2B454430**. +Note down what folders there are now and leave the window open. +#. Open addressbook and try to add a new CardDav addressbook. At this point, it +does not matter what information you enter. It will come up with the same error +message you mentioned before when you click "Create". Ignore it and click "Create" +again. A non-functional addressbook will be added. +#. Close addressbook again using Command + Q +#. Go back to the folder window from step 2. You will now see a newly created folder +with another long string as its name. +#. Navigate to the newly created folder and edit the **Configuration.plist** with +your favorite text editor. +#. Search for a section looking like this:: + + servername https://:0(null) username Whatever_you_entered_before + +8. Make it look like this. Please note that the :443 after **example.com** is important:: + + servernamehttps://example.com:443/nextcloud/remote.php/dav/principals/users/USERNAME usernameusername + +9. Save the file and open addressbook again. It will not work yet. + +10. Open the preferences for your Nextcloud CardDAV-Account and enter your password. + +11. You may have to restart addressbook once more. After this, it should work. + +If it's still not working, have a look at the :doc:`troubleshooting` and +`Troubleshooting Contacts & Calendar`_ guides. + +There is also an easy `HOWTO`_ in the forum. + + +.. _HOWTO: https://forum.owncloud.org/viewtopic.php?f=3&t=132 +.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.org/server/11/admin_manual/issues/index.html#troubleshooting-contacts-calendar +.. TODO ON RELEASE: Update version number above on release diff --git a/user_manual_de/pim/sync_thunderbird.rst b/user_manual_de/pim/sync_thunderbird.rst new file mode 100644 index 000000000..1d4791bc8 --- /dev/null +++ b/user_manual_de/pim/sync_thunderbird.rst @@ -0,0 +1,44 @@ +Thunderbird - Synchronize Addressbook +===================================== + +Addressbook +----------- + +As someone who is new to Nextcloud, New to SoGo Connector, and new to Thunderbird Addressbook... here is what you need in excruciating pithy detail to make this work (for all the other lost souls out there): + +#. `Thunderbird `_ for your OS unless it comes with your OS distribution (Linux) +#. `Sogo Connector `_ (latest release) +#. `Lightning `_ (a Thunderbird calendar add-on. At the time (Aug 14), syncing your contacts only works with this add-on installed.) + +With an installed Thunderbird mailtool, an installed SoGo Connector, and an installed Lightning add-on: + +#. Thunderbird Addressbook is in the Thunderbird "Tools" Menu +#. In the Thunderbird Addressbook application: + + - "File > New > **Remote Addressbook**" (SoGo Connector added this) + - "**Name:**" is the name you want to give your Addressbook in the Thunderbird addressbook bar area + - "**URL:**" is found in your Nextcloud Contacts area, that little Gear symbol + +.. image:: ../images/contact_thunderbird-Symbol_Gear.jpg + +in the -bottom left- of the Contacts View (same symbol as found in the -top right- in the Calendar view). Then look for a little impeller symbol + +.. image:: ../images/contact_thunderbird-Symbol_Impeller.jpg + +which will display the URL you need for your installation to work. + +.. image:: ../images/contact_thunderbird-URL_config.jpg + +Once installed, synchronize (right click on your newly made remote address book and select "Synchronize"). +You'll see your address book populate from Nextcloud! Don't click "read only" above unless you don't want to +modify your Nextcloud server addressbook, like it contains a listing of corporate contacts and is shared with +lots of people, and you don't want a new user dragging it somewhere unintended. + +The rest of the details of dealing with Thunderbird addressbook are left to the reader... First thing I learned +is dragging a contact to a different addressbook is a "move" operation. If you are worried about losing the +contact, save it to a VCF file using Nextcloud (Or LDIF using Thunderbird Addressbook) first! Like dragging +from "Nextcloud Addressbook" to "Personal Address Book" removes the contact from Nextcloud Server +(*deleting it from all the other synchronized installations*) and puts it in your Local Machine -only- +Address Book. So be careful or you'll have unintended consequences where you might have intended a "copy" operation. + +Contact *Pictures* are also sync'ed! diff --git a/user_manual_de/pim/troubleshooting.rst b/user_manual_de/pim/troubleshooting.rst new file mode 100644 index 000000000..3f870468b --- /dev/null +++ b/user_manual_de/pim/troubleshooting.rst @@ -0,0 +1,17 @@ +=============== +Troubleshooting +=============== + +BlackBerry OS 10.2 +------------------ + +BlackBerry OS up to 10.2.2102 does not accept a URL with protocol ``https://`` +in front of the server address. It will always tell you that it cannot login on +your server. So instead of writing:: + + https://example.com/remote.php/dav/principals/users/USERNAME/ + +in the server address field, you have to write:: + + example.com/remote.php/dav/principals/users/USERNAME/ + \ No newline at end of file diff --git a/user_manual_de/session_management.rst b/user_manual_de/session_management.rst new file mode 100644 index 000000000..9ab56b9f3 --- /dev/null +++ b/user_manual_de/session_management.rst @@ -0,0 +1,44 @@ +===================================== +Manage Connected Browsers and Devices +===================================== + +The personal settings page allows you to have an overview on the connected +browsers and devices. + +Managing Connected Browsers +=========================== +In the list of connected browsers you see which browsers connected to your +account recently: + +.. figure:: images/settings_sessions.png + :alt: List of browser sessions. + +You can use the trash icon to disconnect any of the browsers in the list. + +Managing Devices +================ +In the list of connected devices you see all the devices and clients you +generated a device password for and their last activity: + +.. figure:: images/settings_devices.png + :alt: List of connected devices. + +You can use the trash icon to disconnect any of the devices in the list. + +At the bottom of the list you find a button to create a new device-specific +password. You can choose a name to identify the token later. The generated +password is used for configuring the new client. Ideally, generate individual +tokens for every device you connect to your account, so you can disconnect +those individually if necessary. + +.. figure:: images/settings_devices_add.png + :alt: Adding a new device. + +.. note:: You have only access to the device password when creating it, + Nextcloud will not save the plain password, hence it's recommended to + enter the password on the new client immediately. + + +.. note:: If you are :doc:`user_2fa` for your account, + device-specific passwords are the only way to configure clients. The + client will deny connections of clients using your login password then. diff --git a/user_manual_de/user_2fa.rst b/user_manual_de/user_2fa.rst new file mode 100644 index 000000000..3fbd3984b --- /dev/null +++ b/user_manual_de/user_2fa.rst @@ -0,0 +1,72 @@ +=============================== +Using two-factor authentication +=============================== + +Two-factor authentication (2FA) is a way to protect your Nextcloud account +against unauthorized access. It works by requiring two different 'proofs' of +your identity. For example, *something you know* (like a password) and +*something you have* like a physical key. Typically, the first factor is a +password like you already have and the second can be a text message you +receive or a code you generate on your phone or another device +(*something you have*). Nextcloud supports a variety of 2nd factors and +more can be added. + +Once a two-factor authentication app has been enabled by your administrator +you can enable and configure it in :doc:`userpreferences`. Below you can +see how. + +Configuring two-factor authentication +===================================== +In your Personal Settings look up the Second-factor Auth setting. In this +example this is TOTP, a Google Authenticator compatible time based code. + +.. figure:: images/totp_enable.png + :alt: TOTP configuration. + +You will see your secret and a QR code which can be scanned by the TOTP app +on your phone (or another device). Depending on the app or tool, type in the +code or scan the QR and your device will show a login code which changes +every 30 seconds. + +Recovery codes in case you lost your 2nd factor +=============================================== +You should always generate backup codes for 2FA. If your 2nd factor device +gets stolen or is not working, you will be able to use one of these codes to +unlock your account. It effectively functions as a backup 2nd factor. To +get the backup codes, go to your Personal Settings and look under Second-factor +Auth settings. Choose *Generate backup codes*. + +.. figure:: images/2fa_backupcode_1.png + :alt: 2FA backup code generator + +You will then be presented with a list of one-time-use backup codes. + +.. figure:: images/2fa_backupcode_2.png + :alt: 2FA backup codes + +You should put these codes in a safe spot, somewhere you can find them. Don't +put them together with your 2nd factor like your mobile phone but make sure that +if you lose one, you still have the other. Keeping them at home is probably +the best thing to do. + +Logging in with two-factor authentication +========================================= +After you have logged out and need to log in again, you will see a request to +enter the TOTP code in your browser. Just enter your code: + +.. figure:: images/totp_login_2.png + :alt: Entering TOTP code at login. + +If the code was correct you will be redirected to your Nextcloud account. + +.. note:: Since the code is time-based, it’s important that your server’s and +your smartphone’s clock are almost in sync. A time drift of a few seconds +won’t be a problem. + +Using client applications with two-factor authentication +======================================================== +Once you have enabled 2FA, your clients will no longer be able to connect with +just your password unless they also have support for two-factor authentication. +To solve this, you should generate device specific passwords for them. See +:doc:`session_management` for more information on how to do this. + diff --git a/user_manual_de/userpreferences.rst b/user_manual_de/userpreferences.rst new file mode 100644 index 000000000..c93fc8d8f --- /dev/null +++ b/user_manual_de/userpreferences.rst @@ -0,0 +1,45 @@ +======================== +Setting Your Preferences +======================== + +As a user, you can manage your personal settings. + +To access your personal settings: + +1. Clicking on your username in the top, right corner of your Nextcloud instance. + + The Personal Settings Menu opens. + + .. figure:: images/oc_personal_settings_dropdown.png + :alt: screenshot of user menu at top-right of Nextcloud Web GUI + + *Personal Settings Menu* + +2. Choose *Personal* from the drop down menu. + + .. figure:: images/personal_settings.png + :alt: screenshot of user's Personal settings page + +.. note:: If you are an administrator, you can also manage users and administer + the server. These links do not appear to a non-admin user. + +The options listed in the Personal Settings Page depend on the applications that +are enabled by the administrator. Some of the features you will see +include the following. + +* Usage and available quota +* Manage your profile picture. +* Full name. You can make this anything you want, as it is separate from your + Nextcloud login name, which is unique and cannot be changed. +* Email address. +* Lists your Group memberships. +* Manage your password. +* :doc:`user_2fa`. +* :doc:`userpreferences`. +* Choose the language for your Nextcloud interface. +* Links to desktop and mobile apps. +* Manage your Activity stream and notifications. +* Default folder to save new documents to. +* Your Federated sharing ID. +* Social sharing links. +* Nextcloud version. diff --git a/user_manual_de/webinterface.rst b/user_manual_de/webinterface.rst new file mode 100644 index 000000000..70d1220bc --- /dev/null +++ b/user_manual_de/webinterface.rst @@ -0,0 +1,82 @@ +=========================== +The Nextcloud Web Interface +=========================== + +You can connect to your Nextcloud server using any Web browser; just point it to +your Nextcloud server and enter your username and password. Supported Web +browsers are: + +* Firefox 14+ +* Chrome 18+ +* Safari 7+ +* IE11+ +* Microsoft Edge + + .. figure:: images/oc_connect.png + :alt: Nextcloud login screen. + +.. note:: Some apps like ``files_external`` or ``encryption`` will disable + the **Stay logged in** checkbox. + +Navigating the Main User Interface +---------------------------------- + +By default, the Nextcloud Web interface opens to your Files page. You can add, +remove, and share files, and make changes based on the access privileges set by +you (if you are administering the server) or by your server administrator. + +.. figure:: images/files_page.png + :scale: 75% + :alt: The main Files view. + +The Nextcloud user interface contains the following fields and functions: + +* **Apps Selection Menu**: Located in the upper left corner, click the arrow to + open a dropdown menu to navigate to your various available apps. + +* **Apps Information** field: Located in the left sidebar, this provides + filters and tasks associated with your selected app. For example, when you + are using the Files apps you have a special set of filters for quickly + finding your files, such as files that have been shared with you, and files + that you have shared with others. You'll see different items for other apps. + +* **Application View**: The main central field in the Nextcloud user interface. + This field displays the contents or user features of your selected app. + +* **Navigation Bar**: Located over the main viewing window (the Application + View), this bar provides a type of breadcrumbs navigation that enables you to + migrate to higher levels of the folder hierarchy up to the root level (home). + +* **New** button: Located in the Navigation Bar, the ``New`` button + enables you to create new files, new folders, or upload files. + +.. note:: You can also drag and drop files from your file manager into the + Nextcloud Files Application View to upload them to Nextcloud. Currently, + the only Web browsers that support drag-and-drop folders are Chrome and + Chromium. + +* **Search** field: Click on the magnifier in the upper right hand corner of + to search for files. + +* **Gallery** button. This looks like four little squares, and takes you + directly to your image gallery. + +* **Personal Settings** menu: Click on your Nextcloud username, located to the + right of the Search field, to open your Personal Settings dropdown menu. Your + Personal page provides the following settings and features: + + * Links to download desktop and mobile apps + * Re-run the First Run Wizard + * Server usage and space availability + * Password management + * Name, email, and profile picture settings + * Manage connected browsers and devices + * Group memberships + * Interface language settings + * Manage notifications + * Federated Cloud ID + * Social media sharing buttons + * SSL certificate manager + * Nextcloud Version information + +See :doc:`userpreferences` section to learn more about these settings. diff --git a/user_manual_de/whats_new.rst b/user_manual_de/whats_new.rst new file mode 100644 index 000000000..ce9e18be0 --- /dev/null +++ b/user_manual_de/whats_new.rst @@ -0,0 +1,7 @@ +=========================================== +What's New for Users in Nextcloud |version| +=========================================== + +* Option to hide or expose hidden files in the Web GUI + +