Nikola Basic
|
9854ee2152
|
Fixed typos [skip ci]
|
2014-11-17 15:27:43 +01:00 |
|
artyhedgehog
|
836fef92f9
|
Grammar fix
Minor words order fix.
|
2014-11-17 13:04:29 +03:00 |
|
Qiang Xue
|
3c63213de3
|
Added yii\base\Controller::renderContent()
|
2014-11-16 23:16:37 -05:00 |
|
pabloassembler
|
94ca0c2d5f
|
Update tutorial-advanced-app.md
|
2014-11-16 23:56:44 -02:00 |
|
Mircəlal
|
940562d301
|
improve
|
2014-11-17 00:41:47 +04:00 |
|
Qiang Xue
|
439c2e4d11
|
Fixes #4450: Added yii\bootstrap\Nav::renderDropdown()
|
2014-11-16 12:57:10 -05:00 |
|
Qiang Xue
|
2782adcca4
|
Fixes #4643: Extra options specified in yii\widgets\Breadcrumbs::links will be treated as HTML attributes for the generated hyperlinks
|
2014-11-16 12:49:47 -05:00 |
|
Qiang Xue
|
9eedfd054e
|
Fixed test break.
|
2014-11-16 12:31:02 -05:00 |
|
Qiang Xue
|
ab1f32ef76
|
Fixes #4492: Support PostgreSQL-specific syntax for QueryBuilder::alterColumn()
|
2014-11-16 10:47:46 -05:00 |
|
Qiang Xue
|
865a94f321
|
Fixes #4739: Better display of exceptions when the response format is set as "raw" format
|
2014-11-16 10:20:37 -05:00 |
|
PendalF89
|
8495325212
|
Update tutorial-advanced-app.md
Fix backend url
close #6070
|
2014-11-16 15:00:23 +01:00 |
|
Nobuo Kihara
|
4456e18be0
|
docs/guide-ja/runtime - added 2 sections [ci skip]
- docs/guide-ja/runtime-overview.md - added [ci skip]
- docs/guide-ja/runtime-bootstrapping.md - added [ci skip]
- docs/guide-ja/runtime-bootstrapping.md - added links to OPCache and APC [ci skip]
close #6067
|
2014-11-16 14:56:03 +01:00 |
|
Carsten Brandt
|
cd46e06085
|
Update runtime-bootstrapping.md
close #6066
|
2014-11-16 12:07:16 +01:00 |
|
Carsten Brandt
|
38d0570843
|
fixed unlink() for array valued attributes
return value would not be a valid array when json encoded after unlink().
fixes #6065
|
2014-11-15 21:42:36 +01:00 |
|
Nobuo Kihara
|
e5b927244c
|
docs/guide/structure-extensions.md - typo fixed [ci skip]
close #6061
|
2014-11-15 19:31:21 +01:00 |
|
Nobuo Kihara
|
f072e1d8e9
|
guide ja
- docs/guide-ja/structure-extensions.md - prepared for translation [ci skip]
- docs/guide-ja/structure-assets.md - small changes [ci skip]
- docs/guide-ja/structure-extensions.md - WIP [ci skip]
- docs/guide-ja/structure-extensions.md - completed [ci skip]
- docs/guide-ja/structure-widgets.md - broken link fixed [ci skip]
close #6062
|
2014-11-15 19:29:31 +01:00 |
|
Qiang Xue
|
6b52b03523
|
Fixes #6049: yii\db\Connection::getSchema() for Oracle should return false when the table does not exist. Oracle does not support ON UPDATE clause.
|
2014-11-15 08:38:24 -05:00 |
|
wenbin1989
|
3d25f76e59
|
Fix batchInsert bug in oci. default batchInsert sql is `` insert into tableName(col1, col2, col3...) value(col11, col12,col13.... ),(col21, col22,col23.... ); ` which is illegal in oracle db. Change it to ` insert into tableName(col1, col2, col3...) select 'col11', 'col12', 'col13' from dual union select 'col21', 'col22', 'col23' from dual union select 'col31', 'col32', 'col33' from dual; ``
|
2014-11-15 08:32:47 -05:00 |
|
wenbin1989
|
39a358c269
|
oracle db doesn't support ON UPDATE in FOREIGN KEY. remove ON UPDATE section in method addForeignKey.
|
2014-11-15 08:32:47 -05:00 |
|
wenbin1989
|
b733a18904
|
fix oci bugs: \yii\db\oci\Schema::findColumns($table) return true when table doesn't exist When table doesn't exist, query in method findColumns return empty array instead of throw a exception.
|
2014-11-15 08:32:47 -05:00 |
|
Carsten Brandt
|
9869e67df8
|
fixed phpdoc
thanks to @pana1990
close #6060
|
2014-11-14 23:26:49 +01:00 |
|
Qiang Xue
|
c85c9d6092
|
Merge pull request #6052 from ArgosOleg/patch-1
Broken link
|
2014-11-14 09:29:55 -05:00 |
|
ArgosOleg
|
20b3ec22d6
|
Broken link
[asset bundles](structure-asset-bundles.md)
change on
[asset bundles](structure-assets.md),
|
2014-11-14 16:14:10 +02:00 |
|
Alexander Makarov
|
41c167b9a7
|
Merge pull request #6051 from anders-akero/patch-1
Update rest-error-handling.md
|
2014-11-14 14:13:36 +03:00 |
|
Anders Åkerö
|
eb07fd3ee8
|
Update rest-error-handling.md
Should be parentheses instead of square brackets
|
2014-11-14 11:12:04 +00:00 |
|
Qiang Xue
|
de8966079f
|
Fixes #5367: Added yii\grid\DataColumn::encodeLabel
|
2014-11-13 21:28:47 -05:00 |
|
Serge Postrash
|
c6cb205653
|
Added encodeLabel param to \yii\grid\DataColumn
Use case:
```
echo GridView::widget([
...
'columns' => [
...
[
'attribute' => 'created_at',
'label' => '<span data-toggle="tooltip" class="glyphicon glyphicon-time" title="'.Yii::t('app', 'Created At').'"></span>',
'encodeLabel' => false,
...
],
```
|
2014-11-13 21:26:39 -05:00 |
|
Carsten Brandt
|
cfe874607f
|
fixed return type for redis simple strings
fixes #4745
|
2014-11-13 16:44:06 +01:00 |
|
Alexander Makarov
|
2de384e3b0
|
Fixes #6041
|
2014-11-13 18:07:57 +03:00 |
|
Carsten Brandt
|
f9bb1e21cb
|
fixed elasticsearch test break
|
2014-11-13 15:57:49 +01:00 |
|
Carsten Brandt
|
f23ba6cbdc
|
explicitly set the language for elasticsearch script
groovy is now always on in ES 1.3.0
fixes #5662
|
2014-11-13 15:39:36 +01:00 |
|
Andrei Chugunov
|
0afd13f0da
|
Update BaseHtml.php
Some Annotation Typos
close #6029
|
2014-11-13 14:27:24 +01:00 |
|
PommeVerte
|
c86989ea82
|
Added mention of RAW format for runtime-responses
close #6036
|
2014-11-13 14:13:47 +01:00 |
|
Nobuo Kihara
|
b4607001a9
|
docs/guide-ja/structure-assets.md
- prepared for translation [ci skip]
- docs/guide-ja/structure-widgets.md - changed "コンテント" to "コンテンツ" [ci skip]
- docs/guide-ja/* - changed "ドキュメンテーション" to "ドキュメント" [ci skip]
- docs/guide-ja/intro-yii.md - inserted the Chinese character "易" [ci skip]
- docs/guide-ja/structure-assets.md - WIP [ci skip]
- docs/guide-ja/structure-assets.md - completed [ci skip]
close #6037
|
2014-11-13 14:03:31 +01:00 |
|
Qiang Xue
|
5960f49d7f
|
Merge branch 'master' of git://github.com/yiisoft/yii2
|
2014-11-12 20:08:55 -05:00 |
|
Qiang Xue
|
6a222c8a64
|
Fixes #6033.
|
2014-11-12 20:08:49 -05:00 |
|
Qiang Xue
|
8d0cac8cba
|
Fixes #5220
|
2014-11-12 15:37:09 -05:00 |
|
Qiang Xue
|
b7012ca935
|
Fixes #5799: yii\bootstrap\ButtonGroup::buttons can take all options that are supported by yii\bootstrap\Button
|
2014-11-12 14:54:03 -05:00 |
|
fly
|
d36bf9e8a8
|
Pass all the button's config array to Button::widget() instead of creating new one item by item. Now allowed to pass in ButtonGroup button's configs any possible attributes(like tagName, encodeLabel, etc).
|
2014-11-12 14:51:21 -05:00 |
|
Alexander Makarov
|
4e47b67fc5
|
Merge pull request #6027 from lucianobaraglia/master
Rest versioning spanish guide changes and fixes [skip ci]
|
2014-11-12 18:58:36 +03:00 |
|
Luciano Baraglia
|
c53a5100c2
|
Rest versioning spanish guide changes and fixes [skip ci]
|
2014-11-12 12:41:18 -03:00 |
|
Alexander Makarov
|
262b533df3
|
Merge pull request #6025 from lucianobaraglia/master
[skip ci] Spanish guide
|
2014-11-12 18:38:47 +03:00 |
|
Luciano Baraglia
|
dcb68bb464
|
rest routing spanish guide fixes and changes [skip ci]
|
2014-11-12 12:05:57 -03:00 |
|
Luciano Baraglia
|
a8020d2253
|
Rest response formatting spanish guide changes [skip ci]
|
2014-11-12 11:41:15 -03:00 |
|
Carsten Brandt
|
477aeecf95
|
Merge pull request #6023 from lucianobaraglia/master
More Spanish guide changes and fixes
|
2014-11-12 15:03:34 +01:00 |
|
Luciano Baraglia
|
beae91979c
|
Spanish guide updates and fixes [skip ci]
|
2014-11-12 10:58:17 -03:00 |
|
Luciano Baraglia
|
4fb47a23d4
|
Spanish guide minor fix [skip ci]
|
2014-11-12 10:22:40 -03:00 |
|
Luciano Baraglia
|
865b782f48
|
Merge remote-tracking branch 'upstream/master'
|
2014-11-12 10:08:20 -03:00 |
|
Alexander Makarov
|
42ca4bb991
|
Fixed yii\log\DbTarget migration and SQLs to use float column for log_time
|
2014-11-12 14:06:39 +03:00 |
|
Paul Klimov
|
a79828d160
|
Merge pull request #6021 from ilgiz-badamshin/master
Typo fix in guide-ru
|
2014-11-12 12:00:16 +02:00 |
|