diff --git a/docs/review_2011_11_12_alex.md b/docs/review_2011_11_12_alex.md index c760fae..38ffda2 100644 --- a/docs/review_2011_11_12_alex.md +++ b/docs/review_2011_11_12_alex.md @@ -35,6 +35,11 @@ where possible. > The purpose of evaluateExpression() is to provide a way of evaluating a PHP expression > in the context of an object. Will remove it before release if we find no use of it. +>> mdomba: +>> As eval() is controversial, and anonymous functions can replace all Yii 1 usage of eval() +>> how about removing it from the beginning and add it only if we find it necessary. +>> This way we would not be tempted to stick with eval() and will be forced to first try to find alternatives + ### Object::create() #### `__construct` issue diff --git a/readme.md b/readme.md index 9dd631a..2e6fcc0 100644 --- a/readme.md +++ b/readme.md @@ -16,7 +16,7 @@ directory. You shall see the following files and directories: changelog.md describing changes in every Yii release license.md license of Yii readme.md this file - updgrade.md upgrading instructions + upgrade.md upgrading instructions REQUIREMENTS @@ -38,13 +38,15 @@ QUICK START Yii comes with a command line tool called "yiic" that can create a skeleton Yii application for you to start with. -On command line, type in the following commands: +On a command line, type in the following commands: - $ cd YiiPath/framework (Linux) - cd YiiPath\framework (Windows) + for Linux + $ cd YiiPath/framework + $ ./yiic webapp ../testdrive - $ ./yiic webapp ../testdrive (Linux) - yiic webapp ..\testdrive (Windows) + for Windows + cd YiiPath\framework + yiic webapp ..\testdrive The new Yii application will be created at "YiiPath/testdrive". You can access it with the following URL: diff --git a/upgrade.md b/upgrade.md index 101001e..f93c4de 100644 --- a/upgrade.md +++ b/upgrade.md @@ -9,7 +9,7 @@ version B between A and C, you need to following the instructions for both A and B. -General upgrade intructions +General upgrade instructions --------------------------- - Make a backup.