[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Olivier Mansour
any ideas ? I still can't find my plugin task in the default list proposed by ./symfony command your opinion, is it a sf1.2 bug ? 2008/9/24 Olivier Mansour <[EMAIL PROTECTED]> > hello > > with sf1.2, a task declared in a plugin is not autoloaded. > (blablaTask.class.php under myPlugin/lib/task).

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Francois Zaninotto
did you enable the plugin in your project configuration? François 2008/9/25 Olivier Mansour <[EMAIL PROTECTED]>: > any ideas ? > > I still can't find my plugin task in the default list proposed by ./symfony > command > your opinion, is it a sf1.2 bug ? > > 2008/9/24 Olivier Mansour <[EMAIL PROTE

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Olivier Mansour
2008/9/25 Francois Zaninotto <[EMAIL PROTECTED]> > > did you enable the plugin in your project configuration? > no. Actually I havent yet an application in my projets, only tasks my plugin just include several tasks, no modules. Olivier > > François > > 2008/9/25 Olivier Mansour <[EMAIL PROTEC

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Francois Zaninotto
Well then you should enable your plugin in your project configuration. Apparently, in sf 1.2, all plugins are disabled by default, exactly the contrary as in previous versions. François 2008/9/25 Olivier Mansour <[EMAIL PROTECTED]>: > > > 2008/9/25 Francois Zaninotto <[EMAIL PROTECTED]> >> >> di

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Jonathan Wage
http://svn.symfony-project.com/branches/1.2/UPGRADE_TO_1_2 In config/ProjectConfiguration.php you can add public function setup() { $this->enablePlugins('sfDoctrinePlugin'); $this->disablePlugins('sfPropelPlugin'); } - Jon On Thu, Sep 25, 2008 at 9:39 AM, Francois Zanino

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Thomas Rabaix
lol, nice example On Thu, Sep 25, 2008 at 4:52 PM, Jonathan Wage <[EMAIL PROTECTED]> wrote: > http://svn.symfony-project.com/branches/1.2/UPGRADE_TO_1_2 > > In config/ProjectConfiguration.php you can add > > public function setup() > > { > $this->enablePlugins('sfDoctrinePlugin'); >

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Jonathan Wage
Taken directly from the UPGRADE documentation from fabien himself ;) - Jon On Thu, Sep 25, 2008 at 9:56 AM, Thomas Rabaix <[EMAIL PROTECTED]>wrote: > lol, nice example > > On Thu, Sep 25, 2008 at 4:52 PM, Jonathan Wage <[EMAIL PROTECTED]> wrote: > >> http://svn.symfony-project.com/branches/1.2/U

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Olivier Mansour
thank you all It works just fine 2008/9/25 Jonathan Wage <[EMAIL PROTECTED]> > Taken directly from the UPGRADE documentation from fabien himself ;) > > - Jon > > > On Thu, Sep 25, 2008 at 9:56 AM, Thomas Rabaix <[EMAIL PROTECTED]>wrote: > >> lol, nice example >> >> On Thu, Sep 25, 2008 at 4:52 P

[symfony-users] Re: cant autoloading a task from a plugin with sf1.2

2008-09-25 Thread Fabien Potencier
If you use symfony 1.2, you must read the UPDATE_TO_1_2 file and keep reading it while we work on this new release. Please, keep in mind that we make changes for this new release every day. So, symfony 1.2 is not stable yet, and it is not suitable for production usage. New features and new API