Mat wrote:

> 5 Also I don’t appear to be able to grasp a nice clean directory structure
> in the apps ive tried, it just seems a tad messy, but the django devs i
> worked with in a symfony project said the same about symfony, they
> couldn't
> cope with more than 10 files :)

Yes, the first time I used it I had the same criticism, but I quickly
found that the regex url mapping gave me extremely easy ways to create
logical filesystem structures that made sense for my application.

Django is very easy to use, and I even really like the template syntax
(especially the 'extends' directive - very cool. That having been said,
one of the first things we did on our last django project was replace the
template engine with Genshi). The main things I found lacking were:

 * it is a little too dependent on its ORM - you have to go out of your
way to break out of the database model, especially on the admin side.
This makes sense for your everyday content-based kinds of sites, not so
much when you are integrating with external systems.

 * it lacks the 'component' idea that symfony has -- ie. each controller
(uhh... i mean.. _view_) normally has to contain all the logic for an
entire page, and there's no obvious way to split the page up into
reusable functional elements.

Anyway, those points aside, Django is great, and I'm sure I'll be using it
again when the right project comes along.

bo.



> -----Original Message-----
> From: [email protected]
> [mailto:[EMAIL PROTECTED]
> On Behalf Of Nicolas Perriault
> Sent: 04 February 2008 16:04
> To: [email protected]
> Subject: [symfony-users] Re: Django
>
> On Feb 4, 2008 4:34 PM, Thierry <[EMAIL PROTECTED]> wrote:
>
>> Would like to hear some of the opinions.
>> I'm considering giving it a spin...
>
> I've played with it a bit, it looks very nice and efficient. The admin
> generator is by far the most advanced I've had played with, bundled
> ORM is really cool, generic views are really clever, etc.
>
> What i did not like so much is URL handling (regex based, no
> reflexion) and the template engine syntax (but it's also very serious
> and flexible). Matter of taste.
>
> I'd love doing a real project with it, that's to me the only way to
> see what it really worthes. The only problem we got here in France is
> that there's not much Python devs here... Hard to sell.
>
> ++
>
> --
> Nicolas Perriault    http://www.clever-age.com
> Clever Age - conseil en architecture technique
> GSM: +33 6 60 92 08 67  Tél: +33 1 53 34 66 10
>
>
>
>
> >
>



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to