integrated apps.rst into the tutorial

This commit is contained in:
Bernhard Posselt
2013-01-23 13:45:55 +01:00
parent cbfe3a0288
commit c57c8bccbf
3 changed files with 18 additions and 23 deletions

View File

@@ -1,22 +0,0 @@
Apps Development
================
Supported App Types
-------------------
ownCloud allows to specify three kind of "types" in the info.xml of a app. The
type doesn't have to be specified if the app doesn't match any of them.
Currently supported "types":
**prelogin**
apps which needs to load on the login page
**filesystem**
apps which provides filesystem functionality (e.g. files sharing app)
**authentication**
apps which provided authentication backends
**logging**
apps which implement a logging system

View File

@@ -16,7 +16,6 @@ Contents
security
vcategories
routing
apps
guidelines
codereviews
kanban

View File

@@ -126,8 +126,26 @@ The second place where app specifc information is stored is in :file:`appinfo/in
<licence>AGPL</licence>
<author>Your Name</author>
<require>4</require>
<standalone/>
<types>
<filesystem/>
</types>
<shipped>true</shipped>
<default_enable/>
</info>
ownCloud allows to specify four kind of "types" in the file:`appinfo/info.xml` of a app. The
type doesn't have to be specified if the app doesn't match any of them.
Currently supported "types":
* **prelogin**: apps which needs to load on the login page
* **filesystem**: apps which provides filesystem functionality (e.g. files sharing app)
* **authentication**: apps which provided authentication backends
* **logging**: apps which implement a logging system
Classloader
-----------