Re: [symfony-users] Re: Sluggable behaviour: field called slug is not created

2010-08-02 Thread Javier Garcia
To create a profile schema that inherits from the sfGuardUser. Anyway i have created a new profile schema in a way that doesn't use inheritance. On 07/31/2010 05:35 PM, Tom Ptacnik wrote: Maybe your problem is a bug, but. Why do you want to use a simple inheritance. I don't think that

[symfony-users] Re: Sluggable behaviour: field called slug is not created

2010-07-30 Thread Javier Garcia
I created this ticket: http://trac.symfony-project.org/ticket/8922#preview Javi On Jul 28, 10:06 pm, Javier Garcia tirengar...@gmail.com wrote:   Thanks, but it didn't work. On 07/28/2010 09:20 PM, John Kary wrote: This probably won't work, but try explicitly defining a different field

[symfony-users] Re: Sluggable behaviour: field called slug is not created

2010-07-28 Thread John Kary
This probably won't work, but try explicitly defining a different field name for the slug using the name option: Usuario: actAs: Sluggable: unique: true fields: [nombre_apellidos] canUpdate: true name: 'myslug' On Jul 27, 10:57 am, Javier Garcia

Re: [symfony-users] Re: Sluggable behaviour: field called slug is not created

2010-07-28 Thread Javier Garcia
Thanks, but it didn't work. On 07/28/2010 09:20 PM, John Kary wrote: This probably won't work, but try explicitly defining a different field name for the slug using the name option: Usuario: actAs: Sluggable: unique: true fields: [nombre_apellidos]

[symfony-users] Re: Sluggable behaviour: field called slug is not created

2010-07-27 Thread Javier Garcia
On Jul 20, 12:00 pm, Tom Ptacnik to...@tomor.cz wrote: Maybe colision with inheritance? Try to move inheritance before actAs (only guess) Yes there is a colision with inheritance. When i remove the inheritance it works ok. I changed the position of inheritance but the field slug doesn't

[symfony-users] Re: Sluggable behaviour: field called slug is not created

2010-07-20 Thread Tom Ptacnik
Maybe colision with inheritance? Try to move inheritance before actAs (only guess) On 19 čnc, 21:16, Javier Garcia tirengar...@gmail.com wrote: no idea? On Jul 17, 10:35 pm, Javier Garcia tirengar...@gmail.com wrote: Hi, I have this model: Usuario:    actAs:      Sluggable:    

[symfony-users] Re: Sluggable behaviour: field called slug is not created

2010-07-19 Thread Javier Garcia
no idea? On Jul 17, 10:35 pm, Javier Garcia tirengar...@gmail.com wrote: Hi, I have this model: Usuario:    actAs:      Sluggable:        unique: true        fields:  [nombre_apellidos]        canUpdate: true    inheritance:      extends: sfGuardUser      type: simple    columns: