Merge pull request #748 from owncloud/tutorial

Tutorial
This commit is contained in:
Bernhard Posselt
2015-01-11 10:14:05 +01:00
3 changed files with 1029 additions and 3 deletions

View File

@@ -7,6 +7,7 @@
:maxdepth: 2
:hidden:
tutorial
startapp
init
info
@@ -50,12 +51,16 @@ Before starting to write an app please read the security and coding guidelines:
* :doc:`../general/security`
* :doc:`../general/codingguidelines`
After this you can start to write your first app:
After this you can start with the tutorial
* :doc:`startapp`
* :doc:`tutorial`
App development
===============
Create a new app:
* :doc:`startapp`
Inner parts of an app:
* :doc:`init`

View File

@@ -172,7 +172,7 @@ can be abbreviated by using the **resources** key:
$application = new Application();
$application->registerRoutes($this, array(
'resources' => array(
array('author' => array('url' => '/authors'))
'author' => array('url' => '/authors')
),
'routes' => array(
// your other routes here

File diff suppressed because it is too large Load Diff