[symfony-users] Re: Problem with model in Event Management Plugin

2009-11-10 Thread juro
Is it possible to use an admin-generated module for the plugin? --~--~-~--~~~---~--~~ 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 unsubscribe

[symfony-users] validateMyAction is not executed

2009-11-10 Thread Adrien Mogenet
Hi all, As described here : http://www.symfony-project.org/book/1_2/06-Inside-the-Controller-Layer#Validation%20and%20Error-Handling%20Methods, I want to validate an action. but my public function validateShow() is not executed before my executeShow() action. Any idea ? Is this feature still

[symfony-users] commit problem

2009-11-10 Thread Kevin Bond
Hello, I am trying to commit some changes to the trunk of my plugin but am getting this error: Commit failed (details follow): Server sent unexpected return value (403 Forbidden) in response to MKACTIVITY request for '/!svn/act/00d58f1e-3870-3244-afb3-8f871d15ac4c' Any ideas? I can log into my

[symfony-users] Re: Problem with model in Event Management Plugin

2009-11-10 Thread Nicolas Perriault
On Tue, Nov 10, 2009 at 11:58 AM, juro fo...@juro.at wrote: Is it possible to use an admin-generated module for the plugin? Sure, you have to follow these simple steps (let's imagine you have a myPlugin plugin): 1. create a module in your plugin, for example by using the excellent Kris

[symfony-users] Re: commit problem

2009-11-10 Thread Gareth McCumskey
Could be possible that if you haven't made a commit in a while your account might be falgged as inactive and removed On Tue, Nov 10, 2009 at 2:39 PM, Kevin Bond kevinb...@gmail.com wrote: Hello, I am trying to commit some changes to the trunk of my plugin but am getting this error: Commit

[symfony-users] Re: Problem with model in Event Management Plugin

2009-11-10 Thread Richtermeister
I think sfCalendarEvent makes a lot of sense. It suggests an event within a calendar (suggesting properties such as date, time, duration), as opposed to a framework event. Daniel On Nov 10, 5:45 am, Nicolas Perriault nperria...@gmail.com wrote: On Tue, Nov 10, 2009 at 11:58 AM, juro

[symfony-users] Re: Problem with model in Event Management Plugin

2009-11-10 Thread juro
As I wrote, it doesn't make sense. A calendar is a specific view of a list of events, not the actual management, i.e. you can manage events, not a calendar. On Nov 10, 7:59 pm, Richtermeister nex...@gmail.com wrote: I think sfCalendarEvent makes a lot of sense. It suggests an event within a

[symfony-users] should this be considered a Symfony bug?

2009-11-10 Thread larry
When forcing a return from an action method (usually to end execution) one has to write: return sfView::SUCCESS; But I stupidly wrote: return true; I then got a blank white screen with no error. Even when I was looking at the dev controller, I still got no error. If the problem is that

[symfony-users] Re: Problem with model in Event Management Plugin

2009-11-10 Thread juro
Thank you for the tutorial, is the sfTaskExtraPlugin compatible with 1.3? On Nov 10, 3:45 pm, Nicolas Perriault nperria...@gmail.com wrote: On Tue, Nov 10, 2009 at 11:58 AM, juro fo...@juro.at wrote: Is it possible to use an admin-generated module for the plugin? Sure, you have to follow

[symfony-users] Re: In funcional Test February 31 could be named like a bug of Symfony

2009-11-10 Thread Gábor Fási
It's a php thing - when it gets converted to a date, it's converted to March 3rd. On Tue, Nov 10, 2009 at 20:41, kory rafael.ven...@gmail.com wrote: Symfony 1.2.9 Is considered as a Bug in Symfony, if i perform a Funcional Test and try to insert the form to a MySQL, The validator considers

[symfony-users] query or methods?

2009-11-10 Thread cosmy
Hi all, I have a philosophical question. I have a class method that calculates (nothing exotic some comparations and additions) a lot of information from a string saved in an object. Combining in serveral ways four numbers, comma separated in only one record, it extracts around 16 different

[symfony-users] Re: Problem with model in Event Management Plugin

2009-11-10 Thread Nicolas Perriault
On Tue, Nov 10, 2009 at 8:33 PM, juro fo...@juro.at wrote: Thank you for the tutorial, is the sfTaskExtraPlugin compatible with 1.3? Sure, I'm using it on a 1.3 powered project of mine with no pb :) ++ -- Nicolas Perriault http://prendreuncafe.com - http://symfonians.net Mobile: +33 660 92

[symfony-users] Symfony 1.4

2009-11-10 Thread Sid Bachtiar
Hi, I want to use 1.4 but I can not find the branch in the SVN? From reading around seems it is just 1.3 minus deprecated features, so where can I read the list of deprecated features? Cheers, Sid -- Blue Horn Ltd - System Development http://bluehorn.co.nz

[symfony-users] Re: Symfony 1.4

2009-11-10 Thread Sid Bachtiar
sfCompat10Plugin: By deprecating this plugin, we also deprecate all other elements in the framework that rely on this plugin to work (1.0 admin generator, and 1.0 form system) I guess that includes propel-init-admin :-\ I hope something similar/better exists by now. Last time I tried the sfForm

[symfony-users] Re: Symfony 1.4

2009-11-10 Thread Richtermeister
Hey Sid, it's now called propel:generate-admin and it rocks. Daniel On Nov 10, 2:10 pm, Sid Bachtiar sid.bacht...@gmail.com wrote: sfCompat10Plugin: By deprecating this plugin, we also deprecate all other elements in the framework that rely on this plugin to work (1.0 admin generator, and

[symfony-users] Doctrine Query

2009-11-10 Thread Murali Krishna B
Hi all, I have a table 'sample' with two columns: course_id and student_id. It is a many-to-many relationship table between Course and Students. Now I am facing a problem with Doctrine_Query. I am able to run this query in mysql prompt. select(course_id as cid,count(*) from sample where

[symfony-users] Re: Doctrine Query

2009-11-10 Thread Alexandru-Emil Lupu
Hi! First of all... i think you are doing it wrong ... i guess this select(course_id as cid,count(*) from sample where course_id in (select s.course_id from sample s where s.student_id = 1) group by(student_id); could be written as select course_id as cid,count(*) from sample s where