Commit 5c01e23e by mdomba (mdlap)

typos and my note

parent 2272c97f
...@@ -35,6 +35,11 @@ where possible. ...@@ -35,6 +35,11 @@ where possible.
> The purpose of evaluateExpression() is to provide a way of evaluating a PHP expression > 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. > 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() ### Object::create()
#### `__construct` issue #### `__construct` issue
......
...@@ -16,7 +16,7 @@ directory. You shall see the following files and directories: ...@@ -16,7 +16,7 @@ directory. You shall see the following files and directories:
changelog.md describing changes in every Yii release changelog.md describing changes in every Yii release
license.md license of Yii license.md license of Yii
readme.md this file readme.md this file
updgrade.md upgrading instructions upgrade.md upgrading instructions
REQUIREMENTS REQUIREMENTS
...@@ -38,13 +38,15 @@ QUICK START ...@@ -38,13 +38,15 @@ QUICK START
Yii comes with a command line tool called "yiic" that can create Yii comes with a command line tool called "yiic" that can create
a skeleton Yii application for you to start with. 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) for Linux
cd YiiPath\framework (Windows) $ cd YiiPath/framework
$ ./yiic webapp ../testdrive
$ ./yiic webapp ../testdrive (Linux) for Windows
yiic webapp ..\testdrive (Windows) cd YiiPath\framework
yiic webapp ..\testdrive
The new Yii application will be created at "YiiPath/testdrive". The new Yii application will be created at "YiiPath/testdrive".
You can access it with the following URL: You can access it with the following URL:
......
...@@ -9,7 +9,7 @@ version B between A and C, you need to following the instructions ...@@ -9,7 +9,7 @@ version B between A and C, you need to following the instructions
for both A and B. for both A and B.
General upgrade intructions General upgrade instructions
--------------------------- ---------------------------
- Make a backup. - Make a backup.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment