Re: [fw-general] Zend_Date::getDate() don't return a clone in the DATE_MEDIUM format

2007-03-31 Thread Laurent Melmoux
Hi, I'm runing on a linux debian sarge with php version 5.2.1-0 (dotdeb package). Here is my output : 2007-03-31T10:13:17+02:00 2007 7-4-01T01:00:00+0100 -- Laurent Melmoux, [EMAIL PROTECTED] Annecy - France Gavin Vess a écrit : Hi Julien, What is the output when you run the script

Re: [fw-general] Zend_Date::getDate() don't return a clone in the DATE_MEDIUM format

2007-03-31 Thread Thomas Weidner
I'm runing on a linux debian sarge with php version 5.2.1-0 (dotdeb package). Here is my output : 2007-03-31T10:13:17+02:00 2007 7-4-01T01:00:00+0100 Sorry to mention but your output is missing something. Eighter you forgot the 4th line of output, or you forgot to mention an expection or

Re: [fw-general] Zend_Date::getDate() don't return a clone in the DATE_MEDIUM format

2007-03-31 Thread Thomas Weidner
Hi Julien, What is the output when you run the script below? Maybe you both (laurent, julien) can check with the latest SVN version ? I changed internaly from DATE_MEDIUM to DATE_FULL, which makes the function slower but could solve the mentioned problems. Greetings Thomas I18N Team Leader

Re: [fw-general] Zend Feed / Atom / XHTML content

2007-03-31 Thread Alexander Netkachev
Hi, Atom has tree formats for text element content: text, html, xhtml. text means that the content of the element should be displayed as it is, so if you write summary type=text![CDATA[emtest/em]]/summary then you see exactly that is in the summary. html means that the content of the element

Re: [fw-general] Zend_Date::getDate() don't return a clone in the DATE_MEDIUM format

2007-03-31 Thread Laurent Melmoux
I just checked with the latest SVN version and it work : 2007-03-31T14:26:31+02:00 2007 2007-04-01T02:00:00+02:00 2007 -- Laurent Melmoux, [EMAIL PROTECTED] Annecy - France Thomas Weidner a écrit : Hi Julien, What is the output when you run the script below? Maybe you both (laurent,

[fw-general] Zend Locals Minor Bug Report

2007-03-31 Thread Alexander Jaeger
Hello List, i didn´t not find a way to file a bug, so I will try it this way. I tried using the issue tracker, either there is no way, or i am being plain stupid ;) So here is the Bug i found: if you use Zend_Locals with 'en' as Locale and generate the countrylist by using

Re: [fw-general] Zend Locals Minor Bug Report

2007-03-31 Thread Thomas Weidner
i didn´t not find a way to file a bug, so I will try it this way. http:\\framewor.zend.com\issues\browse\ZF I tried using the issue tracker, either there is no way, or i am being plain stupid ;) http://framework.zend.com/wiki/display/ZFDEV/Issue+Tracker+Etiquette or file a CLA to Zend. if

Re: [fw-general] Operating with file system: OO approach

2007-03-31 Thread Ralph Schindler
Have you looked into the SPL? http://www.php.net/~helly/php/ext/spl/ Specifically: DirectoryIterator, SPLFileInfo, SplFileObject You might find some useful information and File/Directory patterns in there. -ralph Ivan Ruiz Gallego wrote: Hello Matt, Well. In first instance I am thinking

Re: [fw-general] Operating with file system: OO approach

2007-03-31 Thread Kevin McArthur
There is also an excellent binary file parser in Zend_Pdf if you need to parse a binary file format. Kevin - Original Message - From: Ralph Schindler [EMAIL PROTECTED] To: Ivan Ruiz Gallego [EMAIL PROTECTED] Cc: fw-general@lists.zend.com Sent: Saturday, March 31, 2007 1:25 PM Subject:

Re: [fw-general] Zend_File_Parser, Zend_String, etc. (was: Operating with file system: OO approach)

2007-03-31 Thread Matthew Ratzloff
LOL Naturally, you post this after I spend part of my weekend writing a byte parser with similar functionality. :-D This needs to split off into its own component ASAP. Additional functionality can get filled in as it comes. Some really useful stuff in there for file parsing. The current