Re: [symfony-users] Re: Symfony2 and Netbeans

2011-04-21 Thread Conrad Barthelmes
I'm not sure if I understand what you mean.. my folder structure with a netbeans project looks like this: project_for_customer: nbproject/ Symfony/ app/ bin/ src/ vendor/ web/ if that helps you.. I dont pack/unpack any folders 'everytime' ... only in the beginning when I

[symfony-users] Re: Symfony2 and Netbeans

2011-04-21 Thread Gayatri
How did you create the default directory structure for Symfony2? Do you unpack the archive every time and copy the folders in your project directory? On Apr 8, 10:55 am, Conrad wrote: > I'm working in Netbeans too for a couple of days in a sf2 project and it > works very nice - but I didn't tell

[symfony-users] Re: Symfony2 and Netbeans

2011-04-11 Thread Conrad
this is also a little workaround that works well if you use a service quite often, here the doctrine odm document manager /** * @return Doctrine\ODM\MongoDB\DocumentManager */ private function getDM() { return $this->get('doctrine.odm.mongodb.document_manager'); } If you use it in anoth

[symfony-users] Re: Symfony2 and Netbeans

2011-04-11 Thread Stephan Petzl
I used Netbeans for a lot of other PHP projects already, and I have to say that I'm a bit worried about the missing autocompletion for *a lot of* stuff of Symfony2. That's mostly because of the dependency injection container as far as i see: when you write $this->get('doctrine.orm.entitymanage

[symfony-users] Re: Symfony2 and Netbeans

2011-04-10 Thread Conrad
I have the same problem, and unfortunately I take a look to the API (or source) of this class to see what's possible.. I don't think this is going to be an easy part for the IDE, as String paramaters usually don't get evaluated on 'development time'.. Because the depency injector is actually a

[symfony-users] Re: Symfony2 and Netbeans

2011-04-08 Thread Carl
Oooh, thanks for that, Roman. I'll check it out! :D -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com 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] Re: Symfony2 and Netbeans

2011-04-08 Thread Roman
> My only real complaint with Netbeans is the way it automatically chooses end > of line characters based on the platform it's running on. Or it uses > whatever format the file is already using. > Maybe this Plugin: http://plugins.netbeans.org/plugin/36810/show-and-change-line-endings could help.