Re: [fw-general] Existing Applications?

2007-04-06 Thread Martin Hujer
Hello, In the wiki (http://framework.zend.com/wiki/pages/viewpage.action?pageId=14134) are some Zend Framework applications. Try to search through sourceforge.net and code.google.com too. I've found few other projects there. Martin Hujer Greg Freeman wrote: > > I am interested in seeing some a

[fw-general] New Zend_Log moved to core!

2007-04-06 Thread Bill Karwin
Hi all, Just a heads-up: today we moved the new implementation of Zend_Log from incubator to core. This represents a change to backward compatibility, so I wanted to make a special notice here on the fw-general list that anyone who uses Zend_Log in their applications must rewrite some code as th

Re: [fw-general] Existing Applications?

2007-04-06 Thread Greg Freeman
I am interested in seeing some applications that are built using zend framework as well. The only ones I have found to date which are freely available are simple 'play' applications. I would really like to see a more large scale example. -- View this message in context: http://www.nabble.com/Ex

Re: [fw-general] Zend Search Lucene: Searching for URLs

2007-04-06 Thread Alexander Veremyev
Hi Dave, I checked the index you sent me and found the problem. The problem is that field is not tokenized. So values are stored "as is", but query parser breaks urls into several terms. :( I've created an issue for this: http://framework.zend.com/issues/browse/ZF-1216 While it's not done

Re: [fw-general] Zend_Search fails on Solaris

2007-04-06 Thread Alexander Veremyev
Hi Craig, It wasn't necessary to rebuild index. Apache Lucene file format is system and encoding independent. Data is stored in UTF-8 ("Modified UTF-8") internally. So the fact that you have correct search result on some system exactly means that index is correct and you can copy this index to

[fw-general] Existing Applications?

2007-04-06 Thread Jeffrey Sambells
Hi All, I'm just evaluation (re-evaluating actually) ZF for use in our production environment and I'm wondering if there are any ready-made applications using ZF? Things like catalogues, shopping carts, member management, calendars etc. Is there a list somewhere of existing projects avail

Re: [fw-general] Action-Rewriting

2007-04-06 Thread Kai Meder
Nico Edtinger wrote: I just extended Zend_Controller_Action to change dispatch(): public function dispatch($action) { $method = !empty($_SERVER['REQUEST_METHOD']) ? strtolower($_SERVER['REQUEST_METHOD']) : 'get'; if (method_exists($this, $action . $method)) {

Re: [fw-general] Action-Rewriting

2007-04-06 Thread Nico Edtinger
Hi Kai! I just extended Zend_Controller_Action to change dispatch(): public function dispatch($action) { $method = !empty($_SERVER['REQUEST_METHOD']) ? strtolower($_SERVER ['REQUEST_METHOD']) : 'get'; if (method_exists($this, $action . $method)) {

Re: [fw-general] Action-Rewriting

2007-04-06 Thread Kai Meder
frederic wolf wrote: everybody knows the form-POSTing problem if you hit the back- or refresh-button: "the page has expired bla bla"... i want to implement two methods: editAction(): display form _editAction(): process form and http-redirect back to editAction() however, it seems that the rou

Re: [fw-general] Action-Rewriting

2007-04-06 Thread frederic wolf
Kai Meder a écrit : Hello, everybody knows the form-POSTing problem if you hit the back- or refresh-button: "the page has expired bla bla"... i want to implement two methods: editAction(): display form _editAction(): process form and http-redirect back to editAction() however, it seems that

[fw-general] Action-Rewriting

2007-04-06 Thread Kai Meder
Hello, everybody knows the form-POSTing problem if you hit the back- or refresh-button: "the page has expired bla bla"... i want to implement two methods: editAction(): display form _editAction(): process form and http-redirect back to editAction() however, it seems that the routing-process

Re: [fw-general] Zend Framework 0.9.2 release plan

2007-04-06 Thread Maurice Fonk
I too would like to say thank you to all of you who have put in effort to make the framework into what it is today. I don't know if this is the right place for praise, but I really enjoy coding using the framework as my base. Things that used to take me hours of hacking, googleing and trial-and

[fw-general] Notice in Zend_Controller_Route_/Route

2007-04-06 Thread Olivier Sirven
Hi, There is a notice in Zend/Controller/Router/Route.php on line 248 when the assemble method is used. I have created a JIRA issue: http://framework.zend.com/issues/browse/ZF-1211 Olivier