[fw-general] Use Zend_Queue for sending mails

2010-05-14 Thread Ralf Eggert
Hi, I want to use Zend_Queue to send bulk mails (newsletters). These newsletters are individualized. I think I have two general options how to handle this: a) Create all Zend_Mail objects and send them serialized to the Zend_Queue. When the queue is processed, I only need to send these

[fw-general] Formatting localized date time wih Zend_Date

2010-05-14 Thread Саша Стаменковић
Hi. I use Zend_Date in my view helper for formatting my dates like $this-date-toString(Zend_Date::DATES); // $this-date instranceod Zend_Date This works perfect, I get 14.05.2010. for sr_RS locale. * * But for time I expect sth like 10:00 (

Re: [fw-general] Formatting localized date time wih Zend_Date

2010-05-14 Thread Thomas Weidner
The serbian time format is defined as HH.mm.ss within CLDR. So eighter the wiki is wrong or unicode is wrong. Greetings Thomas Weidner, I18N Team Leader, Zend Framework http://www.thomasweidner.com - Original Message - From: ??? umpir...@gmail.com To: Nabble Zend

Re: [fw-general] Use Zend_Queue for sending mails

2010-05-14 Thread Jurian Sluiman
On Friday 14 May 2010 08:06:54 Ralf Eggert wrote: Hi, I want to use Zend_Queue to send bulk mails (newsletters). These newsletters are individualized. I think I have two general options how to handle this: a) Create all Zend_Mail objects and send them serialized to the Zend_Queue.

Re: [fw-general] Formatting localized date time wih Zend_Date

2010-05-14 Thread Саша Стаменковић
Thanks for the answer. I live in Serbia, and I have never seen this format before. Can you provide a link to time format spec in CLDR please? Regards, Saša Stamenković 2010/5/14 Thomas Weidner thomas.weid...@gmx.at The serbian time format is defined as HH.mm.ss within CLDR. So eighter the

Re: [fw-general] Formatting localized date time wih Zend_Date

2010-05-14 Thread Aleksey Zapparov
Hello, Sorry to diturb your discussion. But I never know about CLDR at all and was very interested what is it and how to use it :)) So after small investigation here's what I found: CLDR official website is: http://cldr.unicode.org/ You can freely obtain lates specifications from:

Re: [fw-general] Formatting localized date time wih Zend_Date

2010-05-14 Thread Саша Стаменковић
Thanks man. I'll go with extending my own format HH:mm since %H.%M.%S is really silly format for time, especially when date have same format. Regards, Saša Stamenković On Fri, May 14, 2010 at 11:52 AM, Aleksey Zapparov i...@member.fsf.orgwrote: Hello, Sorry to diturb your discussion. But I

Re: [fw-general] Formatting localized date time wih Zend_Date

2010-05-14 Thread Nicolas Grevet
There's a lot of formats in the CLDR that are completely ridiculous. Thanks to the General Conference on Weights and Measures in 1875, French numbers' thousands separator is a non-breaking space... no need to mention there is no way to type a non-breaking space on French and most international

Re: [fw-general] grouped Zend_Form text elements

2010-05-14 Thread Eugene Morgan
This is one way to do it: $city-removeDecorator('DtDdWrapper') -addDecorator('HtmlTag', array( 'tag' = 'dd' )); You'll get markup like this: dt id=zipcode-labellabel for=zipcode class=requiredZipcode / City/label/dt dd id=zipcode-element input type=text

[fw-general] How can change my registred mail adress for this mailing list ?

2010-05-14 Thread d.fohl
How can change my registred mail adress for this mailing list ? I'd like fw-general messages to arrive at another address. Thank you. Denis.

Re: [fw-general] How can change my registred mail adress for this mailing list ?

2010-05-14 Thread Matthew Weier O'Phinney
-- d.f...@df-info.com d.f...@df-info.com wrote (on Friday, 14 May 2010, 04:33 PM +0200): How can change my registred mail adress for this mailing list ? I'd like fw-general messages to arrive at another address. You can't directly; you need to unsub and then subscribe. Unsubscribe this

[fw-general] Serving XHTML with the correct mime-type

2010-05-14 Thread Andrew Ballard
DISCLAIMER: OK, I know that browser support for serving XHTML pages as application/xhtml+xml is not very good yet. That said, since most of the sites I develop using ZF use the XHTML strict doctype, I was experimenting with conditionally serving the pages with the correct mime-type to browsers

Re: [fw-general] Serving XHTML with the correct mime-type

2010-05-14 Thread Hector Virgen
I suggest using the response object for outputting headers instead of doing that in index.php. You might run into issues later when you try to set cookies or start the session if headers have already been sent. To use the response object, you can use a front controller plugin to manipulate the

Re: [fw-general] Serving XHTML with the correct mime-type

2010-05-14 Thread Andrew Ballard
On Fri, May 14, 2010 at 2:27 PM, Hector Virgen djvir...@gmail.com wrote: I suggest using the response object for outputting headers instead of doing that in index.php. You might run into issues later when you try to set cookies or start the session if headers have already been sent. To use the

[fw-general] ZendCon CfP is still open!

2010-05-14 Thread Matthew Weier O'Phinney
Just a reminder, everyone: The ZendCon 2010 Call for Papers is still open through this coming Monday, 17 May 2010: http://dz.zend.com/a/12105 Get your abstracts in -- and hopefully I'll get a chance to meet you in November! -- Matthew Weier O'Phinney Project Lead|

Re: [fw-general] Serving XHTML with the correct mime-type

2010-05-14 Thread Hector Virgen
What problem are you having with nbsp;? I didn't realize it's not valid XHTML. Should it be #160; instead? -- Hector On Fri, May 14, 2010 at 11:54 AM, Andrew Ballard aball...@gmail.com wrote: On Fri, May 14, 2010 at 2:27 PM, Hector Virgen djvir...@gmail.com wrote: I suggest using the

Re: [fw-general] Serving XHTML with the correct mime-type

2010-05-14 Thread Aleksey Zapparov
Hello, As far as I can see it's valid, but not very recommended. Or my english is not good enogh :)) XHTML 1.0 states: If it encounters an entity reference (other than one of the entities defined in this recommendation or in the XML recommendation) for which the user agent has processed no

Re: [fw-general] Formatting localized date time wih Zend_Date

2010-05-14 Thread Hector Virgen
Wow, I didn't know nbsp; existed in 1875! ;) -- Hector On Fri, May 14, 2010 at 3:24 AM, Nicolas Grevet ngre...@alteo.fr wrote: There's a lot of formats in the CLDR that are completely ridiculous. Thanks to the General Conference on Weights and Measures in 1875, French numbers' thousands

[fw-general] Zend_Mail_Protocol_Imap and pcntl_fork()

2010-05-14 Thread whatthejeff
I'm having some issues using Zend_Mail_Protocol_Imap with pcntl_fork(). It seems that connections opened before a call to pcntl_fork() are destroyed when child processes exit. I've posted sample code here: http://pastie.org/960815 http://pastie.org/960815 Thanks - Jeff -- View this message