[symfony-users] Re: a good IDE for Symfony

2010-08-04 Thread Zdanek
come on - just use emacs ! On 4 Sie, 07:58, pghoratiu wrote: > Check out Komodo edithttp://www.activestate.com/komodo-edit > some of my colleagues use it. > > I think that with your configuration any java based editor should work > fine, make sure you configure properly > the java runtime setting

[symfony-users] Re: Is there any way to override symfony core class such as sfModelGenerator ?

2010-05-20 Thread Zdanek
I think the only way is to create sfModelGenerator class, copy the content from old one, add new stuff and make sure it's autoloaded in the end. However it's bit hackish :-( T On 20 Maj, 10:16, Gareth McCumskey wrote: > class myNewGeneratorClass extends sfModelGenerator > > On Wednesday 19 May 2

[symfony-users] contextual partial cache

2010-03-06 Thread Zdanek
Hello, I've problem with contextual partial caching. Let's say I have 2 users with different urls, each of them have it's own partial with tags cloud. Partial is contextual so I have different cache for both users 1. example.com?uname = u1 => creates contextual partial with tags cloud for u1 2. e

[symfony-users] Re: autoloading fails while task execution on customized plugins

2010-02-25 Thread Zdanek
Is this only me ? -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@googlegroups.com To

[symfony-users] autoloading fails while task execution on customized plugins

2010-02-24 Thread Zdanek
Hi, I've strange problem with autoloading. I have sfGuardPlugin installed and sfGuardUser.php class generated in guard plugin directory. I also have customized sfGuardUser class: class sfGuardUser extends PluginsfGuardUser { . located in my application directory lib/model/sfGuardPlugin/ sfG

[symfony-users] Re: class BaseProfileForm not found

2010-01-06 Thread Zdanek
Same problem with BaseProfileForm with propel. Seems it is not being generated with symfony:build-forms. I have profile installed as plugin, may be this is the case ? T -- You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send

[symfony-users] Re: different cache versions for logged and non logged users

2009-08-07 Thread Zdanek
> "-noauth" for the cache when not logged in and just the username when they > are logged in. Make sense, will try to do that. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to

[symfony-users] different cache versions for logged and non logged users

2009-08-06 Thread Zdanek
Hi, I have this problem. Lets assume I have user items list with Url: http://localhost/:username/list. Then I can have different versions of this list based on if user is logged or not (displaying some user private items). But it seems that it is impossible to have 2 cache versions within same UR