68c30c1034
Replace aliases of functions
2015-06-29 22:59:22 +03:00
39cb131984
Spelling and sc fixes
2015-06-16 23:53:12 +03:00
63f9ec4da6
Fixed formatting
2015-06-10 13:39:47 +02:00
c0c3fa79af
Merge branch '8625-message-controller-mark-unused' of https://github.com/marius7383/yii2 into marius7383-8625-message-controller-mark-unused
...
Conflicts:
framework/CHANGELOG.md
2015-06-10 13:33:20 +02:00
d34d890a32
PSR-2 if-else statement
2015-06-09 00:10:09 +03:00
ae42a054bb
PSR-2 spaces, commas, etc
2015-06-09 00:05:06 +03:00
fcb45848dd
The formatting value must be array
2015-06-08 16:04:15 +03:00
fff61bf99b
- Reworked order of parameters in order to keep backwards compatibility
...
- Update statement of unused messages in DB now depends on $markUnused parameter
2015-06-08 10:11:15 +02:00
0dcb50db5e
- i18n MessageController now supports config parameter 'markUnused' that turns adding @@s either on or off
2015-06-08 10:11:13 +02:00
4851d7f9e3
Fixes #8574 : Added yii\console\controllers\MessageController support .pot file creation
2015-05-31 12:40:46 +03:00
47bcd020ff
fixed bug in console controller
...
pass correct action name to options when $id is empty (default action)
2015-05-27 12:47:09 +02:00
adb0460ee1
yii\console\controllers\MessageController now sorts created messages, even if there is no new one, while saving to PHP file
2015-05-13 16:08:36 +03:00
72ec914992
yii\console\controllers\MessageController improved allowing extraction of nested translator calls
2015-05-13 15:49:00 +03:00
a0b5652673
yii\console\controllers\MessageController::saveMessagesToDb() updated to use yii\db\Schema::insert()
2015-04-24 15:34:46 +03:00
ef662b57be
added missing @since annotations
2015-04-24 12:09:40 +02:00
3872c6c565
Fix migrate/down order
...
Migrations were applied at the same time. This cause invalid sort order while downgrade.
Command `yii migrate `
Output:
```
Yii Migration Tool (based on Yii v2.0.4-dev)
Total 2 new migrations to be applied:
m150402_075534_initial
m150402_075544_feedback
```
Command `yii migrate/down 2`
```
Yii Migration Tool (based on Yii v2.0.4-dev)
Total 2 migrations to be reverted:
m150402_075534_initial
m150402_075544_feedback
```
In databasse
```
"m000000_000000_base";1428382302
"m150402_075534_initial";1428388855 <----
"m150402_075544_feedback";1428388855 <----
```
2015-04-07 12:01:09 +05:00
378937f8d5
yii\console\controllers\AssetController provides dependency trace in case bundle circular dependency detected
2015-04-03 19:22:42 +03:00
97c0ffc836
Creating target dir at yii\console\controllers\AssetController::buildTarget() refactored
2015-04-03 12:45:44 +03:00
e9ecdf88f9
Fixed yii\console\controllers\AssetController does not create missing folders for the target bundles
2015-04-03 12:04:57 +03:00
1713a99c79
Fixes #7924 : Migrations in history are now ordered by time applied allowing to roll back in reverse order no matter how these were applied
2015-03-31 16:56:49 +03:00
b7a29e38d9
Fixes #6895 : Added ignoreCategories config option for message command to ignore categories specified
2015-03-06 21:51:42 +03:00
08e0143c16
created Console::wrapText() to imrove console help output on small screens
2015-03-05 21:19:42 +01:00
f60da03e07
Fixes #7562 , fixes #6841 : yii help now lists all sub-commands by default
2015-03-05 19:17:22 +03:00
86891f9f82
Fixes #7358 : Fix trimming PHPDoc prefix with TAB indent in yii\console\Controller::parseDocCommentSummary()
2015-02-19 22:26:30 +03:00
2b6de9665e
adjusted docs about #7347
2015-02-19 13:44:05 +01:00
84052d15df
Used yii\di\Instance::ensure() in MigrateController instead of doing the same without it
2015-02-19 02:28:09 +03:00
a71423cf2a
Fixes #7269 : yii\console\controllers\BaseMigrateController now throws exception if directory specified doesn't exist and action isn't create
2015-02-19 02:23:45 +03:00
690b6f7e6c
'Dividing asset bundles into group' docs added
2015-02-17 12:01:06 +02:00
6481d13494
Optimized checks order in conditions
2015-02-08 17:56:36 +03:00
af7ae33d5b
Use (array) cast instead of !is_array check for both readability and performance
2015-02-08 17:56:14 +03:00
5bda2fe073
yii\console\controllers\AssetController now correctly handles relative image URLs if source and target CSS are under same directory
2015-01-29 15:44:05 +02:00
e606617a8e
Better checks for empty string in MessageController
2015-01-28 00:23:27 +03:00
aef8fdffde
fixed indentation in Cache Controller
2015-01-18 14:09:26 +01:00
9b9b361aff
Doc comments for yii\console\controllers\AssetController extended
2015-01-06 17:14:23 +02:00
94f702fe6e
yii\console\controllers\AssetController now handles bundle files from external resources properly
2015-01-06 17:03:39 +02:00
119c302033
fixed issue with UTF-8 characters in help description parsing
...
fixes #6691
2014-12-30 17:33:53 +01:00
e796d1fa27
Plain echo replaced by stdout() at yii\console\HelpController
2014-12-04 20:05:47 +02:00
a3af271edf
Color output added to yii\console\MessageController and yii\console\AssetController
2014-12-04 19:58:23 +02:00
8632882312
Plain echo replaced by stdout() at yii\console\MessageController
2014-12-04 18:37:52 +02:00
19e79ad4b4
Plain echo replaced by stdout() at yii\console\AssetController
2014-12-04 18:27:45 +02:00
9e42285f61
Reverted #3305
2014-11-28 17:13:52 +03:00
19af264530
Enh: yii fixture command now offers help if no arguments are provided instead of crashing
2014-11-28 00:32:38 +03:00
8b79293ff2
added missing @since annotations
2014-11-27 18:11:14 +01:00
5d7b70da5f
Adjusted #3305 : MigrateController::refreshSchema() is no more called automatically
2014-11-27 11:54:30 +03:00
7c5938f902
#4791 : Added more colors to yii migrate command
2014-11-27 04:03:33 +03:00
3c70d3c317
Fixes #3305 : yii migrate now automatically flushes DB schema cache after successful migration
2014-11-27 03:38:25 +03:00
eaf8ece568
Fixes #5627 : Added yii cache/flush-schema console command to flush DB schema cache of a given database connection
2014-11-27 03:06:24 +03:00
fce99c874e
Fixes #5504 : Added note to yii\console\CacheController explaining that cache components should be configured in console app configuration in order to be cleared
2014-11-23 21:56:23 +03:00
d1f72be5fc
Used echo instead of stdout not to cluttter tests
2014-11-22 02:47:02 +03:00
e88a5d9cc4
Fixes #4823 and #6005 : yii message accuracy and error handling were improved by using PHP tokenizer instead of regular expressions. Removed eval() as well.
2014-11-22 02:33:02 +03:00