From 9d8683c56f7096422af277feca9e28bfacb1d1b3 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 21 Jun 2016 10:29:22 +0200 Subject: [PATCH] Change paths --- developer_manual/app/info.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/developer_manual/app/info.rst b/developer_manual/app/info.rst index 8a6ffb52a..651f108d1 100644 --- a/developer_manual/app/info.rst +++ b/developer_manual/app/info.rst @@ -174,7 +174,7 @@ specified. Valid values for the 'os' attribute are as returned by the php functi lib --- Defines a required php extension with required minimum and/or maximum version. The names for the libraries have to match the result as returned by the php function `get_loaded_extensions `_. -The explicit version of an extension is read from `phpversion `_ - with some exception as to be read up in the `code base `_ +The explicit version of an extension is read from `phpversion `_ - with some exception as to be read up in the `code base `_ os -- @@ -195,17 +195,17 @@ The following sections are just listed for reference and should not be used beca public ------ -Used to provide a public interface (requires no login) for the app. The id is appended to the URL **/owncloud/index.php/public**. Example with id set to 'calendar':: +Used to provide a public interface (requires no login) for the app. The id is appended to the URL **/nextcloud/index.php/public**. Example with id set to 'calendar':: - /owncloud/index.php/public/calendar + /nextcloud/index.php/public/calendar Also take a look at :doc:`../core/externalapi`. remote ------ -Same as public but requires login. The id is appended to the URL **/owncloud/index.php/remote**. Example with id set to 'calendar':: +Same as public but requires login. The id is appended to the URL **/nextcloud/index.php/remote**. Example with id set to 'calendar':: - /owncloud/index.php/remote/calendar + /nextcloud/index.php/remote/calendar Also take a look at :doc:`../core/externalapi`.