From f4cbb1ce939a729eab88c93684847b10bbb20e40 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Sun, 4 May 2014 16:00:50 +0200 Subject: [PATCH 1/2] note about advanced app custom aliaes fixes #3342 --- docs/guide/tutorial-advanced-app.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/docs/guide/tutorial-advanced-app.md b/docs/guide/tutorial-advanced-app.md index 88f0c10495..5e7638f7a7 100644 --- a/docs/guide/tutorial-advanced-app.md +++ b/docs/guide/tutorial-advanced-app.md @@ -74,16 +74,20 @@ Root directory contains a set of files. Predefined path aliases ----------------------- -- @yii - framework directory. -- @app - base path of currently running application. -- @common - common directory. -- @frontend - frontend web application directory. -- @backend - backend web application directory. -- @console - console directory. -- @runtime - runtime directory of currently running web application. -- @vendor - Composer vendor directory. -- @web - base URL of currently running web application. -- @webroot - web root directory of currently running web application. +- `@yii` - framework directory. +- `@app` - base path of currently running application. +- `@common` - common directory. +- `@frontend` - frontend web application directory. +- `@backend` - backend web application directory. +- `@console` - console directory. +- `@runtime` - runtime directory of currently running web application. +- `@vendor` - Composer vendor directory. +- `@web` - base URL of currently running web application. +- `@webroot` - web root directory of currently running web application. + +The aliases specific to the directory structure of the advanced application +(`@common`, `@frontend`, `@backend`, `@console`) are defined in `common/config/aliases.php`. + Applications ------------ From e005017ab21de850fc8993b1ca3ad4f39399d931 Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Sun, 4 May 2014 16:01:28 +0200 Subject: [PATCH 2/2] typo --- docs/guide/tutorial-advanced-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/tutorial-advanced-app.md b/docs/guide/tutorial-advanced-app.md index 5e7638f7a7..5726cdce03 100644 --- a/docs/guide/tutorial-advanced-app.md +++ b/docs/guide/tutorial-advanced-app.md @@ -86,7 +86,7 @@ Predefined path aliases - `@webroot` - web root directory of currently running web application. The aliases specific to the directory structure of the advanced application -(`@common`, `@frontend`, `@backend`, `@console`) are defined in `common/config/aliases.php`. +(`@common`, `@frontend`, `@backend`, and `@console`) are defined in `common/config/aliases.php`. Applications