2202 Commits

Author SHA1 Message Date
57a448d0f8 Adjusted text [skip ci] 2017-05-28 15:53:45 +03:00
f7e3d980ea Adjusted text [skip ci] 2017-05-28 15:52:31 +03:00
f98e260493 Adjusted text [skip ci] 2017-05-28 15:51:31 +03:00
974a1eeb48 Adjusted text [skip ci] 2017-05-28 15:48:27 +03:00
c1e6e6da62 Adjusted typo text [skip ci] 2017-05-26 17:33:07 +08:00
2711eb5722 MySql -> MySQL typo 2017-05-26 17:20:56 +08:00
d0a5372170 Adjusted text [skip ci] 2017-05-26 12:17:33 +03:00
6a9a255d06 typo 2017-05-26 17:13:52 +08:00
d82b4fa03b add doc for issue #8420
#8420
2017-05-26 16:58:19 +08:00
fcfcdbdc34 advanced example on filter validator
fixes #4284
2017-05-23 23:21:03 +02:00
8373228228 added namespace example to the autoload guide 2017-05-17 22:38:25 +02:00
618f61fafe Update db-migrations.md (#14113) [skip ci]
I made a typo. Sorry. The command migration-rbac, migrationPath property already exists.
2017-05-04 22:23:39 +03:00
6a28353a97 Update db-migrations.md (#14109) [skip ci]
By default, the class BaseMigrateController property migrationPath is assigned the value '@app/migrations'. In the method getNewMigrations() is the conversion migrationNamescpaces in the path to the file and merges it all into a single array along with the path migrationPath. If the project for migration module is a separate table in the database, all migration came from migrationPath are not initialized and therefore try to migrate. Therefore, it is necessary to specify the property 'migrationPath' => null.
2017-05-04 16:03:15 +02:00
2d28b585a0 Merge branch 'master' into 13614-add-a-failing-test-for-url-rule 2017-04-27 22:07:55 +02:00
4dbcc78559 Update runtime-routing.md 2017-04-26 11:41:07 +02:00
1bf2f160d0 param → parameter [skip ci] 2017-04-26 12:08:57 +03:00
5e42b9e142 Added note clarifying that load function clears fixture data [skip ci] 2017-04-20 21:19:19 +03:00
c35ddec09a Update composer fxp plugin version in docs and travis scripts 2017-04-19 02:55:31 +03:00
400c531d95 Tiny documentation fix [skip ci] (#13998) 2017-04-17 15:51:09 +03:00
85cc75aaa2 docs/guide/input-multiple-models: added a note on avoiding validating the same input data with the same rules more than once (#13995) [skip ci] 2017-04-17 02:07:59 +03:00
e81ebc0fba Tweaked verbiage slightly [ci skip] 2017-04-14 13:41:07 -06:00
519753d868 Added missing parts of disabling CSRF validation doc [skip ci] (#13966) 2017-04-12 01:55:13 +03:00
9445e5508b Fixes #10675: Added docs for disabling CSRF validation in standalone actions 2017-04-11 02:05:36 +03:00
9c8b289116 Incorrect use case of Datepicker widget (#13903) [skip ci] 2017-04-02 22:22:10 +03:00
f5f31c7fe1 Fixes #13864: Added info about configuring sub-rules of yii\rest\UrlRule [skip ci] 2017-03-28 20:10:16 +03:00
35f7c61f77 Added tip about preferring separate form models for any non-trivial cases [skip ci] 2017-03-15 10:15:13 +03:00
ee644ee997 Added more composer autoload optimization strategies to performance tuning guide [skip ci] 2017-03-13 13:25:56 +03:00
d37b82d505 Added tip about using PSR-3 loggers to docs [skip ci] 2017-03-09 02:15:40 +03:00
e448ed7444 Update docs 2017-03-01 12:22:53 +01:00
5727699445 Aadded OWASP references to security guide (#13667) [skip ci]
Currently security guide is very thrifty with information on what a topic is about. So for beginners it is not clear why something like CSRF or XSS protection is even needed.

I added a few reference links to allow reading about more background behind the topics.
2017-02-27 11:31:04 +03:00
17d03977a0 Fixed mistake in guide code for list retrieval from the DB (#13634) 2017-02-24 00:44:50 +03:00
50927d0751 Enhanced core-validators docs
Closes #13485
2017-02-21 22:36:26 +02:00
30b7fc8dc1 Fixes #13577: yii\db\QueryBuilder::truncateTable should work consistent over all databases 2017-02-20 23:38:50 +03:00
2e32e97c02 fix anchor
http://www.yiiframework.com/doc-2.0/guide-db-migrations.html#creating-migrations
2017-02-16 23:30:45 +03:00
39d3316e65 Rereferenced OCI PDO emulation from docs [skip ci] 2017-02-15 11:58:45 +03:00
7db178d8bb Fixes #13526: added reference to loading default values from schema to DefaultValueValidator section of validation guide [skip ci] 2017-02-14 20:50:26 +03:00
bf13f01b85 fixed some guide issues 2017-02-10 23:30:53 +01:00
7e8d9c5c5f added note about protocol relative URL pattern to the guide 2017-02-08 12:28:07 +01:00
93fbc55b23 Added edge case handling to aggregation example in docs [skip ci]
See https://github.com/yiisoft/yii2/issues/12491#issuecomment-276593948
2017-02-02 20:47:22 +03:00
e99deef49c docs/guide/structure-assets.md minor fixes [ci skip] (#13498) 2017-02-02 17:50:29 +03:00
72a690216a Fixes #13466: Added info about generating migration which adds multiple columns at once [skip ci] 2017-02-01 01:17:27 +03:00
8faedcbd7c Refactored UrlManagerTest to cover more use cases
UrlManager is a complex class with a large bunch of options that needs
to be tested
and we had a few regressions in the past even though there are already a
lot of tests
covering it. Test coverage measured by lines does not help us determine
how good it is tested,
we need test coverage for every major path through the code.

I have refactored the UrlManager tests to reflect the different options
and cases to
have a better overview of which cases are covered and which are not.

UrlManager has two main operation modes:

- "default" url format, which is the simple case. These are covered by
  methods in `UrlManagerTest`.

- "pretty" url format. This is the complex case, which involves UrlRules
  and url parsing.
  I have created two separate classes for this case:
  Url creation for "pretty" url format is covered by
`UrlManagerCreateUrlTest`.
  Url parsing for "pretty" url format is covered by
`UrlManagerParseUrlTest`.

Each of the test classes have a `getUrlManager` method that creates a
UrlManager instance
with a specific configuration and certain variations in options.
It is also tested that options that are not relevant in a certain
operation mode have no effect on the result.

To make sure to not remove tests that have existed before, here is a map
of where code has been moved.
The following test methods existed in the [old test
class](4187718c14/tests/framework/web/UrlManagerTest.php):

- `testCreateUrl()` split between UrlManagerTest and
  UrlManagerCreateUrlTest variations should all be covered by
`variationsProvider()`.
- `testCreateUrlWithNullParams()` covered by UrlManagerCreateUrlTest by
  `testWithNullParams()`
- `testCreateUrlWithEmptyPattern()`
- `testCreateAbsoluteUrl()` covered in UrlManagerCreateUrlTest by new
  tests via `variationsProvider()`.
- `testCreateAbsoluteUrlWithSuffix()` covered in UrlManagerCreateUrlTest
  by `testAbsolutePatterns`.

- `testParseRequest()` covered by UrlManagerParseUrlTest, UrlNormalizer
  related parts moved to UrlNormalizerTest.
- `testParseRESTRequest()` moved to UrlManagerParseUrlTest
- `testHash()` covered in different tests in UrlManagerCreateUrlTest.
- `testMultipleHostsRules($host)` kept as is.

Before:

    $ vendor/bin/phpunit tests/framework/web/UrlManagerTest.php
    ...
    OK (12 tests, 89 assertions)

After:

    $ vendor/bin/phpunit tests/framework/web/UrlManager*.php
    ...
    OK (72 tests, 648 assertions)
2017-01-31 02:38:35 +01:00
a3a868e427 docs/guide fix [ci skip] (#13470)
* docs/guide/runtime-sessions-cookies.md typo fix [ci skip]

* docs/guide/tutorial-core-validators.md typo fixed [ci skip]
2017-01-30 11:39:14 +03:00
8803496cf5 docs/guide/output-data-widgets.md typo fix [ci skip] (#13459) 2017-01-28 11:45:51 +03:00
9deb24e262 docs/guide/output-client-scripts.md typo fix [ci skip] (#13455) 2017-01-27 17:00:17 +03:00
3f66fb6cdf Suggest latest PHP 7 usage in the guide [skip ci] 2017-01-18 19:00:50 +03:00
96069b341a fixed some links in doc (#13390) 2017-01-14 21:37:31 +01:00
4c2e5119b6 Fixes #13387: Extracted "Custom validator for multiple attributes" into community cookbook 2017-01-14 13:09:49 +03:00
25a7ed60e7 Docs about namespaced migrations fixed 2017-01-10 14:22:50 +02:00
b113ad460a Docs about cache key limitation (#13341) [skip ci] 2017-01-07 17:48:00 +03:00