[symfony-users] Re: Symfony API and eclipse autocompletion

2007-08-29 Thread david . bravo
En estos momentos estoy fuera de la oficina, estaré de vuelta el día 10 de Septiembre. Para cualquier cuestión urgente de índole técnica, por favor ponte en contacto con nuestro equipo en el mail [EMAIL PROTECTED] Para cualquier cuestión comercial urgente, ponte en contacto con Jose Luis

[symfony-users] Re: sfSimpleCMS Routing

2007-08-29 Thread Francois Zaninotto
This is being discussed in the forum. To avoid double posting, please refer to this discussion: http://www.symfony-project.com/forum/index.php/mv/msg/8309/33998/ François 2007/8/28, Ant Cunningham [EMAIL PROTECTED]: I cant seem to get my routes to work with this plugin. Pretty much the

[symfony-users] Prevent simultaneous logins with the same username in symfony

2007-08-29 Thread Haris Zukanović
I wish to prevent different users from logging in using the same username (sharing the username). Where would I best solve this in symfony? TIA -- Haris Zukanovic --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[symfony-users] Re: Prevent simultaneous logins with the same username in symfony

2007-08-29 Thread Matthias Nothhaft
Haris Zukanović schrieb: I wish to prevent different users from logging in using the same username (sharing the username). Where would I best solve this in symfony? Do you want to prevent one user from logging in simultaneously multiple times? Why? Hm.. I would not prevent that. What if a

[symfony-users] Re: Prevent simultaneous logins with the same username in symfony

2007-08-29 Thread Matthias Nothhaft
Lukas Kahwe Smith schrieb: Matthias Nothhaft wrote: Haris Zukanović schrieb: I wish to prevent different users from logging in using the same username (sharing the username). Where would I best solve this in symfony? Do you want to prevent one user from logging in simultaneously multiple

[symfony-users] csI18nRoutingPlugin release / Translatable URLs

2007-08-29 Thread Christian Schaefer
hi all, after using it for quite a while now I finally found the time to add a bit of documentary and ship this little plugin. it basically allows you to specify several urls per route. that is one url per route and culture. consider the following example: homepage: url: de:

[symfony-users] Re: csI18nRoutingPlugin release / Translatable URLs

2007-08-29 Thread Tristan Rivoallan
On 8/29/07, Christian Schaefer [EMAIL PROTECTED] wrote: it basically allows you to specify several urls per route. that is one url per route and culture. really great plugin. i also totally agree with the cs prefixing. It makes much more sense than prefixing everything with sf (imho) ++

[symfony-users] Re: csI18nRoutingPlugin release / Translatable URLs

2007-08-29 Thread Christian Schaefer
hey thanks tritan! yeah I though a personal prefix kinda makes sense whereas sf might look cool but gives the wrong impression imho. let me know if this plugin is of use to you. ;) cheers /christian Tristan Rivoallan wrote: On 8/29/07, Christian Schaefer [EMAIL PROTECTED] wrote: it

[symfony-users] automated code audit

2007-08-29 Thread Jack Bates
I'm working on an automated code audit, to check our code conforms to symfony's code standards. I'm currently implementing it as a unit test, so we check our code with: symfony test-unit audit I wonder if any code already exists for checking symfony's code standards? Thanks, Jack

[symfony-users] Re: automated code audit

2007-08-29 Thread Tristan Rivoallan
hi, On 8/29/07, Jack Bates [EMAIL PROTECTED] wrote: I wonder if any code already exists for checking symfony's code standards? pear's codesniffer can provide a very good basis for implementing this. http://pear.php.net/package/PHP_CodeSniffer i guess it should not take too long to adapt

[symfony-users] Re: csI18nRoutingPlugin release / Translatable URLs

2007-08-29 Thread Piers Warmers
Yep, We're working a number of different plugins which we hope to release in the next 2-3 weeks. We will be using our own preffix and repositories. Very nice plugin. - Piers On 30/08/2007, at 1:54 AM, Christian Schaefer wrote: hey thanks tritan! yeah I though a personal prefix kinda

[symfony-users] Re: Prevent simultaneous logins with the same username in symfony

2007-08-29 Thread Kiril Angov
Well, in your session storage (database table) you can have session_id, user_id, session_data, timestamp. Then when I user logs in you can clean all the records which are not equal to the current session_id + user_id where user_id = current user_id. Kupo Matthias Nothhaft wrote: Lukas Kahwe