fixed small spelling mistakes

This commit is contained in:
Bernhard Posselt
2013-01-26 00:25:29 +01:00
parent b032cee558
commit 06f9cbc281
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ To get started you'll need to clone the basic git repositories into your web dir
git clone https://github.com/owncloud/3rdparty.git 3rdparty
sudo chmod o-rw /var/www
Now restart your apache server and get ready to set up owncloud at http://localhost/owncloud
Now restart your apache server and get ready to set up ownCloud at http://localhost/owncloud
Enable debugging mode
---------------------

View File

@@ -3,11 +3,11 @@ Routes
.. sectionauthor:: Bernhard Posselt <nukeawhale@gmail.com>
PHP usually treats the URL like a filepath. This is easy for beginners but gets more complicated if a good architecture is required. Should it
PHP usually treats the URL like a filepath. This is easy for beginners but gets more complicated if a good architecture is required. For instance if an URL should call a certain function/method or if values should be extracted from the URL.
Routing connects your URLs with your controller methods and allows you to create constant and nice URLs. It also makes easy to extract values from the URLs.
Owncloud uses `Symphony Routing <http://symfony.com/doc/2.0/book/routing.html>`_
ownCloud uses `Symphony Routing <http://symfony.com/doc/2.0/book/routing.html>`_
Routes are declared in :file:`appinfo/routes.php`