Re: [fw-general] Zend_Scheduler Component

2008-10-26 Thread Vladas Diržys
Hello, I agree, this would be very useful component. -- Regards, Vladas Diržys www.dirzys.com On Fri, Oct 24, 2008 at 2:17 PM, Christian Münch <[EMAIL PROTECTED]>wrote: > Hi, > > in the laboratory is the Zend_Scheduler component. I think this component > could be very useful to manage cronjobs

[fw-general] Anyone on PHP Conference in Mainz?

2008-10-26 Thread Benjamin Eberlei
Hello, i wanted to ask if anyone is going to be on the international PHP conference in mainz next week? Would be great to get together with some of the ZF users/devs.

[fw-general] Does the Zend_pdf component require some extra installation ?

2008-10-26 Thread Eric Roge
Hello, I'm starting a new project - some kind of invoice generator - where the pdf generation will have a critical importance. As I want to use http://www.mediatemple.net/webhosting/gs/features/ my shared server hosted by media temple , I can't install anything on my production server. The Zen

[fw-general] Zend_Form_SubForm Labels

2008-10-26 Thread TheInternetTeam
Each of my Zend_Form_SubForms when rendered are being outputted like this: *stuff* I don't seem able to either remove the or (preferably) to put some text inside of it, i.e. a form heading. Any advice appreciated. -- View this message in context: http://www.nabble.com/Zend_Form_SubF

Re: [fw-general] error in JQuery datepicker?

2008-10-26 Thread Bart McLeod
Hi Benjamin, I was able to remove the error by removing the type hints in your interface. There is no point in having default values array() if you are type hinting for array's. In that case, when the underlying system passes in a null value, for whatever reason, the error will be fatal. pub

Re: [fw-general] Anyone on PHP Conference in Mainz?

2008-10-26 Thread Ralf Eggert
Hi, Benjamin Eberlei schrieb am 26.10.2008 09:56: > i wanted to ask if anyone is going to be on the international PHP > conference in mainz next week? Would be great to get together with some of > the ZF users/devs. Yep, I will likely be there from Tuesday to Thursday. At least there will be two

Re: [fw-general] error in JQuery datepicker?

2008-10-26 Thread Bart McLeod
Sorry Matt, for seeing your question so late. I would like to write a tutorial on devzone about those tricks, but my proposal about that is still under review (Matthew, Cal?). It comes down to delegating the responsibility for adding decorators to a small set of classes that know how to add d

[fw-general] Bughuntday on November 8th, 2008

2008-10-26 Thread Jurriën Stutterheim
Hi all, On Saturday November 8th, the Dutch and Belgian PHP communities have organized the first ever Bughuntday. The next bit is copied from the Bughuntday site: Supporting open-source projects can be done by contributing code, writing or translating manuals or by fixing bugs. For this

Re: [fw-general] Zend_Form_SubForm Labels

2008-10-26 Thread Bart McLeod
It is all a matter of setting the right decorators on both the subform and its elements. Matthew has an excellent article on decorators: http://devzone.zend.com/article/3450-Decorators-with-Zend_Form Bart TheInternetTeam schreef: Each of my Zend_Form_SubForms when rendered are being outputted

Re: [fw-general] Does the Zend_pdf component require some extra installation ?

2008-10-26 Thread Matthew Ratzloff
Hi Eric, According to the manual, "Zend_Pdf module is a PDF (Portable Document Format) manipulation engine written entirely in PHP 5." The key word here being "entirely". That said, if you want to use Flate compression, it currently requires ext/zlib. However, compression is not required to use

Re: [fw-general] error in JQuery datepicker?

2008-10-26 Thread Matthew Ratzloff
Ah, OK. Thanks for the response. FYI, last month Cal accepted a job in the Netherlands. I'm sure that's probably holding up your proposal. http://www.ibuildings.com/news/?story=111 -Matt On Sun, Oct 26, 2008 at 6:29 AM, Bart McLeod <[EMAIL PROTECTED]> wrote: > Sorry Matt, for seeing your que

Re: [fw-general] error in JQuery datepicker?

2008-10-26 Thread Bart McLeod
Hi Matthew, That's truly exciting news, to have the Cal overhere in the Netherlands. Chances are that we get to see more of him then! Regards, Bart Matthew Ratzloff schreef: Ah, OK. Thanks for the response. FYI, last month Cal accepted a job in the Netherlands. I'm sure that's probably

Re: [fw-general] QuickStart and creating a SQLite database

2008-10-26 Thread Steve Horejsi
Nothing quite like answering your own posts. I got this figured out; you need to create the directory structure where the database file will land and give it the correct permissions. Neither the directory structure nor the perms were in the tutorial. So now I have worked my way through the

Re: [fw-general] error in JQuery datepicker? -possible fix /bug in php?

2008-10-26 Thread Bart McLeod
As and addition, I noticed that when putting if(! is_array($attribs)){ var_dump($attribs); //exit(); } inside the function, is actually dumps NULL, while $attribs should be Array{}, because the default is array(). PHP 5.2.5 doesn't seem to assing the default

Re: [fw-general] error in JQuery datepicker? -possible fix /bug in php?

2008-10-26 Thread Bart McLeod
It seems to be by design, if explicit null values are passed in, the default value is of no use: As and addition, I noticed that when putting if(! is_array($attribs)){ var_dump($attribs); //exit(); } inside the function, is actually dumps NULL, while $at

Re: [fw-general] error in JQuery datepicker? -possible fix /bug in php?

2008-10-26 Thread Benjamin Eberlei
Hello Bart, the call signature for all jQuery helper mimics the dojo one: $this->helper($id, $value, array $params=array(), array $attribs=array()) if you want to pass no value leave the parameter entry or put array() in it. null leads to an error, this is desired behaviour. regarding NULL and

Re: [fw-general] error in JQuery datepicker? -possible fix /bug in php?

2008-10-26 Thread Bart McLeod
Hello Benjamin, The problem is that I am NOT the one who is passing the NULL value. It is done internally, somewhere where I can't find it. Otherwise, it would have been very simple to solve. I have tried preserving the original decorator and re-adding it, but that does not work either. So i

Re: [fw-general] error in JQuery datepicker? -possible fix /bug in php?

2008-10-26 Thread Bart McLeod
*testcode to reproduce error:* setView($view); $form->addElement(new ZendX_JQuery_Form_Element_DatePicker("begin", array('label' => 'begin', 'value' => '10-03-2008'))); echo $form; $element = $form->getElement('begin'); $decorator = $element->getDecorator('UiWidgetElement'); $element->setDecor

Re: [fw-general] error in JQuery datepicker? -possible fix /bug in php?

2008-10-26 Thread Bart McLeod
I meant to write $form->removeElement('begin'); but that makes no difference to the result... Bart McLeod schreef: *testcode to reproduce error:* setView($view); $form->addElement(new ZendX_JQuery_Form_Element_DatePicker("begin", array('label' => 'begin', 'value' => '10-03-2008'))); echo $fo

[fw-general] Overriding Zend_Controller_Plugin_ErrorHandler

2008-10-26 Thread Tim Nagel
Hello, I am trying to override the ErrorHandler plugin and I have run into an issue: I have created a plugin, Infinite_Controller_Plugin_ErrorHandler, derived from Zend's copy, and if i register the plugin at stack position 100 (as the current one is done in the Front Controller), I'll get an exc