RE: [fw-general] Zend_Currency

2007-08-16 Thread Alexander Veremyev
Hi Thomas, Looks pretty good! Congratulations! I have reviewed component and it's generally OK It's well coded and conforms the original proposal. It doesn't have currency math done now, but I think it's for future. It has good tests coverage (77.80%). The documentation is excellent! I have o

Re: [fw-general] Status on Zend_Form proposals

2007-08-16 Thread Matthew Weier O'Phinney
-- oetting <[EMAIL PROTECTED]> wrote (on Thursday, 16 August 2007, 02:19 PM -0700): > Has there been chosen a target release(if any) for including a form > abstraction in the framework? I'm the Zend liason for the forms component. I plan to start review of the various form proposals, as well as c

[fw-general] Status on Zend_Form proposals

2007-08-16 Thread oetting
Hi, Has there been chosen a target release(if any) for including a form abstraction in the framework? The two proposals both look good, but none of them are in the "ready for review" area. What is the reason for this, proposers? Can I/we contribute in any way to help the process along? More pr

RE: [fw-general] RE: Zend_Filter_Input problem

2007-08-16 Thread Bill Karwin
Okay, I see the problem. This is a different case, in which the 'fields' contains multiple fields. I have opened a new issue for this: http://framework.zend.com/issues/browse/ZF-1859 Regards, Bill Karwin > -Original Message- > From: Jim Scherer [mailto:[EMAIL PROTECTED] > Sent: Thursd

[fw-general] RE: Zend_Filter_Input problem

2007-08-16 Thread Jim Scherer
I seem to be having a similar problem and maybe the issue wasn't resolved. But then again it might be in understanding as I'm struggling with ZFI. I've tried the following and isvalid() returns true, but $data['empty'] is empty. Shouldn't it return false if either is false or am I just not underst

Re: [fw-general] Demo application?

2007-08-16 Thread Ludovic André
One more thing. I was wondering how you would incorporate Smarty support in that little example. I'm thinking about using the Smarty class shown on this page: http://framework.zend.com/manual/en/zend.view.scripts.html#zend.view.scripts.templates I do wonder where I would put the "Zend_View_Sma

Re: [fw-general] RE: Zend_Filter_Input: extending the wildcard feature

2007-08-16 Thread Bryce Lohr
Just a quick clarification: the Zend_Validate_Builder and Zend_Filter_Builder code is ready to be used. Just check the code out from the Laboratory and put it to work. If anyone does use it, I would like to hear of any problems or concerns. Thanks! Bryce Lohr Mark Maynereid wrote: Thanks for

Re: [fw-general] issues with Zend_Controller_Plugin_ErrorHandler

2007-08-16 Thread Dan Rossi
Thanks matt, ill do the forwards in the caught exception, im not sure if Zend_Auth throw exceptions though. Matthew Weier O'Phinney wrote: -- Dan Rossi <[EMAIL PROTECTED]> wrote (on Thursday, 16 August 2007, 07:33 PM +1000): Hi trying to bubble an error when throwing something like this as

Re: [fw-general] issues with Zend_Controller_Plugin_ErrorHandler

2007-08-16 Thread Matthew Weier O'Phinney
-- Dan Rossi <[EMAIL PROTECTED]> wrote (on Thursday, 16 August 2007, 07:33 PM +1000): > Hi trying to bubble an error when throwing something like this as > Zend_Auth wont do it for u it seems > > if (!$auth->hasIdentity()) >{ >throw new Zend_Auth_Adapter_Exception("Not Allowed

[fw-general] Issue with default error handler - Zend_Controller_Plugin_ErrorHandler

2007-08-16 Thread ashish.sharma
In my application I have created an ErrorController with the default errorAction to handle the exception related to invalid controllers, invalid action and other. Earlier this was working fine but now it sis not working fine. I think this is due to the ACL and/or Router plugin which I have injecte

Re: [fw-general] Zend_Search_Lucene: indexing PDF & Doc files

2007-08-16 Thread Peter Bowyer
Peter Farafonov wrote: > > I'm afraid any of such software is deprecated by now, because the latest > generation of MS Office uses zipped XML as file format. > It's a little early to deprecate it when most people haven't upgraded yet! I'm dealing with a CMS so aside from restricting the form

Re: [fw-general] Zend_Search_Lucene: indexing PDF & Doc files

2007-08-16 Thread Peter Farafonov
Hello, Peter. > If no one has written such code, are there work-arounds you would propose? > The wvware library appears deprecated, and if possible I am trying not to > rely on server software needing to be installed. I'm afraid any of such software is deprecated by now, because the latest genera

[fw-general] Zend_Search_Lucene: indexing PDF & Doc files

2007-08-16 Thread Peter Bowyer
Hi, Has anyone written a document parser for Zend_Search_Lucene to extract text from, and index, Microsoft Word documents or Adobe PDF files? I see there is a specialised one for HTML documents, but nothing in SVN for other formats. If no one has written such code, are there work-arounds you wo

[fw-general] issues with Zend_Controller_Plugin_ErrorHandler

2007-08-16 Thread Dan Rossi
Hi trying to bubble an error when throwing something like this as Zend_Auth wont do it for u it seems if (!$auth->hasIdentity()) { throw new Zend_Auth_Adapter_Exception("Not Allowed Access"); } The return type to the error controller is always EXCEPTION_OTHER. Id like

[fw-general] Adding a helper for authentication again

2007-08-16 Thread Dan Rossi
Hi there, I cant seem to see the thread where someone mentioned about using a helper for authentication. Any ideas where how to set this up ? I basically need to set a method to run Zend_Auth checks on protected pages. I tried looking into integrating ACL's aswell but the documentation integrat

[fw-general] forms and getBaseUrl()

2007-08-16 Thread massivo
Hi. I have a problem with forms (method=post) and the action attribute (the same page that have the form). Why if use: '' don't receive my POST variables with: $this->getRequest()->getParams( in my action controller or my helper? However, if use '' or send with method="GET", everything go