Re: [fw-general] Zend PDF

2007-05-17 Thread Willie Alberty
On May 7, 2007, at 11:57 AM, Ian Warner wrote: With some other PDF libraries I can set a text box and then fill text within it, it will then wrap to the bioundary settings Is this available in zend pfd if so what methods do I use to acheive this This does not exist in the framework yet bu

Re: [fw-general] How long is my login valid?

2007-05-17 Thread back-2-95
Thanks Darby! Can I set Zend_Session for auth earlier in my code with name "someNamespace" and then use following command with Zend_Auth: $auth->setStorage(new Zend_Auth_Storage_Session('someNamespace')); Would this get session parameters from my Zend_Session? Darby Felton wrote: > > Hello,

Re: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Dale McNeill
Bryce - I think that it should be the job of the Zend_Validate_Builder to understand required and optional fields. Again, I go back to my point that it doesn't make sense for an integer validator to return true for an empty string. An empty string is not an integer, so the correct response

Re: [fw-general] Wiki manual updated - request for XSLT help

2007-05-17 Thread Keith Casey
On 5/17/07, Andries Seutens <[EMAIL PROTECTED]> wrote: As you can see: the line "UNIX timestamp, expressed in seconds elapsed" is displayed on a new line. This messes up the wiki formatting, because it has to be on a single line. Any clues on how to fix this? This one is inherent in how XML/XS

Re: [fw-general] How long is my login valid?

2007-05-17 Thread Darby Felton
Hello, Zend_Auth does not itself exert influence on the length of time that an authentication session is valid. Instead, an authenticated identity would remain valid for as long as the storage backend allows. By default, Zend_Auth_Storage_Session is used, and in this case, any expiration is deleg

Re: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Bryce Lohr
Hi all, Thank you for all of the replies! That feedback is very valuable to me in trying to figure out what to do with this stuff. I appreciate that you took your time to share some of your input. Allow me to elaborate on some the rationale behind the proposed changes, for your kind consider

[fw-general] How long is my login valid?

2007-05-17 Thread back-2-95
I could not find any information regarding this from manual. If I authenticate myself with Zend_Auth, how long is my session valid? -- View this message in context: http://www.nabble.com/How-long-is-my-login-valid--tf3773914s16154.html#a10670953 Sent from the Zend Framework mailing list archive

[fw-general] Zend_Filter_Input

2007-05-17 Thread oetting
Hi, I am trying this: $filters = array( 'from'=>'digits' ); $validators = array( 'from'=>'digits' ); $input = new Zend_Filter_Input($filters,$validators,array()); $input->process(); This gives me three notices about 'from' not being set. I can see that this is corr

Re: [fw-general] Wiki manual updated - request for XSLT help

2007-05-17 Thread Andries Seutens
Hello, I'm still facing some issues with the xslt below. I'll try to explain with an example: Date Parts Date Part Explanation url="http://en.wikiped

Re: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Dale McNeill
Bryce - I think the choice of whether a field is optional or not should be determined at a level above the Zend_Validate_* classes. It just doesn't make sense that passing an empty string to an integer validator would result in a positive result. An empty string is not an integer, and shoul

[fw-general] Using Zend_Search_Lucene

2007-05-17 Thread lukemack
Hi, I have a couple of questions regarding Zend_Search_Lucene which hopefully someone can answer. I'm using the search component on its own from a php application which doesnt use ZF. Php version is 5.2.1. MySQL 4. ZF 0.93 I basically need to understand how to create indexes against some existi

Re: [fw-general] Where should error checking occur?

2007-05-17 Thread Matthew Weier O'Phinney
-- Justin Plock <[EMAIL PROTECTED]> wrote (on Wednesday, 16 May 2007, 07:16 PM -0400): > How would I do something like this: > > 1.) present a form to the user > 2.) user submits it and an error is generated > 3.) either the controller or the model throws an exception > 4.) the user will be presen

Re: [fw-general] Custom Error Pages

2007-05-17 Thread Todd Wolaver
I should have looked a little harder, but I didn't see the changes that were added today: http://www.nabble.com/New-features-added-today-tf3768852s16154.html Answered my question. Todd On May 17, 2007, at 9:05 AM, Todd Wolaver wrote: I am currently displaying custom error pages by checking

Re: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Tom Staals
Hi Bryce, Im a little concerned regarding your decision to validate an empty string. This should not be a default behaviour of a validator class. Bill Karwin new Zend_Filter_input allready deals with this by allowing to set an option to allow a emptry string when such a behaviour is wanted. allo

[fw-general] Custom Error Pages

2007-05-17 Thread Todd Wolaver
I am currently displaying custom error pages by checking for exceptions in the dispatchLoopShutdown(), which works fine with 9.3. After checking out the current trunk (4837) it seems that dispatchLoopShutdown() not run before I get a fatal error. Is this a bug or a planed & expected result

Re: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Pádraic Brady
Hi Thomas, Zend_Validate doesn't throw any Exceptions though. The errors are either set when constructing the Validation object (personal preference) or defined in a callback per Bryce's proposal. I was simply noting that alleviating some of the complexity in adding Validator information to the

Re: [fw-general] Controller problem 0.8.0

2007-05-17 Thread depace
hello guys i got another problem with isapi_rewrite.. i have a rule to redirect everything to index.php file.. this works fine.. but when i pass on a query string.. it gives 404 error [ISAPI_Rewrite] RepeatLimit 20 RewriteRule ^[\w/\%]*(?:\.(?!(?:js|ico|gif|jpg|png|css|swf)$)[\w\%]*$)? /index

Re: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Thomas Weidner
Related to I18N translations: We already discussed the problem of making exceptions multilingual. When we integrate such a functionality it should not only be done for Zend_Validate but for the complete framework. All other integrations would be nonsense in my opinion, if we make only one or tw

Re: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Pádraic Brady
Hi Bryce, Currently using a homebrewed system which would be forgiving of change since it's automated with a Factory. If the change is worthwhile and others agree I have no problem with change. I read your proposal yesterday. I think the main thing I don't fully agree with it is the external m

RE: [fw-general] Proposed backward-incompatible changes to Zend_Validate_* classes

2007-05-17 Thread Simon R Jones
Hi Bryce, Lots of activity this month on things like Zend_Filter_Input and your new proposal, which is good. So you know our company are using Zend_Validate quite extensively. We're working on an E-Commerce system based on ZF which obviously we're trying to keep up with any changes as they occur.