Skip to content

Commit

Permalink
Changelog and WebAppCommand help additions.
Browse files Browse the repository at this point in the history
  • Loading branch information
resurtm committed Jul 26, 2012
1 parent 629540b commit 06b59f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ Version 1.1.11 work in progress
- Enh: Added zii romanian(ro) translation; edited core messages to include proper romanian characters with diacritic marks (tudorilisoi)
- Enh: Added ILogFilter interface as an alternative to using CLogFilter as base class for implementing log filters (cebe)
- Enh: CAssetManager, added $forceCopy property which globally forces publication of asset files and directories (resurtm)
- Enh: WebAppCommand has ability to generate fresh application with git or hg specific files (resurtm)
- Enh: Gii default templates: added additional metadata (PHPDoc) of the variables passed into views for better IDE autocompletion (resurtm)
- Chg #440: Upgraded JQuery UI to 1.8.22 (samdark)
- Chg #497: Added log component and preloaded it in default console application config in order to properly log errors (samdark)
Expand Down
7 changes: 5 additions & 2 deletions framework/cli/commands/WebAppCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function getHelp()
{
return <<<EOD
USAGE
yiic webapp <app-path> <vcs>
yiic webapp <app-path> [<vcs>]
DESCRIPTION
This command generates an Yii Web Application at the specified location.
Expand All @@ -34,7 +34,10 @@ public function getHelp()
* app-path: required, the directory where the new application will be created.
If the directory does not exist, it will be created. After the application
is created, please make sure the directory can be accessed by Web users.
* vcs: optional, git or hg supported
* vcs: optional, version control system you're going to use in the new project.
Application generator will create all needed files to the specified VCS
(such as .gitignore, .gitkeep, etc.). Possible values: git, hg. Do not
use this argument if you're going to create VCS files yourself.
EOD;
}
Expand Down

0 comments on commit 06b59f7

Please sign in to comment.