[symfony-users] Javascript files included no matter what

2010-02-16 Thread Salim
Hi all, I have a project where i commented all include_javascripts statements but they are included anyway. Is it a known issue, or am i missing something? Thank's for your help. -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this

[symfony-users] Re: Javascript files included no matter what

2010-02-16 Thread Salim
yes I cleaned the cache. I just figured out that it was sfCommonFilter that includes CSS and JS even if you don't want them. So include_stylesheets and include_javascripts are no more needed in layouts. On 16 fév, 14:40, Eno symb...@gmail.com wrote: On Tue, 16 Feb 2010, Salim wrote: I have

[symfony-users] Re: sfWidgetFormI18nChoiceCountry has continents

2009-12-23 Thread Salim
I have the same problem. After some searches I found out that there was no way to exclude continents from the list. We should better open a ticket ! On 18 déc, 11:56, Massimiliano Arione garak...@gmail.com wrote: the new sfWidgetFormI18nChoiceCountry (symfony 1.4) has continents among

[symfony-users] Re: sfWidgetFormI18nChoiceCountry has continents

2009-12-23 Thread Salim
Done. http://trac.symfony-project.org/ticket/7990 On 23 déc, 16:24, Salim salim.semao...@gmail.com wrote: I have the same problem. After some searches I found out that there was no way to exclude continents from the list. We should better open a ticket ! On 18 déc, 11:56, Massimiliano Arione

[symfony-users] Re: var_dump Doctrine_Record

2009-12-11 Thread Salim
No answers ? On 10 déc, 10:02, Salim salim.semao...@gmail.com wrote: Here is an sample of the schema : Place:   actAs:     I18n:       fields:        -  name        -  number        -  address        -  postal_box        -  cedex        -  city        -  zip_code        -  country

[symfony-users] Re: var_dump Doctrine_Record

2009-12-10 Thread Salim
, 17:45, Serkan Koyuncu serkan.koyu...@gmail.com wrote: Could you please post your schema? Regards, S. 2009/12/9 Salim salim.semao...@gmail.com: PS : I am using Symfony 1.2 with Doctrine 1.1 On 9 déc, 17:03, Salim salim.semao...@gmail.com wrote: Hi all, After inspecting several

[symfony-users] var_dump Doctrine_Record

2009-12-09 Thread Salim
Hi all, After inspecting several doctrine records on my project, I realized that every field of these records was casted into strings whatever the type declared for the column in the schema.yml file. Is it a known issue, or am I missing something ? Thank's in advance for your help -- You

[symfony-users] Re: var_dump Doctrine_Record

2009-12-09 Thread Salim
PS : I am using Symfony 1.2 with Doctrine 1.1 On 9 déc, 17:03, Salim salim.semao...@gmail.com wrote: Hi all, After inspecting several doctrine records on my project, I realized that every field of these records was casted into strings whatever the type declared for the column

[symfony-users] Doctrine i18n tables

2009-06-08 Thread Salim
Hi everybody I have some troubles with doctrine i18n tables. I have a foo model, with i18n columns, and i want to fetch each row of this table : class FooActions extends sfActions { public function executeIndex() { $this-foos = Doctrine::getTable('Foo')-findAll(); } } But then i have

[symfony-users] Forms and post validators

2009-05-26 Thread Salim
Hi everybody I'd like to know if it's possible to determine if a form has errors when processing post validation. The purpose is to have a conditional postValidator, which is launched only if the classical validations passed. Here is a small sample of what i'd like to have (http://pastie.org/

[symfony-users] Doctrine migrations and behaviors

2009-04-28 Thread Salim
Hi everybody ! Does anybody know how to include a behavior in a model using migrations? I'm actually using the schema.yml file to do that, and I didn't find the info on the doctrine documentation site. Thank's in advance --~--~-~--~~~---~--~~ You received this

[symfony-users] I18N : Call to undefined method __()

2009-02-10 Thread Salim
function __(). If I put a use_helper('I18N') in my partial, everything is OK, but it's not really DRY to repeat this in each file. Do I miss anything ? Thank's for the help Salim --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] Re: I18N : Call to undefined method __()

2009-02-10 Thread Salim
you clear cache? Also try to erase sessions in your browser and restart it. On 10 Lut, 17:37, Salim salim.semao...@gmail.com wrote: Hi all, I have some trouble trying to make I18N works on a new project. I have put this in my settings.yml (Symfony 1.2.3) : all:   .settings