» Version | » Information |
---|---|
1.0.10 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.10 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.10 Release date: 2009-10-02 09:14 UTC Release state: stable Release uploaded by: avb Changelog: Jump Action could perform a wrong redirect if $_SERVER['HTTPS'] contained 'OFF' rather than 'off' (bug #16328) Dependencies:
|
1.0.9 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.9 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.9 Release date: 2008-07-22 07:48 UTC Release state: stable Release uploaded by: avb Changelog: Jump Action now uses an absolute URI in Location header, as required by RFC 2616 (bug #13087) Dependencies:
|
1.0.8 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.8 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.8 Release date: 2007-05-18 05:36 UTC Release state: stable Release uploaded by: avb Changelog: Migrate to package.xml version 2.0, use proper header comment blocks. Minor fixes to phpdoc comments, no code changes since previous release. Dependencies:
|
1.0.7 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.7 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.7 Release date: 2006-10-08 06:06 UTC Release state: stable Release uploaded by: avb Changelog: Fixed bug #8687: defaults for checkboxes and multiselects were not correctly applied in non-modal forms if the user haven't seen the page containing them. Dependencies:
|
1.0.6 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.6 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.6 Release date: 2006-05-31 16:44 UTC Release state: stable Release uploaded by: avb Changelog: Fixed bug #6110: HTML_QuickForm::validate() can throw a PEAR_Error, but there were no checks made for it. Dependencies:
|
1.0.5 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.5 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.5 Release date: 2005-11-04 15:52 UTC Release state: stable Release uploaded by: avb Changelog: This is a recommended upgrade for users running HTML_QuickForm 3.2.5 * Fixed bug #3443: honour session.use_only_cookies setting by not passing session ID in URL when it is on. * Fixed bug #5615: some elements' values not displayed properly after browsing back to a form page (see also bug #5625) * Fixed bug #5641: unwanted target="_self" form attribute * Fixed bug #5743: wrong element name in example file statemachine.php * Implemented request #4973: internal values may be filtered from the array returned by HTML_QuickForm_Page::exportValues() * Redone tabbed.php example to use a common base class instead of braindead copy-paste technique (see also request #5234) Dependencies:
|
1.0.4 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.4 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.4 Release date: 2004-12-30 11:26 UTC Release state: stable Release uploaded by: avb Changelog: * perform() methods of all Action subclasses now consistently return values (bug #2689) Dependencies:
|
1.0.3 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.3 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.3 Release date: 2004-10-01 05:51 UTC Release state: stable Release uploaded by: avb Changelog: * Fixed an error in regWizard.php example (bug #1154) * It is no longer possible to go to a page of a modal form unless all the previous pages are valid (bug #2323) * Controller's setDefaults() and setConstants() methods now accept filters, like corresponding HTML_QuickForm's methods do (request #1547) Dependencies:
|
1.0.2 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.2 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.2 Release date: 2004-03-23 05:56 UTC Release state: stable Release uploaded by: avb Changelog: * HTML_QuickForm_Controller does not rely on form's "name" attribute anymore (XHTML compliance fix, see also bug #925) * Use new HTML_QuickForm::arrayMerge() method in place of PHP's builtin array_merge(), depend on QuickForm 3.2.2 * Applied patch from #929, exportValues() does not overwrite elements with the same names from different pages. Dependencies:
|
1.0.1 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0.1 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0.1 Release date: 2003-12-11 09:51 UTC Release state: stable Release uploaded by: avb Changelog: * Added a new example showing how to proceed to either of the two pages based on user input (Donald Lobo). Dependencies:
|
1.0 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-1.0 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-1.0 Release date: 2003-11-05 09:15 UTC Release state: stable Release uploaded by: avb Changelog: This release is done to update package's status to 'stable'. The code is now considered mature and tested enough to be used in production. Changes: * No changes to classes since 0.9.3 * Added an example of wizard with file upload (Bertrand Mansion) * Depend on newest version of HTML_QuickForm Dependencies:
|
0.9.3 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-0.9.3 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-0.9.3 Release date: 2003-10-24 13:36 UTC Release state: beta Release uploaded by: avb Changelog: * Controller now differentiates between invalid and not-yet-validated pages. False is stored in container's ['valid'][$pageName] field for the former, null for the latter. This is a POTENTIAL BC BREAK, so pay attention if you wrote your own Actions. * Back action in modal forms does not validate the page anymore (the previous behaviour was non-intuitive, thanks to Bob Van Zant for reporting). Dependencies:
|
0.9.2 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-0.9.2 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-0.9.2 Release date: 2003-10-02 12:53 UTC Release state: beta Release uploaded by: avb Changelog: Added Page::setDefaultAction() method to fix the Controller's behaviour when user presses Enter instead of clicking on one of submit buttons. Thanks to Mike Carter for reporting this. Dependencies:
|
0.9.1 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-0.9.1 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-0.9.1 Release date: 2003-09-19 14:43 UTC Release state: beta Release uploaded by: avb Changelog: Changes and additions: * Added Controller::exportValue() method (thanks to Arnaud Limbourg) * Controller::exportValues() can return values for the single page (thanks to Arnaud Limbourg) * Added a parameter for Controller::container() that forces the container reset * Added a new example: registration wizard (Bertrand Mansion) Fixes: * Action_Next on the last page validates the whole form, not just the page itself Dependencies:
|
0.9 |
Easy InstallNot sure? Get more info. pear install HTML_QuickForm_Controller-0.9 Pyrus InstallTry PEAR2's installer, Pyrus. php pyrus.phar install pear/HTML_QuickForm_Controller-0.9 Release date: 2003-08-29 12:31 UTC Release state: beta Release uploaded by: avb Changelog: Initial PEAR release Dependencies:
|