Re: [fw-general] components/partials in ZF

2007-01-26 Thread nervo
i was also looking for such functionnality, plus, i wanted that particular action could be called in a view context. As it is not seems to be (yet ?) included, here is my temporary solution : let's define a Widget.php helper : class Zend_View_Helper_Widget { public function

[fw-general] Support for $_FILES in Zend_Controller_Request_Http

2007-01-26 Thread Georg von der Howen
Hi, I can't find specific methods to access data about uploaded files from a Zend_Controller_Request_Http object. Is there a reason for not supporting the global $_FILES in that class? Best regards, Georg

Re: [fw-general] Support for $_FILES in Zend_Controller_Request_Http

2007-01-26 Thread Lars Strojny
Hi, Am Freitag, den 26.01.2007, 15:02 +0100 schrieb Georg von der Howen: Hi, I can't find specific methods to access data about uploaded files from a Zend_Controller_Request_Http object. Is there a reason for not supporting the global $_FILES in that class? I would suggest to implement

Re: [fw-general] RE: Late static binding for PHP 5

2007-01-26 Thread Antalóczy Tibor
Has anyone tried Doctrine and ZF together? I wanted to do a little test today, but I run into trouble: ZF autoload was trying to handle Doctrine autoload tasks. If I removed all ZF parts, the Doctrine was running nicely, but the two together had some problem. Since I have no experience in

Re: [fw-general] Interesting Zend_Search additions

2007-01-26 Thread Alexander Veremyev
Hi Simon, There was no HTML documents parsing/indexing capability in Zend_Search up to now. But it's most common format for Internet :) It's experimental now, so it's not documented and I didn't make any announcement :) I consider what should be used for this. 1) Pure PHP parser gives

[fw-general] Zend_Search query language

2007-01-26 Thread Alexander Veremyev
Hi all, I had some request on Zend_Search_Lucene query parser behavior. Zend_Search uses OR as default for words in a search query. There was a question, why it doesn't use AND. Java Lucene uses OR. But for example Google uses AND. Any thoughts? With best regards, Alexander Veremyev.

Re: [fw-general] Zend_Search query language

2007-01-26 Thread Steph Fox
Hi Alexander, Zend_Search uses OR as default for words in a search query. There was a question, why it doesn't use AND. Java Lucene uses OR. But for example Google uses AND. Any thoughts? I'd say AND as default is more traditional. I'm also wondering what the problem is with a cached

Re: [fw-general] Zend_Search query language

2007-01-26 Thread Alexander Veremyev
Steph Fox wrote: Hi Alexander, Zend_Search uses OR as default for words in a search query. There was a question, why it doesn't use AND. Java Lucene uses OR. But for example Google uses AND. Any thoughts? I'd say AND as default is more traditional. OK I'm also wondering what the problem

Re: [fw-general] Zend_Search query language

2007-01-26 Thread Matthew Ratzloff
I don't know that Zend_Search_Lucene should stray too far from the guidelines set out by Apache Lucene. It is, after all, a PHP implementation of Apache Lucene. -Matt - Original Message - From: Steph Fox [EMAIL PROTECTED] To: Alexander Veremyev [EMAIL PROTECTED];

[fw-general] Zend_Search_...?

2007-01-26 Thread Matthew Ratzloff
Since the Lucene search is Zend_Search_Lucene and not Zend_Search itself, I've been wondering if we'll see additional search implementations after 1.0, and what those might be. Is Lucene sufficient for most people, or are there other options out there that people would like to see? Just

Re: [fw-general] RE: Late static binding for PHP 5

2007-01-26 Thread Matthew Weier O'Phinney
-- Antal??czy Tibor [EMAIL PROTECTED] wrote (on Friday, 26 January 2007, 08:32 PM +0100): Has anyone tried Doctrine and ZF together? I wanted to do a little test today, but I run into trouble: ZF autoload was trying to handle Doctrine autoload tasks. If I removed all ZF parts, the Doctrine was

Re: [fw-general] Zend_Search_...?

2007-01-26 Thread Gavin Vess
Speaking purely from my personal thoughts ... I have used numerous search engines over the past 12 years, some costing six figures for a license. There are some reasonable alternatives, but only for rare situations, IMHO: o commercial - those needing one of the premium commercial search

RE: [fw-general] Zend_Search_...?

2007-01-26 Thread Andi Gutmans
We actually had an internal proposal from IBM on how to create a generic Zend_Search interface which could then have various implementations (Lucene, OmniFind, etc. etc..). Some might just be search engine infrastructure like Lucene and others might be more powerful enterprise search ala Google,

Re: [fw-general] Zend_Search_...?

2007-01-26 Thread Michael Gauthier
At silverorange, we've written a custom, database driven search engine for our sites. It's called NateGoSearch and is available under the LGPL. The documentation is not perfect (API documentation exists but no tutorials or high-level documentation exists) but it does work for what we need. See

Re: [fw-general] Subclassing Zend_Db_Table_Row

2007-01-26 Thread Bill Karwin
Taylor Barstow wrote: Hi, I'd like to add support for subclassing Zend_Db_Table_Row. Is this already in the works or is this a worthwhile thing for me to work on? It would probably be a pretty small patch. Hmm, I meant to send the following to the list, but my Sent folder indicates I

Re: [fw-general] Subclassing Zend_Db_Table_Row

2007-01-26 Thread Will Prater
On Jan 26, 2007, at 3:34 PM, Bill Karwin wrote: Taylor Barstow wrote: Hi, I'd like to add support for subclassing Zend_Db_Table_Row. Is this already in the works or is this a worthwhile thing for me to work on? It would probably be a pretty small patch. Hmm, I meant to send the