Re: [fw-general] Bug in Zend_Feed_Atom: line 273

2007-04-02 Thread Olivier Sirven
Hi, A JIRA issue has been created here: http://framework.zend.com/issues/browse/ZF-1183 Thanks for the report! Olivier Le lundi 2 avril 2007, Alexander Netkachev a écrit : Hi, Currently feed sets all entry updated time to current time. 273$updated = isset($array-lastUpdate) ?

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

2007-04-02 Thread Justin Hendrickson
I believe PEAR::VFS would work well for you, based on your description. http://pear.php.net/package/VFS On 3/31/07, Ivan Ruiz Gallego [EMAIL PROTECTED] wrote: Hello, I am looking for a class or a set of classes that allow an object-oriented operation with the file system. I am working now

Re: [fw-general] Zend_Mime - encodeQuotedPrintable Bug?

2007-04-02 Thread Graham Anderson
Mario Knippfeld wrote: Hi, in Zend/Mime.php on line 142 there seems to be a bug: if the length of var $ptr is 2 and $pos = 0, there will be an infinite loop. Mario, as far as I'm aware this is fixed in 0.9.1 regards Graham

[fw-general] Routing URL calls to multiple controllers

2007-04-02 Thread Stephan Stapel
Hi! I hope that this question is not too silly. I am still thinking about this portal thing, i.e. how to implement a site using Zend Framework that consists of portal container pages and portlets within these containers. When invoking an action, this action needs to be routed to the appropriate

Re: [fw-general] Zend_Mime - encodeQuotedPrintable Bug?

2007-04-02 Thread Graham Anderson
Olivier Sirven wrote: Hi, It is a known problem, there is already a JIRA issue reporting the problem here: http://framework.zend.com/issues/browse/ZF-1120 Ah yes I see, I stand corrected. infinite loop bug ZF-1058 was fixed for 0.9.1, not this one...

[fw-general] search engine

2007-04-02 Thread José de Menezes Soares Neto
hi friends, how to create a search engine using zend framework?? i have a database with a lot of products, and when someone type notebook for example, it searchs title and description fields. best regards, José de Menezes

Re: [fw-general] Zend_Parser

2007-04-02 Thread Matthew Ratzloff
This weekend I wrote a GIF parser, and refactored it a bit to use these classes (I do have a life--I did other things, too!). I've renamed some things and added some things (like setByteOrder() and BYTE_ORDER_MACHINE) and spent a couple hours writing an invisible buffering mechanism before

Re: [fw-general] Zend_Parser

2007-04-02 Thread Kevin McArthur
Matthew, Feel like interfacing that with zend_pdf? We have JPEG/PNG/TIFF supprt though only PNG has been translated to the new parser format. Gif support would be cool. Alex Can you explain what you've updated in ZPDF lately, my patch is out of date. Seems like its been reorganized and

Re: [fw-general] search engine

2007-04-02 Thread José de Menezes Soares Neto
Hi, But I already have a database, and this article shows how to search an index created by zend_search_lucene So, I need to create a index from my database, and this is not what they explain... Thanks! - Original Message - From: Alexander Veremyev To: José de Menezes Soares

Re: [fw-general] search engine

2007-04-02 Thread Johannes Schill
Hi José. If you want to search a database, you need to use the database built-in functions. If you're using mysql for example, id recommend you to look at: http://dev.mysql.com/doc/en/Fulltext_Search.html This is done via SQL, therefore you should have a look at Zend_Db instead of Zend_Search:

[fw-general] I18N Newsletter No. 12

2007-04-02 Thread Thomas Weidner
Hy fellows, after a long rest I have once more come together with me (me and myself are sometimes splitted ;-) ) and wrote for you the follwing lines: 12th NEWSLETTER from the I18N TEAM MONTHLY SUMMARY: Yeah... I know... It was long long ago since I have brought to you my last newsletter.

Re: [fw-general] Re: Forwarding - Redirecting

2007-04-02 Thread Matthew Weier O'Phinney
-- Joshua Ross [EMAIL PROTECTED] wrote (on Monday, 02 April 2007, 04:04 PM -0400): I am also curious about this. In order to separate logic in my actions I forward when I have post data. My initial thinking was that redirect sends and recieves some data from the client and as such forward

Re: [fw-general] Bug in Zend_Feed_Atom: line 273

2007-04-02 Thread Alexander Netkachev
Thank you for fix, I've tested it. Sincerely, On 4/2/07, Olivier Sirven [EMAIL PROTECTED] wrote: Hi, The issue has been fixed with commit r4299. Please give it a try and thanks for the report! Olivier Le lundi 2 avril 2007, Olivier Sirven a écrit : Hi, A JIRA issue has been created

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

2007-04-02 Thread Alexander Netkachev
Hi, It does not work but I'm not sure that I did everything correctly... Well, I applied the patch and change the default builder: Builder.php 348$entry = new Zend_Feed_Builder_Entry($row['title'], $row['link'], $row['description'], true); And run the test: $feedArray =

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

2007-04-02 Thread Alexander Netkachev
Hi, I think it should be something similar to the following: ?php $doc = new DOMDocument(); $feed = $doc-appendChild($doc-createElement('feed')); $feed-setAttribute('xmlns', 'http://www.w3.org/2005/Atom'); $summary = $feed-appendChild($doc-createElement('summary'));

Re: [fw-general] Re: Forwarding - Redirecting

2007-04-02 Thread frederic wolf
Matthew Weier O'Phinney a écrit : -- Joshua Ross [EMAIL PROTECTED] wrote (on Monday, 02 April 2007, 04:04 PM -0400): I am also curious about this. In order to separate logic in my actions I forward when I have post data. My initial thinking was that redirect sends and recieves some data