Nextcloud Documentation
Go to file
Lukas Reschke c0e111497e Added CSRF + Auth checks
I added the CSRF and auth checks

I'm not sure if the auth checks belong there or not but I thought it may be a nice idea to have it written down somewhere.
Feel free to add your opinion!
2012-10-29 14:59:48 +01:00
_shared_assets added owncloud theme 2012-10-28 17:41:01 +01:00
admin_manual Add LDAP doc 2012-10-28 20:01:31 +01:00
developer_manual Added CSRF + Auth checks 2012-10-29 14:59:48 +01:00
user_manual Update user_manual/connecting/webdav.rst 2012-10-28 12:07:12 -03:00
.gitignore Initial server doc layout with bootstrap theme 2012-10-27 00:05:30 +02:00
README.rst added link to php source reference 2012-10-29 12:25:01 +01:00

Owncloud Documentation
======================

This is the ownCloud documentation. It currently focuses on the server, client manuals are in the respective git repositories. Because of the complexity of the server and the split into the core and apps modules, the manuals are in this separate directory.

Style
-------

It's using the `Sphinx Documentation Generator <http://sphinx.pocoo.org/>`_. The syntax follows the `reStructuredText <http://docutils.sourceforge.net/rst.html>`_ style, and can also be edited from GitHub.

For PHP documentation you'll need to get the according language domain package. The documenation for PHP source is located at http://packages.python.org/sphinxcontrib-phpdomain/reference.html

Manuals
-------

At this point, this repository hosts three manuals:

* **Users Manual:** Covers topics from an end users Point of View
* **Administrators Manual:** Setup, Deployment, Best Practices, etc.
* **Developers Manual:** Developing Apps for ownCloud & understanding the core Architecture.

Versioning
----------

The ``master`` branch is always the development branch. If a new server version is being released, the documentation is branched.

Building
--------
First make sure that these things are installed
 - Python 2
 - Sphinx (e.g. sudo yum install python-sphinx)
 - Sphinx PHPDomain (e.g. easy_install -U sphinxcontrib-phpdomain)

then enter any manual directory, then run ``make html``. The result can be found in the ``_build/html`` subdirectory.