[fw-general] Zend Framework 1.8.0 BETA 1 Release

2009-04-22 Thread Matthew Weier O'Phinney
Zend Framework 1.8 Beta 1 is available at: http://framework.zend.com/download/latest This release is feature complete, but may contain a few issues yet; the Zend Framework team strongly recommends against using it in production. For those that missed the 1.8.0 preview release, there are a

Re: [fw-general] Zend_Tag - lack of examples

2009-04-22 Thread Ben Scholzen 'DASPRiD'
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Oh, and just as a footnode: I'll publish a complete feature-covering screencast about Zend_Tag together with the GA. ... : ___ _ ___ ___ ___ _ ___: : | \ /_\ / __| _ \ _ (_) \ : : | |) / _ \\__ \ _/ / |

Re: [fw-general] Zend_Tag - lack of examples

2009-04-22 Thread Ben Scholzen 'DASPRiD'
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks for the feedback, I'll add some more examples for the GA. ... : ___ _ ___ ___ ___ _ ___: : | \ /_\ / __| _ \ _ (_) \ : : | |) / _ \\__ \ _/ / | |) | : : |___/_/:\_\___/_| |_|_\_|___/ : :..

[fw-general] Zend_Tag - lack of examples

2009-04-22 Thread holografix .
Hi Zend_Tag it's a good component but it needs more examples in the manual. Examples about options, decorators, zend_taggable_tag interface. regards holo

Re: [fw-general] Zend_Filter_Encrypt_Mcrypt Key Modified Before Encryption/Decryption

2009-04-22 Thread James Stuart
Thomas, I don't think I'm following completely. I'm not suggesting we eliminate salts or vectors. What I'm discussing does not impact the vector, which is the salt component of this, at all. Once the vector is set, that vector is used, unmodified, through the encrypt and decrypt processes. Thi

[fw-general] setting validator error message in a config file

2009-04-22 Thread Mike Wright
Hi all, Been having a heck of a time with this. I'm trying to define my forms within config.ini files and have made it part way. The part that I can't figure out is how to set the error message template or even the error message within those files. To produce the following element: I put

Re: [fw-general] .htaccess & (view helper $this->url) question

2009-04-22 Thread 411161
411161 wrote: > > My application's url is something like this: > http://localhost/zend/AppName > > We use Oracle's Policy manager for our single sign-on environment. If i go > to the url above in my preDispatch method, it checks to see whether a > session is set. If it is not, I forward it to

Re: [fw-general] Zend_Filter_Encrypt_Mcrypt Key Modified Before Encryption/Decryption

2009-04-22 Thread Thomas Weidner
So you propose not to use SALT but to lower the security for the encryption. My opinion is that default behaviour should provide as much security as possible. You should add a issue to jira as feature request for having lowered security integrated. I would see this as feature increasement even

Re: [fw-general] Zend_Filter_Encrypt_Mcrypt Key Modified Before Encryption/Decryption

2009-04-22 Thread James Stuart
Sorry, I meant Thomas and not Tom. It's been a long day. James On Wed, Apr 22, 2009 at 2:07 PM, Thomas Weidner wrote: > James, > > You may be mistaken by the used notations. > > For mcrypt you don't need just a key for decryption. > You also need the vector from the encryption to get the conten

Re: [fw-general] Zend_Filter_Encrypt_Mcrypt Key Modified Before Encryption/Decryption

2009-04-22 Thread James Stuart
Tom, Sorry, I wasn't clear in my first e-mail. We're setting both a vector and a key. However, when the encrypt or decrypt routine is run, the key itself is modified while the vector is left unchanged. For example, given the following values: Key: 1234567890ABCDEFGHIJKLMNOPQRSTUV (32 byte, 256

Re: [fw-general] Zend_Filter_Encrypt_Mcrypt Key Modified Before Encryption/Decryption

2009-04-22 Thread Thomas Weidner
James, You may be mistaken by the used notations. For mcrypt you don't need just a key for decryption. You also need the vector from the encryption to get the content decrypted. Take a look at the manual for details. The point is, that the key is used as base for creating the encryption-vector

[fw-general] Zend_Filter_Encrypt_Mcrypt Key Modified Before Encryption/Decryption

2009-04-22 Thread James Stuart
Hi, I encountered an interesting problem with Zend_Filter_Encrypt_Mcrypt. We are hoping to use it to interact with a database that contains encrypted information.  We set everything up, plugged our keys in, fired up the app... and nothing decrypted properly.  After a little big of digging, we fou

[fw-general] Any Gdata classes for Analytics API?

2009-04-22 Thread thompsa6
I just learned of the Google Analytics Export API today. I'm about to put together a Gdata client for that service but wanted to check with the community to see if there was anything like this already out there? Thanks in advance. -thompsa6 -- View this message in context: http://www.nabble.com

Re: [fw-general] size limit raised on javascriptCaptureStart()

2009-04-22 Thread Matthew Weier O'Phinney
-- Guillaume Oriol wrote (on Wednesday, 22 April 2009, 06:28 AM -0700): > I missed something when tracking this bug: > if you look closely to the regexp, you'll see a question mark following ".*" > in parenthesis. > I guess this is an error as I don't understand its meaning. In PCRE, *? is a non-

Re: [fw-general] size limit raised on javascriptCaptureStart()

2009-04-22 Thread Eric Coleman
http://us.php.net/manual/en/pcre.configuration.php Could it be those 2 configurable limits causing the problems? We had some problems here a while back with hitting the backtrack limit which was causing weird behaviour, perhaps your running into the same issues. On Wed, Apr 22, 2009 at 9:28 AM,

[fw-general] .htaccess & (view helper $this->url) question

2009-04-22 Thread 411161
My application's url is something like this: http://localhost/zend/AppName We use Oracle's Policy manager for our single sign-on environment. If i go to the url above in my preDispatch method, it checks to see whether a session is set. If it is not, I forward it to the single sign-on page which

Re: [fw-general] communicating with forwarded action

2009-04-22 Thread lightflowmark
Apologies, I didn't read that last bit before replying. I would still use the parameter array and add a 'layout' value - not sure what you mean by 'don't want to bother its code'. In which case, you need to store the layout variable elsewhere. How about using FlashMessenger, which is designed

Re: [fw-general] size limit raised on javascriptCaptureStart()

2009-04-22 Thread Guillaume Oriol
Hi Matthew, I missed something when tracking this bug: if you look closely to the regexp, you'll see a question mark following ".*" in parenthesis. I guess this is an error as I don't understand its meaning. On my server: $a = str_repeat('a', 49997); $a = preg_replace('/^\s*(.*?)\s*$/s', '$1',

Re: [fw-general] communicating with forwarded action

2009-04-22 Thread antonM
hi lightflowmark, thanks for your idea. but no, i said i do not want to pass parameters. passing a parameter would mean i have to handle it the parameter from the forwarded action. if i want to change the layout of the forwarded action and pass the layout that should be used then the forwarded act

Re: [fw-general] RFC: Zend_Dojo_Data & associative arrays

2009-04-22 Thread Matthew Weier O'Phinney
-- lightflowmark <1...@lightflowinterrupted.com> wrote (on Wednesday, 22 April 2009, 05:44 AM -0700): > I've been trying to assemble data suitable for building a Dojo tree widget. > I've assembled my data as an associative array (actually an assoc. arr. of > objects, but that's not relevant), whic

[fw-general] RFC: Zend_Dojo_Data & associative arrays

2009-04-22 Thread lightflowmark
I've been trying to assemble data suitable for building a Dojo tree widget. I've assembled my data as an associative array (actually an assoc. arr. of objects, but that's not relevant), which seems intuitive to me - in any event, there's no way around it that I can see for my use-case. The probl

Re: [fw-general] communicating with forwarded action

2009-04-22 Thread lightflowmark
You can pass parameters as the 4th arg to _forward: $this->_forward('foo', 'bar', 'module',$this->getRequest()->getParams()); antonM wrote: > > Hi, I was wondering whether it's possible to communicate with the > forwarded action in calling the _forward function. > > for example: > > class

Re: [fw-general] size limit raised on javascriptCaptureStart()

2009-04-22 Thread Guillaume Oriol
Thank you Matthew for your answer but, according to PHP manual, the trim() function removes ALL whitespace characters from beginning/end of the string (and not only the first one). Furthermore, the trim() function removes not only space but also: * "\t" (ASCII 9 (0x09)) * "\n" (ASCII 10 (0

[fw-general] Re: Zend Form Validators and their options

2009-04-22 Thread J DeBord
I discovered "one" solution, though it looks a bit fishy to me. Is this how you must set the messages? And my first question still stands. In the email address validator below, "messages" is an option. But where do I look in the source to know that I can pass the option "messages"? I am really i