|
View:
New views
15 Messages
—
Rating Filter:
Alert me
|
|
|
Recent Component PromotionsGreetings, all --
I've promoted the following components from standard/incubator/ to standard/trunk/ in preparation for the 1.6.0 release: * Zend_Dom_Query: use CSS selectors to query (X)HTML/XML documents * Zend_Dojo: ZF/Dojo integration layer * Zend_Json_Server: JSON-RPC implementation * Zend_Session_SaveHandler_DbTable: Store session data in a database table * Zend_Test_PHPUnit: testing infrastructure for MVC applications * Zend_Text_Figlet: create Figlets with ZF If you haven't tried these new components out yet, please do. If you haven't due to lack of documentation, documentation is available in the documentation/manual/en/module_specs/ tree in human-readable DocBook, with full PHP examples and use cases. A hearty thank you to all contributors and testers involved with making these components a reality! -- Matthew Weier O'Phinney Software Architect | matthew@... Zend Framework | http://framework.zend.com/ |
|
|
Re: Recent Component PromotionsI've promoted the following components from standard/incubator/ to Where is this in the wiki? - jake |
|
|
Re: Recent Component Promotions-- Jake McGraw <jmcgraw1@...> wrote
(on Wednesday, 16 July 2008, 12:29 PM -0400): > > I've promoted the following components from standard/incubator/ to > standard/trunk/ in preparation for the 1.6.0 release: > > > Where is this in the wiki? http://framework.zend.com/wiki/display/ZFPROP/Standard+Library -- Matthew Weier O'Phinney Software Architect | matthew@... Zend Framework | http://framework.zend.com/ |
|
|
Re: Recent Component Promotions
I should have been more specific, I'm not seeing any documentation for Zend_Dom_Query, where can I find this. - jake |
|
|
Re: Recent Component PromotionsYou can find it in the svn repo. It will be compiled and part of the official 1.6 docs later on, but for now, the code lives in the repository only (as it is usual for new components.
Best regards Tobias 2008/7/16 Jake McGraw <jmcgraw1@...>:
|
|
|
Re: Recent Component Promotions
No proposal documentation? Not that I don't mind digging elbow deep into new code, just thought there would be a little hand holding in the work leading up to the move to an officially sanctioned Zend Component. - jake |
|
|
|
|
|
Re: Recent Component Promotions-- Jake McGraw <jmcgraw1@...> wrote
(on Wednesday, 16 July 2008, 02:55 PM -0400): > > You can find it in the svn repo. It will be compiled and part of the > official 1.6 docs later on, but for now, the code lives in the repository > only (as it is usual for new components. > > > No proposal documentation? Not that I don't mind digging elbow deep into new > code, just thought there would be a little hand holding in the work leading up > to the move to an officially sanctioned Zend Component. There's documentation in the repository, and it's human-readable: http://framework.zend.com/svn/framework/standard/documentation/manual/en/module_specs/ look for Zend_Dom*.xml (or Zend_Dojo*.xml, or Zend_Test*.xml, etc.). I don't sync the documentation to the proposal as this is a redundant task that would require hours of time. DocBook is very readable -- it's just XML, and mostly content. -- Matthew Weier O'Phinney Software Architect | matthew@... Zend Framework | http://framework.zend.com/ |
|
|
Re: Recent Component PromotionsOn 16 Jul 2008, at 20:26, Matthew Weier O'Phinney wrote: >> No proposal documentation? Not that I don't mind digging elbow >> deep into new >> code, just thought there would be a little hand holding in the >> work leading up >> to the move to an officially sanctioned Zend Component. > > There's documentation in the repository, and it's human-readable: > > http://framework.zend.com/svn/framework/standard/documentation/ > manual/en/module_specs/ > > look for Zend_Dom*.xml (or Zend_Dojo*.xml, or Zend_Test*.xml, etc.). You can build to HTML documentation yourself. Navigate to the language subfolder you're after, e.g. documentation/ manual/en and run $ autoconf $ ./configure $ make (This is in the README) Come back in a while and the html folder will contain your docs. When you want to update the documentation simply run $ make clean && make html Regards Carlton |
|
|
Re: Recent Component PromotionsHi Matthew,
Thanks for all the hard and long work on the Dojo implementation! I've been playing with the Dojo view helper and Zend_Dojo_Form it all looks great and easy to implement. I did find a minor issue in the view helper related to adding module paths. The generated code doesn't include the path for the module namespace. Valid Dojo syntax would be: dojo.registerModulePath("foo", "../../foo"); Veiw helper outputs: dojo.registerModulePath("foo"); I've updated the _renderExtras method in Zend_Dojo_View_Helper_Dojo_Container to get it working for now. I can add a bug to the issue tracker if you like but I didn't see a category for Zend_Dojo in there yet. As a side note on Zend_Dojo_Form, I'm having a hard time figuring out how to get the checkboxes in MultiCheckbox to render as a Dijit checkbox, any suggestions? Thanks again for a great component. Todd On Jul 16, 2008, at 11:16 AM, Matthew Weier O'Phinney wrote: > Greetings, all -- > > I've promoted the following components from standard/incubator/ to > standard/trunk/ in preparation for the 1.6.0 release: > > * Zend_Dom_Query: use CSS selectors to query (X)HTML/XML documents > * Zend_Dojo: ZF/Dojo integration layer > * Zend_Json_Server: JSON-RPC implementation > * Zend_Session_SaveHandler_DbTable: Store session data in a database > table > * Zend_Test_PHPUnit: testing infrastructure for MVC applications > * Zend_Text_Figlet: create Figlets with ZF > > If you haven't tried these new components out yet, please do. If you > haven't due to lack of documentation, documentation is available in > the > documentation/manual/en/module_specs/ tree in human-readable DocBook, > with full PHP examples and use cases. > > A hearty thank you to all contributors and testers involved with > making > these components a reality! > > -- > Matthew Weier O'Phinney > Software Architect | matthew@... > Zend Framework | http://framework.zend.com/ |
|
|
Re: Recent Component Promotions-- Todd Wolaver <todd@...> wrote
(on Thursday, 17 July 2008, 11:17 AM -0500): > I've been playing with the Dojo view helper and Zend_Dojo_Form it all > looks great and easy to implement. > > I did find a minor issue in the view helper related to adding module > paths. The generated code doesn't include the path for the module > namespace. > > Valid Dojo syntax would be: > dojo.registerModulePath("foo", "../../foo"); > > Veiw helper outputs: > dojo.registerModulePath("foo"); > > I've updated the _renderExtras method in > Zend_Dojo_View_Helper_Dojo_Container to get it working for now. I can > add a bug to the issue tracker if you like but I didn't see a category > for Zend_Dojo in there yet. I've added a category for this now; please enter the issue, and, if possible, attach the patch. > As a side note on Zend_Dojo_Form, I'm having a hard time figuring out > how to get the checkboxes in MultiCheckbox to render as a Dijit > checkbox, any suggestions? Hmm... I may need to add a MultiCheckBox dijit element. Place a feature request in the tracker for this; I can see this being useful. > On Jul 16, 2008, at 11:16 AM, Matthew Weier O'Phinney wrote: > >> Greetings, all -- >> >> I've promoted the following components from standard/incubator/ to >> standard/trunk/ in preparation for the 1.6.0 release: >> >> * Zend_Dom_Query: use CSS selectors to query (X)HTML/XML documents >> * Zend_Dojo: ZF/Dojo integration layer >> * Zend_Json_Server: JSON-RPC implementation >> * Zend_Session_SaveHandler_DbTable: Store session data in a database >> table >> * Zend_Test_PHPUnit: testing infrastructure for MVC applications >> * Zend_Text_Figlet: create Figlets with ZF >> >> If you haven't tried these new components out yet, please do. If you >> haven't due to lack of documentation, documentation is available in >> the >> documentation/manual/en/module_specs/ tree in human-readable DocBook, >> with full PHP examples and use cases. >> >> A hearty thank you to all contributors and testers involved with >> making >> these components a reality! >> >> -- >> Matthew Weier O'Phinney >> Software Architect | matthew@... >> Zend Framework | http://framework.zend.com/ > -- Matthew Weier O'Phinney Software Architect | matthew@... Zend Framework | http://framework.zend.com/ |
|
|
Re: Recent Component PromotionsI have another question regarding the dojo view helper... Is there a way to disable the dojoType="dijit.form.Form" from being added to the <form> attributes on a standard Zend_Form() when using Zend_Dojo_View_Helper In bootstrap: $view->addHelperPath('Zend/Dojo/View/Helper/', 'Zend_Dojo_View_Helper'); In controller: $form = new Zend_From(); Returns: <form enctype="application/x-www-form-urlencoded" action="" method="post" id="" dojoType="dijit.form.Form"> Is this standard behavior or do I have something mixed up somewhere? It isn't a big deal but I'd like to disable it for now as my reset buttons in my standard forms seem to be disabled in a dojoType = dijit.form.Form Thanks, Todd On Jul 17, 2008, at 12:04 PM, Matthew Weier O'Phinney wrote:
|
|
|
Re: Recent Component Promotions-- Todd Wolaver <todd@...> wrote
(on Thursday, 17 July 2008, 06:01 PM -0500): > I have another question regarding the dojo view helper... > > Is there a way to disable the dojoType="dijit.form.Form" from being added to > the <form> attributes on a standard Zend_Form() when > using Zend_Dojo_View_Helper > > In bootstrap: > $view->addHelperPath('Zend/Dojo/View/Helper/', 'Zend_Dojo_View_Helper'); > > In controller: > $form = new Zend_From(); > > Returns: > <form enctype="application/x-www-form-urlencoded" action="" method="post" id="" > dojoType="dijit.form.Form"> > > Is this standard behavior or do I have something mixed up somewhere? > > It isn't a big deal but I'd like to disable it for now as my reset buttons in > my standard forms seem to be disabled in a dojoType = dijit.form.Form Please file an issue for this. I'm not quite sure how that's happening, but I suspect the Zend_Dojo_View_Helper_Form view helper is getting used and not the standard form view helper -- but even so, it should not be setting the dojoType attribute unless you're using declarative syntax (which is disabled by default). File the issue, and I'll look into it after RC1. > On Jul 17, 2008, at 12:04 PM, Matthew Weier O'Phinney wrote: > > > -- Todd Wolaver <todd@...> wrote > (on Thursday, 17 July 2008, 11:17 AM -0500): > > I've been playing with the Dojo view helper and Zend_Dojo_Form it all > > looks great and easy to implement. > > > > I did find a minor issue in the view helper related to adding module > > paths. The generated code doesn't include the path for the module > > namespace. > > > > Valid Dojo syntax would be: > > dojo.registerModulePath("foo", "../../foo"); > > > > Veiw helper outputs: > > dojo.registerModulePath("foo"); > > > > I've updated the _renderExtras method in > > Zend_Dojo_View_Helper_Dojo_Container to get it working for now. I can > > > add a bug to the issue tracker if you like but I didn't see a category > > > for Zend_Dojo in there yet. > > > I've added a category for this now; please enter the issue, and, if > possible, attach the patch. > > > As a side note on Zend_Dojo_Form, I'm having a hard time figuring out > > how to get the checkboxes in MultiCheckbox to render as a Dijit > > checkbox, any suggestions? > > > Hmm... I may need to add a MultiCheckBox dijit element. Place a feature > request in the tracker for this; I can see this being useful. > > > > On Jul 16, 2008, at 11:16 AM, Matthew Weier O'Phinney wrote: > > > > Greetings, all -- > > > > I've promoted the following components from standard/incubator/ to > > standard/trunk/ in preparation for the 1.6.0 release: > > > > * Zend_Dom_Query: use CSS selectors to query (X)HTML/XML documents > > * Zend_Dojo: ZF/Dojo integration layer > > * Zend_Json_Server: JSON-RPC implementation > > * Zend_Session_SaveHandler_DbTable: Store session data in a > database > > table > > * Zend_Test_PHPUnit: testing infrastructure for MVC applications > > * Zend_Text_Figlet: create Figlets with ZF > > > > If you haven't tried these new components out yet, please do. If > you > > haven't due to lack of documentation, documentation is available in > > > the > > documentation/manual/en/module_specs/ tree in human-readable > DocBook, > > with full PHP examples and use cases. > > > > A hearty thank you to all contributors and testers involved with > > making > > these components a reality! > > > > -- > > Matthew Weier O'Phinney > > Software Architect | matthew@... > > Zend Framework | http://framework.zend.com/ > > > > > -- > Matthew Weier O'Phinney > Software Architect | matthew@... > Zend Framework | http://framework.zend.com/ > > -- Matthew Weier O'Phinney Software Architect | matthew@... Zend Framework | http://framework.zend.com/ |
|
|
Re: Recent Component PromotionsI have been trying to use the Dojo_Form component with the docs examples and I was having some problems to get it working so finally I downloaded the demo I found in the issue tracker http://framework.zend.com/issues/browse/ZF-3559 and everything worked ok until I deleted the library/incubator and the library/Zend directories that are part of the zip file and went back to use the SVN download of the current trunk.
After that I'm getting a Warning message "Warning: helper 'GetPluginLoader' not found in path in F:\xampp\php\PEAR\Zend\Form.php on line 2344" Maybe I'm doing something wrong, but I'm running out of ideas as to where to look. Thanks. > > On Jul 16, 2008, at 11:16 AM, Matthew Weier O'Phinney wrote: > > > > Greetings, all -- > > > > I've promoted the following components from standard/incubator/ to > > standard/trunk/ in preparation for the 1.6.0 release: > > > > * Zend_Dom_Query: use CSS selectors to query (X)HTML/XML documents > > * Zend_Dojo: ZF/Dojo integration layer > > * Zend_Json_Server: JSON-RPC implementation > > * Zend_Session_SaveHandler_DbTable: Store session data in a > database > > table > > * Zend_Test_PHPUnit: testing infrastructure for MVC applications > > * Zend_Text_Figlet: create Figlets with ZF > > > > If you haven't tried these new components out yet, please do. If > you > > haven't due to lack of documentation, documentation is available in > > > the > > documentation/manual/en/module_specs/ tree in human-readable > DocBook, > > with full PHP examples and use cases. > > > > A hearty thank you to all contributors and testers involved with > > making > > these components a reality! > > > > -- > > Matthew Weier O'Phinney > > Software Architect | matthew@zend.com > > Zend Framework | http://framework.zend.com/ > > > > > -- > Matthew Weier O'Phinney > Software Architect | matthew@zend.com > Zend Framework | http://framework.zend.com/ > > -- Matthew Weier O'Phinney Software Architect | matthew@zend.com Zend Framework | http://framework.zend.com/ |
|
|
Re: Re: Re[fw-general] cent Component Promotions-- Juan E. <chedar@...> wrote
(on Thursday, 17 July 2008, 11:06 PM -0700): > I have been trying to use the Dojo_Form component with the docs examples and > I was having some problems to get it working so finally I downloaded the > demo I found in the issue tracker > http://framework.zend.com/issues/browse/ZF-3559 and everything worked ok > until I deleted the library/incubator and the library/Zend directories that > are part of the zip file and went back to use the SVN download of the > current trunk. > After that I'm getting a Warning message "Warning: helper 'GetPluginLoader' > not found in path in F:\xampp\php\PEAR\Zend\Form.php on line 2344" > Maybe I'm doing something wrong, but I'm running out of ideas as to where to > look. You definitely don't have current trunk at this point -- line 2344 in current trunk is a comment, and from the message you have, it sounds like it's using an old version of Zend_View (getPluginLoader() was added to the version of Zend_View promoted to trunk at the time Dojo was promoted). If you downloaded an svn snapshot off the downloads page instead of using svn directly, be aware that the current svn snapshots have not been working for some weeks; if you want a snapshot, you should build one in Fisheye. Ping me if you need details on this. > > > > On Jul 16, 2008, at 11:16 AM, Matthew Weier O'Phinney wrote: > > > > > > > > Greetings, all -- > > > > > > > > I've promoted the following components from > > standard/incubator/ to > > > > standard/trunk/ in preparation for the 1.6.0 release: > > > > > > > > * Zend_Dom_Query: use CSS selectors to query (X)HTML/XML > > documents > > > > * Zend_Dojo: ZF/Dojo integration layer > > > > * Zend_Json_Server: JSON-RPC implementation > > > > * Zend_Session_SaveHandler_DbTable: Store session data in a > > database > > > > table > > > > * Zend_Test_PHPUnit: testing infrastructure for MVC > > applications > > > > * Zend_Text_Figlet: create Figlets with ZF > > > > > > > > If you haven't tried these new components out yet, please do. > > If > > you > > > > haven't due to lack of documentation, documentation is > > available in > > > > > > the > > > > documentation/manual/en/module_specs/ tree in human-readable > > DocBook, > > > > with full PHP examples and use cases. > > > > > > > > A hearty thank you to all contributors and testers involved > > with > > > > making > > > > these components a reality! > > > > > > > > -- > > > > Matthew Weier O'Phinney > > > > Software Architect | matthew@... > > > > Zend Framework | http://framework.zend.com/ > > > > > > > > > > -- > > Matthew Weier O'Phinney > > Software Architect | matthew@... > > Zend Framework | http://framework.zend.com/ > > > > > > -- > Matthew Weier O'Phinney > Software Architect | matthew@... > Zend Framework | http://framework.zend.com/ > > > > -- > View this message in context: http://www.nabble.com/Recent-Component-Promotions-tp18491148p18523206.html > Sent from the Zend Framework mailing list archive at Nabble.com. > -- Matthew Weier O'Phinney Software Architect | matthew@... Zend Framework | http://framework.zend.com/ |
| Free Forum Powered by Nabble | Forum Help |