[symfony-users] Re: Powered By Symfony images?

2007-04-04 Thread Scott Meves
Perhaps we can get ahold of the original designer (justinm) and ask him to post the high-res versions? http://www.symfony-project.com/weblog/2006/11/16/and-the-winner-is.html -Scott - Scott Meves Stereo Interactive & Design http://www.stereointeractive.com On Apr 5, 200

[symfony-users] sfDimensionsPlugin

2007-04-04 Thread Dustin Whittle
All, Many of us work on web applications that need to change based on what country a user is in. At the most basic forms this usually consist of changing the language of text and the formatting of times and dates. symfony makes this easy with all of its internationalization and localization tools

[symfony-users] Re : [symfony-users] Powered By Symfony images?

2007-04-04 Thread Loïc Vernet
good idea, i'd like one too to put on my blog. COil - Message d'origine De : Joby Walker <[EMAIL PROTECTED]> À : symfony-users@googlegroups.com Envoyé le : Jeudi, 5 Avril 2007, 6h07mn 22s Objet : [symfony-users] Powered By Symfony images? I'm adding a credit page to an application an

[symfony-users] Powered By Symfony images?

2007-04-04 Thread Joby Walker
I'm adding a credit page to an application and since it is a symfony app I'd like to give it top billing with a nice image -- but apart from the symfony and sensiolabs images at the top and bottom of the symfony-project site -- I haven't found any. Is there a good source of images I'm missing

[symfony-users] Re: Get elements from form

2007-04-04 Thread Kiril Angov
[code] $numbers = $this->getRequestParameter("number"); $user = new User(); $user->setName($this->getRequestParameter('username')); $user->save() foreach ($numbers as $number) { $phone = new Phone(); $phone->setUser($user); $phone->setNumber($number); $phone->save(); } [/code] a

[symfony-users] Get elements from form

2007-04-04 Thread g0d br
Hi, I build an form with dynamic elements, like the atachment system in Gmail: the data from this inputs are storage in another table with the foreign key. I am not sure how get data e save: somo code to explain: model>>> form action $user = new Use

[symfony-users] Re: jquery for symfony

2007-04-04 Thread naveman
hi françois, an example is very easy... and the solution was easy too ;) imagine a list of items. you declare the complete behaviour of these items (e.g. draggable, hover, etc.) since you know from the beginning how the should behave. then imagine you extend that list with ajax and generate two

[symfony-users] Re: how can I use peer_method with n-n table relationships in admin gen...

2007-04-04 Thread Jonathan Franks
Thanks, that works perfectly. skr wrote: > You can override doSelect in your peer class: > > public static function doSelect(Criteria $criteria, $con = null) > { > > // by default order by name > /// getOrderByColumns() > > if(count($criteria-

[symfony-users] Re: how can I use peer_method with n-n table relationships in admin gen...

2007-04-04 Thread skr
You can override doSelect in your peer class: public static function doSelect(Criteria $criteria, $con = null) { // by default order by name /// getOrderByColumns() if(count($criteria->getOrderByColumns()) == 0) {

[symfony-users] how can I use peer_method with n-n table relationships in admin gen...

2007-04-04 Thread Jonathan Franks
when using one of the admin controls for many to many relationships, how do you sort the list?? I've tried using the peer_method technique but with no success. Thanks // Jonathan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[symfony-users] Re: Re : [symfony-users] Re: New plugin: sfSimpleBlogPlugin

2007-04-04 Thread Francois Zaninotto
Loic, Now that I've named the plugin 'sfSimpleBlog', I can't possibly turn it to a full-featured blog... My opinion on this matter is that if you need a full-featured blog, you should use Wordpress/DotClear/YourFavoriteBlogEngine. They do much more than the current symfony plugin, and it would

[symfony-users] Re: New plugin: sfSimpleBlogPlugin

2007-04-04 Thread Franke Gordon
I think it will be better to set a config param like (mode: simple | full) so you don´t have duplicate code and to many plugins. @Francois Great work, i will it translate to german ;) greetings Gordon -Ursprüngliche Nachricht- Von: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTE

[symfony-users] Error checking out sfJpGraphPlugin

2007-04-04 Thread Zakaria
Hi, I want to install sfJpGraphPlugin as instructed in the wiki I did svn co http://svn.symfony-project.com/plugins/sfJpGraphPlugin ./plugins/sfJpGraphPlugin but it gives me these errors: svn: REPORT request failed on '/!svn/vcc/default' svn: REPORT of '/!svn/vcc/default': 400 Bad Request (http:

[symfony-users] Re : [symfony-users] Re: New plugin: sfSimpleBlogPlugin

2007-04-04 Thread Loïc Vernet
Is this plugin is supposed to stay "simple", it would really great to have a full featured blog for Sf, or may be have plugins for the plugin ? Or having both sfSimpleBlog and a sfFullBlog would be better ? > Francois Zaninotto wrote: > Hi list, > > For one of the projects I'm working on,