[fw-general] Router problem in 0.6.0

2006-12-21 Thread Matthias Zitzmann
Hi folks, yesterday I moved my application from a patched 0.1.5 to 0.6.0. There were a few changes I need to do in my View-Class (I'm using __get and __set, if I extend Zend_View_Abstract, this won't work any longer). This changes were done in about three hours. The bigger problem is, that the

Re: [fw-general] multiple subscriptions to a list...

2006-12-21 Thread Colin Ross
just a follow up question, did you subscribe to fw-all AND another list, if so, you'll get multiple emails. Oh, and you can also send an email to [EMAIL PROTECTED], for example, [EMAIL PROTECTED] and it will start the process oh unsubscribing c On 12/21/06, Eric Coleman <[EMAIL PROTECTED]> wrot

Re: [fw-general] multiple subscriptions to a list...

2006-12-21 Thread Colin Ross
Visit http://framework.zend.com/wiki/display/ZFDEV/Contributing+to+Zend+Framework#ContributingtoZendFramework-Subscribetotheappropriatemailinglists and unsubscribe to the appropriate lists. Colin On 12/21/06, Eric Coleman <[EMAIL PROTECTED]> wrote: Ok, So, I have a few small issues, there's a

[fw-general] multiple subscriptions to a list...

2006-12-21 Thread Eric Coleman
Ok, So, I have a few small issues, there's a few lists that I appear to be subscribed to multiple times, specifically fw-auth (I think fw-mvc as well, there's a few other ones though I can't seem to figure out which ones atm) How do I get that to friggin stop, it's starting to annoy me to

[fw-general] noRouteController exists ? what solution ?

2006-12-21 Thread andreencinas
noRouteController exists ? what solution ? thanks andre -- View this message in context: http://www.nabble.com/noRouteController-exists---what-solution---tf2869135s16154.html#a8019238 Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread andreencinas
hello, thanks for all attention, andre -- View this message in context: http://www.nabble.com/noRouteAction-no-function-...please-help-tf2863934s16154.html#a8019236 Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Re: Do we really need Zend::exception()?

2006-12-21 Thread Shekar C Reddy
*Backtrace thread: [fw-general] Opcode cache [was: Shared server load times] * ** Since you are going to revamp the code, how about something *generic*? Function to *conditionally *include files: static function includeFiles( $files ) { if ( function_exists( '__autoload' )) return; /

Re: [fw-general] Re: Do we really need Zend::exception()?

2006-12-21 Thread Ralph Schindler
+1 for this. I think the libraries should be coded as per proper coding standards. As far as performance goes, we should wait till 1.0 and evaluate all the methodologies for increasing performance (there are lots), then make educated decisions on how/ and which ones we should integrate into th

Re: [fw-general] Routing Question

2006-12-21 Thread Andrew Yager
Thanks to everyone who replied to my previous question. Should there be any difference in processing $route = new Zend_Controller_Router_Route("/", array ("controller"=>"index", "action"=>"index"), $formats); and $route = new Zend_Controller_Router_StaticRoute("/", array ("controller"=>"ind

Re: [fw-general] Re: Do we really need Zend::exception()?

2006-12-21 Thread Matthew Ratzloff
> I appreciate everyone's input on this discussion. I'd like to reach > closure on what we do with Zend::exception(). I will summarize my > viewpoint on this issue, and then give my proposed resolution: > > [...] > > Comments? Tomatoes? I say change them back to throw new Zend_*_Exception() now

[fw-general] Zend_Search_Lucene UTF-8 encoding

2006-12-21 Thread Sebi
I want to index text in UTF-8 format. I use latin characters. Here are some examples of characters (encoded in ISO-8859-1): ó, é, á, etc. I used iconv function iconv('ISO-8859-1', 'ASCII//TRANSLIT', 'Animación') and i got Animaci'on which also contains some break characters for the tokenizer.

Re: [fw-general] Zend_Session - Ready for Testing!

2006-12-21 Thread Matthew Ratzloff
> There is a really long line in the docs at http://framework.zend.com/ > wiki/display/ZFDOC/Global+Session+Management. I think it's the > "myapp.ini" bit. It's making it a pain to read. Fixed. -Matt

Re: [fw-general] Re: Do we really need Zend::exception()?

2006-12-21 Thread Bill Karwin
I appreciate everyone's input on this discussion. I'd like to reach closure on what we do with Zend::exception(). I will summarize my viewpoint on this issue, and then give my proposed resolution: - Calling Zend::exception() is nonstandard PHP usage. This is an education issue for developer

Re: [fw-general] Zend_Session - Ready for Testing!

2006-12-21 Thread Paul Court
There is a really long line in the docs at http://framework.zend.com/ wiki/display/ZFDOC/Global+Session+Management. I think it's the "myapp.ini" bit. It's making it a pain to read. Paul (aka Gargoyle) On 21 Dec 2006, at 17:38, Gavin Vess wrote: Greetings, and Merry Christmas! Ralph and I

[fw-general] Re: [fw-auth] Zend_Session - Ready for Testing!

2006-12-21 Thread Eric Coleman
Is anyone working on a Zend_Db session handler? If not, is it alright to go ahead and make this? Regards, Eric On Dec 21, 2006, at 12:38 PM, Gavin Vess wrote: Greetings, and Merry Christmas! Ralph and I have been working hard to bring you Zend_Session. To test drive this cool component,

[fw-general] Zend_Session - Ready for Testing!

2006-12-21 Thread Gavin Vess
Greetings, and Merry Christmas! Ralph and I have been working hard to bring you Zend_Session. To test drive this cool component, please see the instructions for using the ZF incubator: http://framework.zend.com/wiki/display/ZFDEV/Subversion+Standards Briefly: 1) Always run "svn update" first,

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Kevin McArthur
These solutions really break the 80/20 rule. Any way to just add a flag/enabling method to the router/front controller to do this and leave this stuff built-in? K - Original Message - From: "Ralf Eggert" <[EMAIL PROTECTED]> To: "Zend Framework General" Sent: Thursday, December 21, 20

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Ralf Eggert
Hi, I had the same problem a couple of weeks ago. Please have a look into this discussion. http://www.nabble.com/Default-controller-is-not-set-tf2746286s16154.html Anyway, I created a plugin which simulates the old behavior. You probably need to reformat the piece of code. class Plugin_Notfou

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Kevin McArthur
With the new module support it should try the module index for a default first too imho. K - Original Message - From: "Willie Alberty" <[EMAIL PROTECTED]> To: "Zend Framework General" Sent: Thursday, December 21, 2006 10:25 AM Subject: Re: [fw-general] noRouteAction no function ..

RE: [fw-general] Zend_Registry needs its set() and has() methods back

2006-12-21 Thread Matthew Ratzloff
> offset* are the names used for overloading OO syntax. So $obj->prop, > $obj->prop = 5 and isset($obj->prop) should all work nicely. > Don't you prefer that syntax? Oh, well that makes more sense. Call my predilection to "set" and "get" poisoning from Java. ;-) Looks like these pages should be

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Willie Alberty
On Dec 21, 2006, at 9:11 AM, Lee Saferite wrote: Wait... doesn't using __call provide the same effect? Nope. Try it: make sure you have a __call() in your IndexController and then go to http://your.site/nosuchcontroller/here -- Willie Alberty, Owner Spenlen Media [EMAIL PROTECTED] http:/

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Lee Saferite
BTW, This discussion belongs in the MVC list ([EMAIL PROTECTED]) On 12/21/06, Lee Saferite <[EMAIL PROTECTED]> wrote: Wait... doesn't using __call provide the same effect? On 12/21/06, Kevin McArthur <[EMAIL PROTECTED]> wrote: > > I second this. Bring back noroute =P > > K > - Original Me

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Lee Saferite
Wait... doesn't using __call provide the same effect? On 12/21/06, Kevin McArthur <[EMAIL PROTECTED]> wrote: I second this. Bring back noroute =P K - Original Message - From: "Willie Alberty" <[EMAIL PROTECTED]> To: "Zend Framework General" Sent: Thursday, December 21, 2006 10:02 AM S

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Kevin McArthur
I second this. Bring back noroute =P K - Original Message - From: "Willie Alberty" <[EMAIL PROTECTED]> To: "Zend Framework General" Sent: Thursday, December 21, 2006 10:02 AM Subject: Re: [fw-general] noRouteAction no function ...please help On Dec 21, 2006, at 5:43 AM, Craig Sl

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Willie Alberty
On Dec 21, 2006, at 5:43 AM, Craig Slusher wrote: On 12/21/06, andreencinas <[EMAIL PROTECTED]> wrote: noRouteAction the indexController not function http://framework.zend.com/manual/en/ zend.controller.migration.html#zend.controller.migration.fromzerotwo The answer to your semi-question i

Fw: [fw-general] Zend_Search_Lucene questions

2006-12-21 Thread Sebi
>> Thank you for your great and detailed explanation. You were very explicit>> >> >> I have one little question yet. You said "Do you have any idea about >> terms selectivity?" What means terms selectivity? >Search behavior and performance hardly depends on a percents of >documents which are ma

Re: [fw-general] Zend_Search_Lucene questions

2006-12-21 Thread Sebi
> Thank you for your great and detailed explanation. You were very explicit> > > I have one little question yet. You said "Do you have any idea about > terms > selectivity?" What means terms selectivity?Search behavior and performance > hardly depends on a percents of documents which are matched

Re: [fw-general] Zend_Search_Lucene questions

2006-12-21 Thread Alexander Veremyev
Sebi wrote: Thank you for your great and detailed explanation. You were very explicit I have one little question yet. You said "Do you have any idea about terms selectivity?" What means terms selectivity? Search behavior and performance hardly depends on a percents of documents which are mat

Fwd: [fw-general] Routing Question

2006-12-21 Thread Lee Saferite
What does your code look like? If, for example, you are using the RewriteRouter, you could do something like this: $router->addRoute('catchall', new Zend_Controller_Router_Route('/*', array('controller'=>'index', 'action'=>'error'), array()); $router->addRoute('home', new Zend_Controller_Router_

[fw-general] Routing Question

2006-12-21 Thread Andrew Yager
Hi, I'm sure there is a simple answer to this question, I just can't seem to find it at the moment. I'm trying to get the __call/not found action of 0.6 working properly. Essentially, I want the following behaviour: When a user browses to http:/// they see the index page Any other page thro

Re: [fw-general] noRouteAction ....no function ...please help

2006-12-21 Thread Craig Slusher
Check out the following URL: http://framework.zend.com/manual/en/zend.controller.migration.html#zend.controller.migration.fromzerotwo The answer to your semi-question is at the bottom of the page. On 12/21/06, andreencinas <[EMAIL PROTECTED]> wrote: hello noRouteAction the indexController no