repo created
168
user_manual/Makefile
Normal file
|
|
@ -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 <target>' where <target> 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='owncloud_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."
|
||||
240
user_manual/android_app.rst
Normal file
|
|
@ -0,0 +1,240 @@
|
|||
===============================
|
||||
Using the Nextcloud Android App
|
||||
===============================
|
||||
|
||||
Accessing your files on your Nextcloud server via the Web interface is easy and
|
||||
convenient, as you can use any Web browser on any operating system without
|
||||
installing special client software. However, the Nextcloud Android app offers
|
||||
some advantages over the Web interface:
|
||||
|
||||
* A simplified interface that fits nicely on a tablet or smartphone
|
||||
* Automatic synchronization of your files
|
||||
* Share files with other Nextcloud users and groups, and create public share
|
||||
links
|
||||
* Instant uploads of photos or videos recorded on your Android device
|
||||
* Easily add files from your device to Nextcloud
|
||||
* Two-factor authentication
|
||||
|
||||
New In Version 1.0.0
|
||||
--------------------
|
||||
|
||||
This release contains a number of improvements, including:
|
||||
|
||||
* View status of uploads and manage failures
|
||||
* Federated sharing is now supported with users on Nextcloud servers
|
||||
* UI improvements, following Material Design lines
|
||||
* Share-by-link folders are editable
|
||||
* Instant uploads automatically stop when Wifi connection is interrupted
|
||||
* Server certificate warnings are supported
|
||||
* Improvement when other apps send files to Nextcloud
|
||||
* Bug fixes
|
||||
|
||||
Upgrading
|
||||
---------
|
||||
|
||||
When you download your Nextcloud Android App from the Google Play store, it will
|
||||
be upgraded just like any other Play Store app, according to your settings on
|
||||
your Android device. It will either upgrade automatically, or give you a
|
||||
notification than an upgrade is available.
|
||||
|
||||
If you are using an Nextcloud Android app from a custom repository, e.g. your
|
||||
employer, then you will upgrade according their policies.
|
||||
|
||||
Getting the Nextcloud Android App
|
||||
---------------------------------
|
||||
|
||||
One way to get your Nextcloud Android app is to log into your Nextcloud server
|
||||
from your Android device using a Web browser such as Chrome, Firefox, or
|
||||
Dolphin. The first time you log in to a new Nextcloud account you'll see a screen
|
||||
with a download link to the Nextcloud app in the `Google Play store
|
||||
<https://play.google.com/store/apps/details?id=com.nextcloud.client>`_.
|
||||
|
||||
.. figure:: images/android-1.png
|
||||
:alt: Android app new account welcome screen.
|
||||
|
||||
You will also find these links on your Personal page in the Nextcloud Web interface.
|
||||
|
||||
Find source code and more information from the `Nextcloud download page
|
||||
<https://nextcloud.com/install/#mobile>`_.
|
||||
|
||||
Users of customized Nextcloud Android apps, for example from their employer,
|
||||
should follow their employer's instructions.
|
||||
|
||||
Connecting to Your Nextcloud Server
|
||||
-----------------------------------
|
||||
|
||||
The first time you run your Nextcloud Android app it opens to a configuration
|
||||
screen. Enter your server URL, login name, password, and click the Connect
|
||||
button. (Click the eyeball to the right of your password to expose your
|
||||
password.)
|
||||
|
||||
.. figure:: images/android-2.png
|
||||
:alt: New account creation screen.
|
||||
|
||||
For best security your Nextcloud server should be TLS-enabled, so that you can
|
||||
connect via ``https``. The Nextcloud app will test your connection as soon as
|
||||
you enter it and tell you if you entered it correctly. If your server has a
|
||||
self-signed SSL certificate you'll get a warning that it is not to be
|
||||
trusted. Click the OK button to accept the certificate and complete your account
|
||||
setup.
|
||||
|
||||
.. figure:: images/android-3.png
|
||||
:alt: SSL certificate warning.
|
||||
|
||||
Managing Files
|
||||
--------------
|
||||
|
||||
Now you should see the Files page of your Nextcloud account. Note some
|
||||
differences from the previous release: click the blue button at the bottom
|
||||
right to expose the **Upload**, **Content from other apps**, and **New folder**
|
||||
buttons.
|
||||
|
||||
Use the **Upload** button to add files to your Nextcloud account from your
|
||||
Android filesystem. Use **Content from other apps** to upload files from
|
||||
Android apps, such as the Gallery app.
|
||||
|
||||
.. figure:: images/android-4.png
|
||||
:alt: Your Nextcloud Files page.
|
||||
|
||||
Click the overflow button at the top right (that's the one with three vertical
|
||||
dots) to open a user menu. **Grid view** toggles between grid and list
|
||||
view. **Refresh account** syncs with the server, and **Sort**
|
||||
gives you the option to sort your files by date, or alphabetically.
|
||||
|
||||
.. figure:: images/android-6.png
|
||||
:alt: Top-right menu.
|
||||
|
||||
The Nextcloud menu at the top left shows the name of the logged-in user, has a
|
||||
shortcut to your files, the **Uploads** button, and the **Settings** button.
|
||||
|
||||
The Uploads page displays the status of files currently uploading, a list of
|
||||
your recently-uploaded files, and a Retry option for any failed uploads. If
|
||||
credentials to access the file have changed, you'll see a credentials error.
|
||||
Tap the file to retry, and you'll get a login screen to enter the new
|
||||
credentials.
|
||||
|
||||
If the upload fails because you're trying to upload to a folder that you do not
|
||||
have permission to access, you will see a "Permissions error". Change the
|
||||
permissions on the folder and retry the upload, or cancel and then upload the
|
||||
file to a different folder.
|
||||
|
||||
.. figure:: images/android-15.png
|
||||
:alt: Top-left menu.
|
||||
|
||||
All files (that you have permission to access) on your Nextcloud server are
|
||||
displayed in your Android app, but are not downloaded until you click on them.
|
||||
Downloaded files are marked with a green arrow.
|
||||
|
||||
.. figure:: images/android-8.png
|
||||
:alt: Downloaded files are marked with green arrows.
|
||||
|
||||
Download and view a file with a short press on the filename. Then a short
|
||||
press on the overflow button opens a menu with options for managing your file.
|
||||
|
||||
.. figure:: images/android-9.png
|
||||
:alt: File management options. Betsy Ross says "Don't believe everything you
|
||||
read on the Internet."
|
||||
|
||||
When you are on your main Files page, a long press on any file or folder
|
||||
displays a list of options: **Share**, **Open With**, **Synchronize**,
|
||||
**Rename**, **Move**, **Copy**, **Remove**, **Send**, **Favorite**, and
|
||||
**Details**.
|
||||
|
||||
.. figure:: images/android-11.png
|
||||
:alt: Folder and file management options.
|
||||
|
||||
Click **Share** to share files. You can share with other Nextcloud users and
|
||||
groups, and create public share links. If your Nextcloud server administrator
|
||||
has enabled username auto-completion, when you start typing user or group names
|
||||
they will auto-complete. After you have shared files, click the **Share** button
|
||||
to see who you have shared with, and to remove shares.
|
||||
|
||||
.. figure:: images/android-12.png
|
||||
:alt: Sharing files.
|
||||
|
||||
Create a Federated share link by clicking **Add User or Group** and entering
|
||||
the username and remote URL of the person you want to share with in this
|
||||
format: user@domain.com. You don't have to guess; the Personal page in the
|
||||
Nextcloud Web GUI tells the exact Federated Cloud ID. Just ask them to copy and
|
||||
paste and send it to you.
|
||||
|
||||
.. figure:: images/android-14.png
|
||||
:alt: Federated share creation.
|
||||
|
||||
Settings
|
||||
--------
|
||||
|
||||
Use the **Settings** screen to control your Nextcloud app functions.
|
||||
|
||||
.. figure:: images/android-10.png
|
||||
:alt: Setting screen.
|
||||
|
||||
In the **Accounts** section you can set up and manage multiple accounts.
|
||||
|
||||
The **Security** section sets up strong two-factor authentication by allowing
|
||||
you to add a PIN (personal identification number) to access your account.
|
||||
|
||||
The **Instant Uploads** section creates a directory, :file:`/InstantUpload`, and
|
||||
any photos or videos created with your Android device's camera are instantly
|
||||
uploaded to this directory. You also have the option to choose any other
|
||||
existing directory, or to create a new one. Another nice option is **Upload
|
||||
Pictures/Video via WiFi Only**, to conserve your mobile data usage.
|
||||
|
||||
The bottom section of the **Settings** screen has links to **Help**,
|
||||
**Recommend to a friend**, **Feedback**, and the version number.
|
||||
|
||||
Removing/Logging Out
|
||||
--------------------
|
||||
|
||||
On your Settings page, a long press on an account name opens a dialog to
|
||||
**Change password** or **Remove account**. **Change password** is, of course,
|
||||
changing your password.
|
||||
|
||||
**Remove account** logs you out of the server, removes your account settings,
|
||||
and removes your files from your Android device. It does not change anything on
|
||||
the server. There is no logout function that simply logs out of your account
|
||||
and leaves all your files on your Android device. If you want extra security,
|
||||
you can set a login PIN on your Android device, and also on your Nextcloud
|
||||
account. If you are using a shared Android device, other users can access your
|
||||
files in the file manager if you are sharing a single user account, so you
|
||||
could set up multiple user accounts to protect your files.
|
||||
|
||||
.. figure:: images/android-13.png
|
||||
:alt: Change password or remove account dialog.
|
||||
|
||||
|
||||
Sync calendar and contacts
|
||||
--------------------------
|
||||
|
||||
The Nextcloud Android app provides an integration to setup a sync of Androids
|
||||
calendars and contacts with the Nextcloud server. To set this up go to the
|
||||
Nextcloud app and open the settings via the left menu. Scroll down there to the
|
||||
entry "Sync calendar & contacts".
|
||||
|
||||
.. figure:: images/davdroid-1-button-in-nextcloud-app.png
|
||||
:alt: Menu entry "Sync calendar & contacts"
|
||||
|
||||
When clicking this and the DAVDroid app is not installed it will open the
|
||||
Google Play Store or the F-Droid store to let you install this app (if none of
|
||||
them is installed the DAVDroid website is opened). This app provides the sync
|
||||
mechanism for the calendars and contacts.
|
||||
|
||||
.. figure:: images/davdroid-2-install-davdroid.png
|
||||
:alt: DAVDroid app
|
||||
|
||||
When clicking the menu entry "Sync calendar & contacts" and the DAVDroid app is
|
||||
installed it will open the configuration of the DAVDroid app prefilled with the
|
||||
account information from the Nextcloud app. You only need to specify the
|
||||
password.
|
||||
|
||||
.. figure:: images/davdroid-3-enter-password.png
|
||||
:alt: DAVDroid app configuration
|
||||
|
||||
After entering the password you need to specify an email address that is used as
|
||||
owner for calendar events you create.
|
||||
|
||||
.. figure:: images/davdroid-4-specify-owner-email.png
|
||||
:alt: DAVDroid app configuration for the owners email address
|
||||
|
||||
Now the sync is set up and your phones calendars and contacts are synced with the
|
||||
Nextcloud server.
|
||||
292
user_manual/conf.py
Normal file
|
|
@ -0,0 +1,292 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# ownCloud Documentation documentation build configuration file, created by
|
||||
# sphinx-quickstart on Mon Oct 22 23:16:40 2012.
|
||||
#
|
||||
# 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 os, inspect
|
||||
|
||||
# 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('.'))
|
||||
|
||||
#path to this script
|
||||
scriptpath = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
|
||||
|
||||
# -- 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']
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = [scriptpath+'/ocdoc/_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 = 'index'
|
||||
|
||||
# The short X.Y.Z version.
|
||||
version = '1.0.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '1.0.0'
|
||||
|
||||
# General information about the project.
|
||||
project = u'Nextcloud Android App %s Manual' % (version)
|
||||
copyright = u'2016, The Nextcloud developers'
|
||||
|
||||
# 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 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','scripts/*', 'ocdoc/*']
|
||||
|
||||
# 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 = [scriptpath+'/ocdoc/_shared_assets/themes']
|
||||
|
||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||
# a list of builtin themes.
|
||||
#html_theme = 'bootstrap'
|
||||
html_theme = 'default'
|
||||
# The name for this set of Sphinx documents. If None, it defaults to
|
||||
# "<project> v<release> documentation".
|
||||
#html_title = None
|
||||
|
||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
||||
html_short_title = "Android App Manual"
|
||||
|
||||
# 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 = [scriptpath+'/ocdoc/_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 <link> 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 = 'ownCloudAndroidAppManual'
|
||||
|
||||
|
||||
# -- 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 = [
|
||||
('index', 'NextcloudAndroidAppManual.tex', u'Nextcloud Android App Manual',
|
||||
u'The Nextcloud developers', 'manual'),
|
||||
]
|
||||
|
||||
# The name of an image file (relative to this directory) to place at the top of
|
||||
# the title page.
|
||||
#latex_logo = None
|
||||
|
||||
# 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 manual page output --------------------------------------------
|
||||
|
||||
# One entry per manual page. List of tuples
|
||||
# (source start file, name, description, authors, manual section).
|
||||
man_pages = [
|
||||
('nextcloud.1', 'nextcloud', u'Android synchronisation and file management utility.',
|
||||
[u'The Nextcloud developers'], 1),
|
||||
('nextcloudcmd.1', 'nextcloudcmd', u'Nextcloud Android app.',
|
||||
[u'The Nextcloud developers'], 1),
|
||||
]
|
||||
|
||||
# If true, show URL addresses after external links.
|
||||
man_show_urls = True
|
||||
|
||||
|
||||
# -- 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 = [
|
||||
('index', 'NextcloudClientManual', u'ownCloud Android App Manual',
|
||||
u'The Nextcloud developers', 'ownCloud', 'The ownCloud Android App Manual.',
|
||||
'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 Android App Manual'
|
||||
epub_author = u'The Nextcloud developers'
|
||||
epub_publisher = u'The Nextcloud developers'
|
||||
epub_copyright = u'2016, The Nextcloud developers'
|
||||
|
||||
# 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
|
||||
BIN
user_manual/images/android-1.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
user_manual/images/android-10.png
Executable file
|
After Width: | Height: | Size: 109 KiB |
BIN
user_manual/images/android-11.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
user_manual/images/android-12.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
user_manual/images/android-13.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
user_manual/images/android-14.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
user_manual/images/android-15.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
user_manual/images/android-2.png
Executable file
|
After Width: | Height: | Size: 90 KiB |
BIN
user_manual/images/android-3.png
Executable file
|
After Width: | Height: | Size: 90 KiB |
BIN
user_manual/images/android-4.png
Executable file
|
After Width: | Height: | Size: 162 KiB |
BIN
user_manual/images/android-5.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
user_manual/images/android-6.png
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
BIN
user_manual/images/android-8.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
user_manual/images/android-9.png
Normal file
|
After Width: | Height: | Size: 258 KiB |
BIN
user_manual/images/davdroid-1-button-in-nextcloud-app.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
user_manual/images/davdroid-2-install-davdroid.png
Normal file
|
After Width: | Height: | Size: 124 KiB |
BIN
user_manual/images/davdroid-3-enter-password.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
user_manual/images/davdroid-4-specify-owner-email.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
9
user_manual/index.rst
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
.. _contents:
|
||||
|
||||
Nextcloud Android App Manual
|
||||
============================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
android_app
|
||||
202
user_manual/make.bat
Normal file
|
|
@ -0,0 +1,202 @@
|
|||
@ECHO OFF
|
||||
|
||||
REM SPDX-FileCopyrightText: 2015 Carla Schroder
|
||||
REM SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
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 ^<target^>` where ^<target^> 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
|
||||