Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
838a79cd
Commit
838a79cd
authored
Jun 26, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor doc fixes [skip ci]
parent
935ab042
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
CHANGELOG.md
extensions/gii/CHANGELOG.md
+1
-1
gii.js
extensions/gii/assets/gii.js
+1
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-1
No files found.
extensions/gii/CHANGELOG.md
View file @
838a79cd
...
...
@@ -4,7 +4,6 @@ Yii Framework 2 gii extension Change Log
2.
0.0-rc under development
--------------------------
-
Enh #3811: Now Gii model generator makes autocomplete for model class field (mitalcoi)
-
Bug #1263: Fixed the issue that Gii and Debug modules might be affected by incompatible asset manager configuration (qiangxue)
-
Bug #2314: Gii model generator does not generate correct relation type in some special case (qiangxue)
-
Bug #3265: Fixed incorrect controller class name validation (suralc)
...
...
@@ -12,6 +11,7 @@ Yii Framework 2 gii extension Change Log
-
Enh #2018: Search model is not required anymore in CRUD generator (johonunu)
-
Enh #3088: The gii module will manage their own URL rules now (qiangxue)
-
Enh #3222: Added
`useTablePrefix`
option to the model generator for Gii (horizons2)
-
Enh #3811: Now Gii model generator makes autocomplete for model class field (mitalcoi)
2.0.0-beta April 13, 2014
...
...
extensions/gii/assets/gii.js
View file @
838a79cd
...
...
@@ -151,7 +151,7 @@ yii.gii = (function ($) {
$
(
'#model-generator .field-generator-modelclass'
).
toggle
(
$
(
this
).
val
().
indexOf
(
'*'
)
==
-
1
);
}).
change
();
//
model generator: translate table name to model class
//
model generator: translate table name to model class
$
(
'#generator-tablename'
).
on
(
'blur'
,
function
()
{
var
tableName
=
$
(
this
).
val
();
if
(
$
(
'#generator-modelclass'
).
val
()
==
''
&&
tableName
&&
tableName
.
indexOf
(
'*'
)
===
-
1
){
...
...
framework/CHANGELOG.md
View file @
838a79cd
...
...
@@ -4,7 +4,6 @@ Yii Framework 2 Change Log
2.
0.0-rc under development
--------------------------
-
Enh #3811: Now Gii model generator makes autocomplete for model class field (mitalcoi)
-
Bug #1263: Fixed the issue that Gii and Debug modules might be affected by incompatible asset manager configuration (qiangxue)
-
Bug #2314: Gii model generator does not generate correct relation type in some special case (qiangxue)
-
Bug #2563: Theming is not working if the path map of the theme contains ".." or "." in the paths (qiangxue)
...
...
@@ -109,6 +108,7 @@ Yii Framework 2 Change Log
-
Enh #3773: Added
`FileValidator::mimeTypes`
to support validating MIME types of files (Ragazzo)
-
Enh #3774: Added
`FileValidator::checkExtensionByMimeType`
to support validating file types against file mime-types (Ragazzo)
-
Enh #3801: Base migration controller
`yii\console\controllers\BaseMigrateController`
extracted (klimov-paul)
-
Enh #3811: Now Gii model generator makes autocomplete for model class field (mitalcoi)
-
Enh #3939:
`\yii\Inflector::slug()`
improvements (samdark)
-
Added protected
`\yii\Inflector::transliterate()`
that could be replaced with custom translit implementation.
-
Added proper tests for both intl-based slug and PHP fallback.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment