[symfony-users] csDoctrineActAsCategorizablePlugin for sf 1.4

2010-02-20 Thread Thibault Jouannic
Hi sf users, hi Mr Shaffer I would be interested to use the csDoctrineActAsCategorizablePlugin, which looks wonderful, but it seems there's no release for sf 1.3/1.4. So i'd like to know if someone has already tried to make it work with those version, or knows if an official release is planned?

[symfony-users] Re: Symfony 2 - "Extremly Configurable"

2010-02-20 Thread michael.pie...@googlemail.com
That sounds good. And yes, the sandbox already demonstrates the bundle concept, and how a project could be layed down. I'm already playing around with it ;o) I know it's to early to ask questions, but maybe this is easy to explain: what is the purpose of the token in the Symfony 2 debug bar? To id

[symfony-users] Re: Symfony 2 - "Extremly Configurable"

2010-02-20 Thread ken
The debug bar is also really sexy. It blends well if you're using chrome. And I'm really itching to use it with my upcoming projects. I really hope Symfony 2 stable will be released sooner. On Feb 20, 6:03 pm, "michael.pie...@googlemail.com" wrote: > That sounds good. And yes, the sandbox already

[symfony-users] HipHop is here

2010-02-20 Thread roberto german puentes diaz
http://github.com/facebook/hiphop-php -- Cr. Puentes Diaz MP 10.12726.9 Córdoba - Argentina www.puentesdiaz.com.ar www.twitter.com/puentesdiaz Linux User n° 441474 Ubuntu/Symfony/Eclipse Rocks! Sign for Free License for Project Zero http://www.petitiononline.com/zerogpl/ -- You received this

Re: [symfony-users] Installing ahDoctrineEasyEmbeddedRelations plugin on Symfony 1.4 under PHP 5.3

2010-02-20 Thread Daniel Lohse
Hey there, I'm the developer of the ahDoctrineEasyEmbeddedRelationsPlugin. If I had to guess, I'd say that you installed the plugin via "symfony plugin:install"? Then don't pay any attention to those "errors", they are PEAR related and have nothing to do with my plugin. Symfony is just using P

Re: [symfony-users] Installing ahDoctrineEasyEmbeddedRelations plugin on Symfony 1.4 under PHP 5.3

2010-02-20 Thread Michael Hodges
Thanks Daniel for the quick reply and the reassurance. You've accurately surmised my situation. I'm proceeding with implementation of the plugin in my project. Your instructions are very clear and yet the relation/Parser.php throws 1. throw new Doctrine_Table_Exception( 'Unkno

[symfony-users] Admin generator, Doctrine, one-to-many relation

2010-02-20 Thread Johannes Trommer
Hello, I'm having a problem that and I was not able to figure it by myself. I want to create a backend for a gallery with the admin generator. When I open a Gallery I want display all pictures in it. Galleries and Pictures are stored in two seperate tables. How can I display all pictures of

[symfony-users] File Upload in Merged Form - sfGuardUserProfile (1.4)

2010-02-20 Thread JB Lesage
Hello, I seem to have a problem with uploading a profile picture and saving it to a user's profile. What I've done is created a "img" column in the sfGuardUserProfile table. The problem is when I save the form, all values are stored except for "img", and the value is neither saved in the database

[symfony-users] How to make use of Twig in symfony 2 ?

2010-02-20 Thread extesy
Hello, I need a little help with integrating Twig into symfony 2. Here's what I did: 1. I have downloaded sandbox_2_0_PR1.zip then unpacked Twig to sandbox/ src/vendor/twig folder. 2. I have updated autoload.php to register Twig prefix: $loader->registerPrefixes(array( 'Swift_' => __DIR__.'/ven

[symfony-users] symfony 1.4 UML Diagram

2010-02-20 Thread Juan Guillermo Garcia
Does anyone have any UML diagrams of Symfony internals? It would be very helpful. Best Regards -- You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-us...@googlegroups.com. To unsubscribe from this group

[symfony-users] Symfony 2 and changing a Bundle in the Application

2010-02-20 Thread Matthias N.
Hi, did I understand it right that the src/Bundle dir in Symfony 2 is what the plugins/ dir is in Symfony 1.4 ? And the src/Application contains all application Bundles - no matter in what application you enable it? So.. my question is how do I overwrite / change code from a bundle in src/Bundl

[symfony-users] Singular & Plural in generator.yml

2010-02-20 Thread Juan Guillermo Garcia
Hey! Could anyone let me note when symfony uses plural and singular values specified in generator.yml file? Thanks in advance! -- You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-us...@googlegroups.com

[symfony-users] Hidden Field not rendering

2010-02-20 Thread Samuel Morhaim
I have the below code.. then WHY is the field campaign_id not getting populated with the default? Only works when I unhide it... Thank you. class AddressBookForm extends BaseAddressBookForm { public function configure() { unset( $this['created_at'], $this['updated_at

Re: [symfony-users] Singular & Plural in generator.yml

2010-02-20 Thread Stéphane
Hi, It is used by the themes in the templates of templates (sfDoctrinePlugin/data/generator/sfDoctrineModule/...) When writing a partial in an admin-gen module, you have access to your model via a variable. The variable is named using this singular name, if exists. else it gives you a tableized na

[symfony-users] ahDoctrineEasyEmbeddedRelationsPlugin: important info for users!

2010-02-20 Thread Annis McKenzie
Dear ahDoctrineEasyEmbeddedRelationsPlugin users, oO, I just noticed something that's not good. :( When I'm trying to add a new project (model object in my application, just like in the README) the "add new" form for the related object (repositories in my case) is also shown and adding both doesn

Re: [symfony-users] ahDoctrineEasyEmbeddedRelationsPlugin: important info for users!

2010-02-20 Thread Daniel Lohse
Sorry, the screenshot is missing... http://img341.imageshack.us/img341/1421/screenshot20100220at194.png Daniel On 20.02.2010, at 19:55, Annis McKenzie wrote: > Dear ahDoctrineEasyEmbeddedRelationsPlugin users, > > oO, I just noticed something that's not good. :( > > When I'm trying to add a n

Re: [symfony-users] Installing ahDoctrineEasyEmbeddedRelations plugin on Symfony 1.4 under PHP 5.3

2010-02-20 Thread Daniel Lohse
Hey Michael, yeah, as I pointed out in the README (although not clearly enough) using aliasing is a bit confusing right now with my plugin as it doesn't handle that right now. You'll have to try to figure out which value works. If you defined a foreignAlias in the relation then use that one.

Re: [symfony-users] ahDoctrineEasyEmbeddedRelationsPlugin: important info for users!

2010-02-20 Thread Daniel Lohse
Damn, another error in my post. *grrr* This is the correct code for your configure method: if (!$this->isNew()) { $this->embedRelations(...); } It was missing the "!" because you'll only want to embed relations if the form's object is *not* new. Sorry for the me

[symfony-users] sfPhpunitPlugin - working on sf1.4.2

2010-02-20 Thread Stéphane
Hi list, Does someone use this plugin with symfony 1.4.2 ? Thanks, Salut, Est-ce que quelqu'un utilise ce plugin avec symfony 1.4.2 ? Merci, Before Printing, Think about Your Environmental Responsibility! Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale! -- You receiv

[symfony-users] /lib/vendor

2010-02-20 Thread Thierry Boulanger
Hello Symfonians friends, I'm a really really beginner. In the "Pracatical Symfony" is mentionned that we have to create these directories /lib/vendor. Could we call these directories with other names? same questions for sfprojects |mkdir -p lib/vendor ||mkdir -p /home/sfprojects/jobeet Thanks

Re: [symfony-users] Singular & Plural in generator.yml

2010-02-20 Thread Alan Bem
In generated templates/actions like "edit", "create" or "delete" generator uses singular names for single ORM object eg. $user. In generated templates/actions like "index" collections/arrays are used for multiple ORM objects. Their names are pluralized because it makes code more sensible for constr

Re: [symfony-users] Symfony 2 and changing a Bundle in the Application

2010-02-20 Thread Jonathan Wage
Hi, I am not sure how to accomplish this yet, but I can tell you the old way of doing it in Symfony was a made up standard to work around the lack of oo in symfony. Now I am thinking the way to accomplish will be a much more natural oo solution. Something like creating a new bundle that simply ext

Re: [symfony-users] Installing ahDoctrineEasyEmbeddedRelations plugin on Symfony 1.4 under PHP 5.3

2010-02-20 Thread Michael Hodges
Thanks Daniel per your request, here's what a pared down version if my schema looks like. I'm working next on experimenting with foreighAlias to see if I can satisfy the plugin's requirements. Sorry that the schema syntax is not compact. It was originally generated from Workbench - - - schema -

[symfony-users] if anyone would like to sign up on our site, we could use some Symfony experts

2010-02-20 Thread lawrence
Hey, everyone, we are looking for some Symfony programmers to answer questions on our new Symfony site. Darren Hoyt and I are often asked for help with small programming or design tasks, simple problems that require maybe 5 minutes of our time. We find it isn't always easy to charge for the small