Yii 1.1.4 is released
#1
Posted 05 September 2010 - 09:13 AM
POPULAR
We are very pleased to announce the release of Yii Framework version 1.1.4. You can download it from the Yii download site:
http://www.yiiframework.com/download/
In this release, we included more than 60 bug fixes and feature enhancements. Some of the important enhancements include: Added support for automatic action parameter binding from $_GET; Added CSqlDataProvider and CArrayDataProvider; Added CUrlManager::addRules() to support dynamic addition of URL routing rules; And refactored CActiveRecord so that CActiveRecord::with() always returns the AR object itself. For the complete list of changes in this release, please see:
http://www.yiiframew...GELOG-1.1.4.txt
http://www.yiiframew...c/guide/changes
Please refer to the following upgrade instructions if you plan to upgrade from an old version to 1.1.4:
http://www.yiiframew...GRADE-1.1.4.txt
Thank you for your support!
The Yii Developer Team
#4
Posted 05 September 2010 - 03:08 PM


#6
Posted 06 September 2010 - 12:50 AM
What does it exactly mean: "Added support for automatic action parameter binding from $_GET"
where I can find it?
Regards,
Marcin
#7
Posted 06 September 2010 - 03:22 AM
m1m1m1, on 06 September 2010 - 12:50 AM, said:
What does it exactly mean: "Added support for automatic action parameter binding from $_GET"
where I can find it?
Regards,
Marcin
This is a really pleasant thing!
Action Parameter Binding
#10
Posted 06 September 2010 - 08:44 AM
I'll never stop to say: I LOVE YII!!!!
Keep the good work!
The problem is communication! Excess of communication!
#11
Posted 06 September 2010 - 05:25 PM
Great work, thanks!
#12
Posted 07 September 2010 - 12:37 AM

#14
Posted 14 September 2010 - 09:18 AM
I haven't figured out where to put jui themes
this is the old location /framework/zii/vendors/jui/css
ok just answered my own question, custom themes go in
/framework/web/js/source/jui/css
Just thought I would post this for others
doodle
#15
Posted 28 September 2010 - 03:27 PM
Support me on Patreon: https://www.patreon.com/yiiframework
Promover Yii Framework en Español en Patreon: https://www.patreon....yiiframework_es
YiiFramework en Español: http://yiiframework.es/ - Canal de YouTube - Facebook
Follow me: @robregonm.
#16
Posted 11 October 2010 - 01:57 PM

I've used CakePHP - and like it a lot - but after trying Yii.. I think I like it more!

Thanks a lot, Yii Team, for providing such an excellent choice!
Community and docs and extensions are very important, and from what I can see, you're definitely on the right track here!
Kudos.

#18
Posted 03 November 2010 - 05:48 AM
As we know Yii does fantastic job for "form-like" applications, where user inputs values into text field, choose some from dropdowns, choose radio buttons etc.
When developing application I often have to fill all that inputs, choose from dropdowns to see if form is properly validated, saved, what are the results. Sometimes it is really time consuming!
The idea that blinked in my mind yesterday was: would it be hard for developers to add one visibility-configurable button [Fill-Form] on the form that would call action to fill all textefields with random text (obeying the rules, so this is development requirement), it would also choose any value from dropdown etc etc...
What do you think about that?
#19
Posted 03 November 2010 - 06:48 AM
http://www.yiiframew...test.functional
For instance:
public function testContact() { $this->open('site/contact'); $this->assertTextPresent('Contact Us'); $this->assertElementPresent('name=ContactForm[name]'); $this->type('name=ContactForm[name]','tester'); $this->type('name=ContactForm[email]','tester@example.com'); $this->type('name=ContactForm[subject]','test subject'); $this->clickAndWait("//input[@value='Submit']"); $this->assertTextPresent('Body cannot be blank.'); }