[symfony-users] Re: Symfony with YUI, Ext, and prototype in one app?

2008-01-28 Thread Yılmaz Uğurlu
Ext already contains other two rprojects. 2008/1/29, Sid Bachtiar <[EMAIL PROTECTED]>: > > > Hi all, > > Is it OK mix them all in one app? > > Thanks > > > > -- Yılmaz Uğurlu ~ jabber : [EMAIL PROTECTED] ~ http://www.2nci.com ~ İzmir --~--~-~--~~~---~--~~ You r

[symfony-users] Re: Visual modeling tools for Doctrine?

2008-01-28 Thread awe
Thank you for your answer. If you're referring to this Dia: http://www.gnome.org/projects/dia/ than it's seemingly a drawing tool and not a visual database modeling tool. A visual modeling tool should (basically) support defining the entities, their contents, their relationships, their constrain

[symfony-users] Re: Visual modeling tools for Doctrine?

2008-01-28 Thread Jonathan Wage
I have been poking around in this area lately, although I was looking for something a little bit different. I want to generate a UML diagram for a set of models as a simple image so you can easily inspect the full view of all your models. What you are wanting would be very easy to accomplish with

[symfony-users] Visual modeling tools for Doctrine?

2008-01-28 Thread awe
Which (if any) visual database modeling tools do you use? Do they allow you to create a Doctrine schema directly? This is a re-post of: http://groups.google.com/group/doctrine-user/browse_thread/thread/14383238e3948e89 due to lack of answers. Thanks --~--~-~--~~~---~-

[symfony-users] Re: sfLucenePlugin - nordic characters not working

2008-01-28 Thread Carl Vondrick
On Monday, January 28, 2008, Gunnar Lium wrote: > I guess it might a good idea to either update the pear version of the > plugin, The latest pear package has been uploaded to the wiki. Carl --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] Re: Cache problems

2008-01-28 Thread Eno
On Mon, 28 Jan 2008, Rytis Daugirdas wrote: > There's also a single action that I do not wish to cache. I have set > "enabled" property to off for this action in cache.yml of its module. > That didn't turn off component caching for that action and that's > fine. However, here comes the major prob

[symfony-users] Re: validation with symfony + doctrine

2008-01-28 Thread Jonathan Wage
bookmark{url} It is a quirk, I think it is in the manual though, but may be kind of hidden/obscure. - Jon On Jan 28, 2008 4:18 PM, Donald Ball <[EMAIL PROTECTED]> wrote: > > Hi folks, I'm in the middle of learning symfony so I apologize if this > is a FAQ, but I was unable to find an answer so

[symfony-users] Symfony with YUI, Ext, and prototype in one app?

2008-01-28 Thread Sid Bachtiar
Hi all, Is it OK mix them all in one app? Thanks --~--~-~--~~~---~--~~ 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 from this g

[symfony-users] Re: sfForms11Plugin issue with existing sfPropelUniqueValidator

2008-01-28 Thread Dave
Thanks! At least I now know that I am not just barking up the wrong tree. So, my current workaround is to just copy the needed validators from pear/symfony/validator/... and pear/symfony/addon/propel/validator/... making the required changes (renaming sfValidator to sfValidatorBase and then maki

[symfony-users] Cache problems

2008-01-28 Thread Rytis Daugirdas
Hello, I'm having two caching problems with symfony 1.0.11 - a minor and a major one. I have caching turned on by default (together with layout, app cache.yml) since the website I'm currently working on is almost completely static. This, as I understand it, enables caching for everything: layout

[symfony-users] validation with symfony + doctrine

2008-01-28 Thread Donald Ball
Hi folks, I'm in the middle of learning symfony so I apologize if this is a FAQ, but I was unable to find an answer so far. I've been unable to get validation working on my sample app, a del.icio.us clone, written against symfony-1.0.11 with the 1.0 branch of the sfDoctrinePlugin. I've got two mo

[symfony-users] Re: sfForms11Plugin issue with existing sfPropelUniqueValidator

2008-01-28 Thread Kiril Angov
I am using the plugin you mentioned and I had the same problem with the validator. I am afraid there is no solution yet but it is in on the way: http://trac.symfony-project.com/wiki/sfFormExtraPlugin There is no code there yet but on the TODO is a replacement for sfPropelUniqueValidator. You c

[symfony-users] sfForms11Plugin issue with existing sfPropelUniqueValidator

2008-01-28 Thread Dave
I'm sure I must be missing something simple, but has anyone else had issues with trying to use the sfForms11Plugin in an existing 1.0 symfony application? In particular, I am getting Fatal error: Class sfPropelUniqueValidator contains 1 abstract method and must therefore be declared abstract or

[symfony-users] Re: controller and __ and flash message

2008-01-28 Thread pihentagy
True, and nice, but thinking on I'm afraid of loosing the ability to auto-collect the messages to be translated... On Jan 28, 6:09 pm, Thomas Dedericks <[EMAIL PROTECTED]> wrote: > On second thought, I guess you could also use: > > $this->setFlash('confirm', 'My translateable message'); > > insid

[symfony-users] Re: controller and __ and flash message

2008-01-28 Thread Thomas Dedericks
On second thought, I guess you could also use: $this->setFlash('confirm', 'My translateable message'); inside the controller, and translate the flash attribute directly inside the views: has('confirm')) echo __($sf_flash->get('confirm')); ?> Le lundi 28 janvier 2008 à 18:00 +0100, Thomas Dede

[symfony-users] Re: controller and __ and flash message

2008-01-28 Thread Thomas Dedericks
Hi, not sure this is really as clean as possible, but this is what I'd naturally do : (for example, to show a confirmation message after a user action) inside the controller: $this->setFlash('confirm', true); and inside the view: has('confirm') && $sf_flash->get('confirm')) echo __('My transl

[symfony-users] controller and __ and flash message

2008-01-28 Thread pihentagy
Hi all! When I want to display a flash message in the controller, which is translated, how can I do a clean MVC separation? So where to put the translateable message? (__() works in the view only AFAIK, and translateable messages in the controller don't look good...) thanks Gergo --~--~-

[symfony-users] Re: sfLucenePlugin - nordic characters not working

2008-01-28 Thread Carl Vondrick
On Monday, January 28, 2008, Gunnar Lium wrote: > Ok. Now I did a checkout from svn, and copied  the contents of 1.0 branch > to the sfLucenePlugin-directory. After symfony cc - lucene-rebuild, it > seems like its working fine. Great. I was looking for at least some confirmation that things were

[symfony-users] Re: sfLucenePlugin - nordic characters not working

2008-01-28 Thread Gunnar Lium
Ok. Now I did a checkout from svn, and copied the contents of 1.0 branch to the sfLucenePlugin-directory. After symfony cc - lucene-rebuild, it seems like its working fine. I guess it might a good idea to either update the pear version of the plugin, or at least state somewhere that issues with f

[symfony-users] Re: My third project of Symfony

2008-01-28 Thread awe
Looks very nice :) Some issues you might want to take care of: * Most sites using fixed width don't left-align the page but center it. * In the reg form the message is "Cann't be left blank" with 2 Ns instead of 1. * "Forgot your password?" link goes to login again so the feature doesn't exist.

[symfony-users] adding fields to the edit form in the admin generator

2008-01-28 Thread Ian P. Christian
Hi all, I'm trying to add a couple of custom fields to my form using admin generator edit: title: Editing User "%%username%%" display: "Details":[username, notes, is_admin, is_active, created_at] "Password": [_password, _password_again] This works fine

[symfony-users] Re: sfLucenePlugin - nordic characters not working

2008-01-28 Thread Gunnar Lium
It does indeed seem to work. Initially, I had to add "encoding: utf8" to databases.yml to get characters to appear properly in the database. I'll spend some time debugging my existing project and see if I can provide any useful insight. Have you made many changes in the SVN, which is not yet avail