Re: [fw-general] modules and Zend_Tool

2009-06-05 Thread swilhelm
What is the status of Zend_Tool module support? Matthew Weier O'Phinney-3 wrote: -- David Mintz da...@davidmintz.org wrote (on Friday, 01 May 2009, 01:19 PM -0400): I've googled around quite a bit and not been able to figure this out: what is the currently recommended way of creating

Re: [fw-general] modules and Zend_Tool

2009-06-05 Thread Jurian Sluiman
Op Friday 05 June 2009 08:32:26 schreef swilhelm: What is the status of Zend_Tool module support? Matthew Weier O'Phinney-3 wrote: -- David Mintz da...@davidmintz.org wrote (on Friday, 01 May 2009, 01:19 PM -0400): I've googled around quite a bit and not been able to figure this out:

Re: [fw-general] modules and Zend_Tool

2009-06-05 Thread Brenton Alker
swilhelm wrote: What is the status of Zend_Tool module support? I've been looking at it yesterday and today, and it seems to all be there, but is buggy. This morning I uploaded some patches to the issue tracker that fix the problems I ran into last night (most were already open issues), which

[fw-general] XML and paginator

2009-06-05 Thread PHPScriptor
Hello, I've a xml-file with data in it. Is it possible to read this file and parse it through paginator? An example would be nice :-). Greetings - visit my website at http://www.phpscriptor.com/ http://www.phpscriptor.com/ -- View this message in context:

[fw-general] Zend_Form default decorators

2009-06-05 Thread Dalibor Karlović
I've extended Zend_Form with stuff like: public function isSubmitted(Zend_Controller_Request_Http $request) (handling multiple forms on the same page) which all ove my forms extend instead of Zend_Form. I'd also like to set default decorators for form, display groups and elements. It's easy for

Re: [fw-general] XML and paginator

2009-06-05 Thread umpirsky
Hi. Implementing Zend_Paginator_Adapter_Xml sounds like zend style solution to me. PHPScriptor wrote: Hello, I've a xml-file with data in it. Is it possible to read this file and parse it through paginator? An example would be nice :-). Greetings -- View this message in context:

[fw-general] - Using router

2009-06-05 Thread Vibhor Singh
Hi all, I have a modular ZF application. I am trying to use the Standard Router to rewrite some urls. I want to make this link: http://domain.com/project_folder/news/news/view/id/67 to be pointed as http://domain.com/project_folder/ http://domain.com/project_folder/%20view/id/67

Re: [fw-general] - Using router

2009-06-05 Thread Vadim Gabriel
You will need to register the router stuff earlier then in the init function since the request object was initiated already. On Fri, Jun 5, 2009 at 1:42 PM, Vibhor Singh vib...@pivisions.net wrote: Hi all, I have a modular ZF application. I am trying to use the Standard Router to rewrite

[fw-general] Escaping constants in Zend_Date

2009-06-05 Thread petewilliams1983
Hi, I'm trying to output a date using Zend_Date, in the form: '05/06/2009 at 02:04:56pm' But I can't figure out how to escape the 'a' in 'at', and it's getting parsed into 'pm'. I've tried all sorts of escaping characters but none seem to work, such as: echo $date-toString('dd/MM/ \at

[fw-general] filter and validator conflict

2009-06-05 Thread Guillaume Oriol
Let say I have an INPUT field in a form representing a password. As I want to limit the password size to 10 characters, I add a Zend_Validate_StringLength validator to the form element. But, as this field is a password and I don't want to store a plain password in the database, I need to encrypt