Re: [fw-general] Comment on Zend_Validate

2007-02-02 Thread Markus Wolff
Troy L. Marker schrieb: My suggestion is to change how the validation receives it values. For instance, you have an array as follows: $aData = ('username' = 'someone', 'password' = 'somepass'); You could pass this array to Zend_Validata as follows: $valid = new Zend_Validate($aData); Now

[fw-general] Re: OFFI-SPAM [fw-formats] Re: [fw-general] Authentication in Mail Class

2007-02-02 Thread Andries Seutens
Though this should be part of Zend_Auth, and not Zend_Mail please see: http://framework.zend.com/wiki/display/ZFDEV/Zend_Auth Best, Andriesss Gavin Vess schreef: Looking at the code below, and the C code I wrote for SASL authentication in Postfix, I am not confident that sufficient code

Re: [fw-general] Comment on Zend_Validate

2007-02-02 Thread Markus Wolff
Darby Felton schrieb: We do not yet have a component that provides full functionality for working with forms; this is a large undertaking, and there are a couple of proposals for such: Zend_Form - Simon Mundy Ralf Eggert http://framework.zend.com/wiki/x/DA4 Zend_Form_Controller Proposal -

Re: [fw-general] updating /library to current SVN problems

2007-02-02 Thread Ralf Eggert
Hi Michael, I also use find() fetchRow(). What am I doing wrong? I guess you are doing nothing wrong. I just updated to the latest nightly myself and encountered the same notices. These notices are due to a change to the Zend_Db_Adapter_Pdo_Mysql::describeTable() method which does not work

[fw-general] zend_date

2007-02-02 Thread Michael Baerwolf
I've been trying to use zend_date to rearrange mysql dates and am having problems. when i try the examples from the manual $date = new Zend_Date(); print $date; or $date = new Zend_Date(); print $date-get(); I get Warning: Missing argument 1 for Zend_Date::__construct(), called in

Re: [fw-general] PEAR Channel Distro

2007-02-02 Thread Gavin Vess
I see much value in each of the following scenarios, which combined form what I expect to cover the majority of use cases: 1) PEAR component distributing entire ZF (for developers interested primarily in the latest official release of the incubator, docs, and tests, with an easy mechanism to

[Fwd: Re: [fw-general] PEAR Channel Distro]

2007-02-02 Thread Michael Gauthier
I forgot to reply to the list. ---BeginMessage--- Solution #2 would be great for silverorange. If we want the latest and greatest from the incubator packages for our dev servers we can do a SVN checkout. Also, we love your on-line documentation. On Fri, 2007-02-02 at 14:05 -0800, Gavin Vess

Re: [fw-general] zend_date

2007-02-02 Thread Matthew Ratzloff
Hi Mike, If you're pulling dates from MySQL, why not use DATE_FORMAT()? http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function-date-format Hope that helps, -Matt I've been trying to use zend_date to rearrange mysql dates and am having problems. when i try the

[fw-general] getting controllers into subdirectories

2007-02-02 Thread Patrick Veach
Greetings to Zend Framework team; Is there an example of getting the rewrite router to work with controllers in subdirectories? I have several controllers and I would like to group them into different functional areas and place them into subdirectories. I want the URL *' /testing/test/info'

Re: [fw-general] PEAR Channel Distro

2007-02-02 Thread Rob Allen
Matthew Weier O'Phinney wrote: Just a note: most PEAR packages contain, minimally, tests, and often documentation and examples. I only actually discovered this recently when one pear package put it's docs and tests in c:\php\pear even though my install is in c:\programs\php\pear ...