Re: [fw-general] Laggy JIRA

2007-04-19 Thread Jan Pieper
JIRA is laggy again. Whats up? -- Jan I think JIRA is very laggy at the moment. Is there someone working on it (updates, ...) or why is it so laggy? Yesterday it was also laggy at the same time. -- Jan

Re: [fw-general] Thanks to Gavin Vess

2007-04-19 Thread Jan Pieper
Hmm... :( Okay thanks for your work, help and discussions Gavin :) It´s a pity but you´ll now why you do that and it should be the right way. We can´t bar you from doing it, so i wish you a good time in future. -- Jan We would like to thank Gavin Vess for his enthusiasm and contributions

[fw-general] test

2007-04-19 Thread Arnaud Limbourg

Re: [fw-general] Thanks to Gavin Vess

2007-04-19 Thread Pádraic Brady
All the best to Gavin in his future adventures :) Pádraic Brady http://blog.astrumfutura.com http://www.patternsforphp.com - Original Message From: Bill Karwin [EMAIL PROTECTED] To: Zend Framework fw-general@lists.zend.com Sent: Wednesday, April 18, 2007 11:05:16 PM Subject:

Re: [fw-general] Thanks to Gavin Vess

2007-04-19 Thread Michael Depetrillo
Thank you Gavin for all your contributions. On 4/18/07, Bill Karwin [EMAIL PROTECTED] wrote: We would like to thank Gavin Vess for his enthusiasm and contributions to the Zend Framework over the past months. Gavin has left Zend Technologies, and we wish him well in all of his future

[fw-general] Re: diff in double-to-string conversion 5.2.1 vs 5.2.2

2007-04-19 Thread Antony Dovgal
On 04/15/2007 11:05 AM, Sebastian Nohn wrote: ?php $a = 69; var_dump($a); $b = A is: .$a; var_dump($b); ? 5.2.1 output is: float(6.9E+9) string(16) A is: 69 5.2.2-dev output is: float(6.9E+9) string(12) A is: 6.9E+9 Fix committed, please test the next snapshot. -- Wbr,

[fw-general] Re: diff in double-to-string conversion 5.2.1 vs 5.2.2

2007-04-19 Thread Sebastian Nohn
Hi, On Thu, April 19, 2007 11:33 am, Antony Dovgal wrote: On 04/15/2007 11:05 AM, Sebastian Nohn wrote: ?php $a = 69; var_dump($a); $b = A is: .$a; var_dump($b); ? 5.2.1 output is: float(6.9E+9) string(16) A is: 69 5.2.2-dev output is: float(6.9E+9) string(12) A

[fw-general] Re: [PHP-QA] Re: diff in double-to-string conversion 5.2.1 vs 5.2.2

2007-04-19 Thread Antony Dovgal
On 04/19/2007 03:27 PM, Sebastian Nohn wrote: Hi, ?php $a = 69; var_dump($a); $b = A is: .$a; var_dump($b); ? 5.2.1 output is: float(6.9E+9) string(16) A is: 69 5.2.2-dev output is: float(6.9E+9) string(12) A is: 6.9E+9 Fix committed, please test the next snapshot.

[fw-general] How to implement Zend_Acl ?

2007-04-19 Thread Juan Felipe Alvarez Saldarriaga
Hey :) I want to implement Zend_Acl into my application, but I dont know how to put work that with a database model, there are some tutorial or page that I can see ? Another question about Zend_Acl, in the example to add resources: $acl-add(new Zend_Acl_Resource('newsletter')); //

RE: [fw-general] Laggy JIRA

2007-04-19 Thread Bill Karwin
We're investigating as best we can. Running 'top' shows that Fisheye server often uses excessive CPU resources, at the expense of the other processes on the system. Our IT group has in their queue a server upgrade for framework.zend.com. I hope to upgrade both fisheye and JIRA at that time and

[fw-general] Implementing complex Views with ZF

2007-04-19 Thread Pádraic Brady
Hi all, I've been having one of those long discussions about implementing the Zend Framework in a sample application (sort of an exercise a few of us are doing to improve our own practices and knowledge of working with the ZF ;)). When we came to rendering a web page, we assumed there would be

Re: [fw-general] Laggy JIRA

2007-04-19 Thread Jan Pieper
Ah okay, thanks for the info :) -- Jan We're investigating as best we can. Running 'top' shows that Fisheye server often uses excessive CPU resources, at the expense of the other processes on the system. Our IT group has in their queue a server upgrade for framework.zend.com. I hope to

[Fwd: Re: [fw-general] How to implement Zend_Acl ?]

2007-04-19 Thread Darby Felton
Reply to all, reply to all... ;) Original Message Subject: Re: [fw-general] How to implement Zend_Acl ? Date: Thu, 19 Apr 2007 09:59:23 -0700 From: Darby Felton [EMAIL PROTECTED] To: Juan Felipe Alvarez Saldarriaga [EMAIL PROTECTED] References: [EMAIL PROTECTED] Hi Juan,

Re: [Fwd: Re: [fw-general] How to implement Zend_Acl ?]

2007-04-19 Thread Juan Felipe Alvarez Saldarriaga
Nice, thx :) Darby Felton wrote: Reply to all, reply to all... ;) Original Message Subject: Re: [fw-general] How to implement Zend_Acl ? Date: Thu, 19 Apr 2007 09:59:23 -0700 From: Darby Felton [EMAIL PROTECTED] To: Juan Felipe Alvarez Saldarriaga [EMAIL PROTECTED]

Re: [fw-general] Implementing complex Views with ZF

2007-04-19 Thread Matthew Weier O'Phinney
-- Pádraic Brady [EMAIL PROTECTED] wrote (on Thursday, 19 April 2007, 09:40 AM -0700): I've been having one of those long discussions about implementing the Zend Framework in a sample application (sort of an exercise a few of us are doing to improve our own practices and knowledge of working

Re: [fw-general] Implementing complex Views with ZF

2007-04-19 Thread Dale McNeill
I use a dispatchLoopShutdown plugin. This plugin is able to deal with both AJAX responses as well as a normal HTML response. Here's the code: class SiteTemplatePlugin extends Zend_Controller_Plugin_Abstract { public function dispatchLoopShutdown() { // assume that we've already

Re: [fw-general] Thanks to Gavin Vess

2007-04-19 Thread Matthew Ratzloff
Good luck in all your future endeavors, Gavin. I hope you will continue to work on Zend Framework as your free time allows. :-) -Matt On Wed, April 18, 2007 3:05 pm, Bill Karwin wrote: We would like to thank Gavin Vess for his enthusiasm and contributions to the Zend Framework over the past

Re: [fw-general] Implementing complex Views with ZF

2007-04-19 Thread padraic . brady
Thanks for the replies all :). Two-Step View is very useful, but the problem I have is that the View depth (for want of a better term) is variable. I could have any number of sections, each composed of other sections, which themselves are composed of...well, you get the picture. Rather than a

Re: [fw-general] How to implement Zend_Acl ?

2007-04-19 Thread Maurice Fonk
Hello, I too would like to comment on this. I've been trying to use Zend_Acl to restrict access to my models. Basically, what I want is to make certain fields of a database row editable to some, but not to all. It's not that difficult to make some class extending Zend_Db_Table_Row implement

Re: [fw-general] Thanks to Gavin Vess

2007-04-19 Thread Nick Lo
Aside from the big stuff, I'd like to say thanks to Gavin for the bits and pieces he helped me with. Nick We would like to thank Gavin Vess for his enthusiasm and contributions to the Zend Framework over the past months. Gavin has left Zend Technologies, and we wish him well in all of his