diff --git a/developer_manual/apps.rst b/developer_manual/apps.rst deleted file mode 100644 index 336b82243..000000000 --- a/developer_manual/apps.rst +++ /dev/null @@ -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 diff --git a/developer_manual/index.rst b/developer_manual/index.rst index 35d2f87f6..e5fb77e0b 100644 --- a/developer_manual/index.rst +++ b/developer_manual/index.rst @@ -16,7 +16,6 @@ Contents security vcategories routing - apps guidelines codereviews kanban diff --git a/developer_manual/tutorial.rst b/developer_manual/tutorial.rst index 4d9179d31..4ddc7575e 100644 --- a/developer_manual/tutorial.rst +++ b/developer_manual/tutorial.rst @@ -126,8 +126,26 @@ The second place where app specifc information is stored is in :file:`appinfo/in AGPL Your Name 4 + + + + + true + +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 -----------