Re: [fw-general] subclassing router, controller...???

2007-03-03 Thread php
Thanks very much! I was able to get it working, just needed to understand that last paragraph you wrote. I had to add/change some stuff to get it working but now it works great, thanks! Chad Matthew Weier O'Phinney wrote: -- php <[EMAIL PROTECTED]> wrote (on Saturday, 03 March 2007, 05:19

Re: [fw-general] subclassing router, controller...???

2007-03-03 Thread Matthew Weier O'Phinney
-- php <[EMAIL PROTECTED]> wrote (on Saturday, 03 March 2007, 05:19 PM -0600): > I'm sorry, Im trying to get this working But I can't get my route to > route. But I have a few questions: > > What exactly is the Assemble Method supposed to return? Looking at Route > I see this comment: > Assembl

Re: [fw-general] Consistency in naming

2007-03-03 Thread Matthew Ratzloff
Hi Thomas, Actually, most of those are nouns, or double as nouns. For the ones that aren't (Act/Assert, Mime/Decode, etc.), I put in an issue. For example, Memcached is the name of the product (the memcache daemon, like httpd). In some cases, the class directly corresponds to a recognized n

Re: [fw-general] subclassing router, controller...???

2007-03-03 Thread php
I'm sorry, Im trying to get this working But I can't get my route to route. But I have a few questions: What exactly is the Assemble Method supposed to return? Looking at Route I see this comment: Assembles user submitted parameters forming a URL path defined by this route What Submitted Pa

Re: [fw-general] Consistency in naming

2007-03-03 Thread Ralph Schindler
I think you respond related to the issues ZF-944, ZF-945, ZF-946, ZF-947. I am not member of the devteam, so the decission itself was not done by me. Thomas, I dont mean to stir the pot, but like alot of issues that start on the message board, I didn't know it got transfered to Jira for tra

Re: [fw-general] Consistency in naming

2007-03-03 Thread Thomas Weidner
Most people declared Zend_Translate over Zend_Translator, because non native english people know "translate" but do not know "translator"... Why? Do nouns not translate well to other languages? I don't understand. I think you respond related to the issues ZF-944, ZF-945, ZF-946, ZF-947. I am

Re: [fw-general] zend_search_lucene: Is this a bug? Error after adding x number of documents? (ver. 0.8.0)

2007-03-03 Thread Alexander Veremyev
Hi, As I've checked, you don't need ...Common_Text class. All you need is Zend_Search_Lucene_Analysis_Analyzer: -- myCoolAnalyzer.php -- _wordList = explode(' ', $this->_input); reset($this->_wordList); } /** * Tokenization stream API

Re: [fw-general] Consistency in naming

2007-03-03 Thread Ralph Schindler
Most people declared Zend_Translate over Zend_Translator, because non native english people know "translate" but do not know "translator"... Why? Do nouns not translate well to other languages? I don't understand. -ralph

Re: [fw-general] Unexpected action called in Zend Framework controller

2007-03-03 Thread SinnerG
Thanks for your response :) I found out about it this morning (took me some tracking of how Zend Framework works :P) and I indeed made a dispatcher, extending on the standard one. Maybe some others ran into the same trouble, so: thanks again :) Friendly Greetings, Tim M. Matthew Weier O wr

Re: [fw-general] Unexpected action called in Zend Framework controller

2007-03-03 Thread Matthew Weier O'Phinney
-- SinnerG <[EMAIL PROTECTED]> wrote (on Saturday, 03 March 2007, 03:31 AM -0800): > When I call an url like: > > http://www.example.com/controller/my_action > > using the Zend Framework > > it will call Controller->myactionAction(); instead of > Controller->my_actionAction(); > > Anyone know h

Re: [fw-general] Tips on switching from Zend_Service_Rest to..what exactly?

2007-03-03 Thread Matthew Weier O'Phinney
-- Matthew Turland <[EMAIL PROTECTED]> wrote (on Friday, 02 March 2007, 10:36 PM -0600): > After some investigating, I've found that Chris is right. When I try > to run my Simpy unit tests with the latest SVN revision, I get the > same error. The copies of Zend_Uri_Http in incubator and core appear

Re: [fw-general] Is the Wildfire Jabber Server having issues at the moment?

2007-03-03 Thread Johannes Schill
I can't connect to Jabber. Cheers, Johannes Nick Thornley wrote: Is anyone else having problems connecting to the jabber server? I keep getting an error 'Write error'. Cheers. Nick

[fw-general] Is the Wildfire Jabber Server having issues at the moment?

2007-03-03 Thread Nick Thornley
Is anyone else having problems connecting to the jabber server? I keep getting an error 'Write error'. Cheers. Nick

[fw-general] Unexpected action called in Zend Framework controller

2007-03-03 Thread SinnerG
When I call an url like: http://www.example.com/controller/my_action using the Zend Framework it will call Controller->myactionAction(); instead of Controller->my_actionAction(); Anyone know how to solve this? This way people can currently evade my ACL (it is based on controller and action) G