I plan to read about Django. Should I go with Django or Plone? What makes Django/Plone better than the other?
Edit: From a comment below:
I just wanted to know a framework for developing web applications.
|
|
Plone is a CMSPlone is a Content Management System. It has a lot of features built-in and you have a working website with workflows, write access, right management, content management and a strong back office out of the box. But the question is, do you need this? Plone is great if you need these features because they are tedious to code and it spares your time so you can focus on the other parts of the apps. The trouble is that Plone is really complex to deeply tweak (my company works 100% with Plone so I can tell...). You can customize everything, but getting your staff to become Plone experts is long and expensive. What's more, using Plone implies using Zope, which includes the good stuff (Zope admin, the rollback features, cache, etc) and the nasty stuffs (it's resource intensive, you have to deal with ZODB...). Django is a FrameworkRunning the Django framework, you have nothing. Well, almost nothing (you can generate an admin BO) but a ton of bricks that are easy to make work together. With Django, it takes more time to actually have a website, but it's far easier to tweak since you can understand and control everything (hey, you made it yourself!), then plug it to anything. Django is really intuitive and well documented, the learning curve is smooth. If you don't need a working app out of the box, but you want to hack some really specific features (meaning, not another CRUD app), you may want to use it. |
|||||||
|
|
At my work, we use both. Plone has been excellent as a CMS that is aware of security at all times. One problem we've had with CMS's is not being able to keep secret things secret, either due to references to an object, URL fiddling, or search (the big killer). Plone doesn't just protect: it plays dumb. No matter how you ask for something, if you're not supposed to see it, Plone will not let on that it even exists. However: Plone runs slow if you don't know how to optimize it. It has a steep learning curve, though Plone 3 seems to be helping with that a bit. Customizations, if not done right, can hold you back when it comes to core updates. Django, while not as robust or security aware, runs much lighter, faster, and scales much more easily. There's less boilerplate to much around with, and getting started is insanely easy. I would try both. Play, test, see what you can get done. Plug into the communities, as they will be your biggest asset. |
|||
|
|
|
You are not comparing like for like. We really need to know your use-case. Edit: O.P.: "I just wanted to know a framework for developing web apps" Then Django is what you want. |
||||
|
|
That pain is the price of reusability. You've to learn the Ploneway. What you should do is evaluate if you want to pay for it nor not, although there are great books and the Plone network of consultants and entrepeneur that can solve these problems for you, just check plone.net. |
|||
|
|
|
If you want to build web applications, Django is probably the tool you want. If you want to do a lot of content management and you'd prefer to have everything like that done for you, you might find it easier going with Plone, but as e-satis said, Plone can be a real pain in the behind when you want to make serious changes. Django on the other hand doesn't give you that much to start with other than a great library of development tools. |
||||
|
|
|
There is also django-cms wich is actually a CMS, and not just a frameworK: |
|||
|
|
|
Look at Web2py - I like it much more than Django. I think you'll be impressed. Plone has a big learning curve, but you are not limited within the realm of a CMS. And once you are up to speed (it can take a year in your spare time) it really empowers you to do whatever functionality you need. |
|||
|
|
|
If you're a developer, the CMS vs. framework debate comes down to:
Plone is a nice CMS. and now with Plone4 is simpler and faster.
|
|||
|
|
|
Just to clarify some of the points made above: Django is a framework for making CMS-centric websites. I.e., it allows you to create customized admins for managing content. You can, of course, use it to create web applications that are not content-centric, but it does really excel at powering custom CMSs. Plone is more of a "out of the box" CMS. So, it all depends on your requirements. |
|||
|
|
|
Django - is a great framework, and it's really good documented and has a very strong user community. And If you're going to learn developing - django is a perfect choice. For first time you might struggle through to make it 'seat' in your mind firmly, and after couple of projects you'll build you'll feel like more comfortable with it. Components of django are highly reusable, and there a lot of apps you can easily integrate to your project. Once you've done it and have a ready project with some components, building another one with same functionality takes couple hours, just replacing templates and some settings and you have a working project. Django-cms - helps a lot, and you can integrate it with tinyMCE and filebrowser and be happy! :) |
|||
|
|
|
Django is a framework, Plone - a CMS. Django is simple and most of the things are "do it yourself"! You want a view - write it. Want a brand new template for your view - make a new HTML. You want some protection - write some decorators. It's really a wonderful system. Want to switch your DB engine - no problem. Want to switch your search engine - no problem. Django's documentation is awesome! Django is more pythonic - "there's one and only one obvious way of doing things". Plone (I must say - I'm very new to Plone) is a very complicated and not an obvious system. Plone is scary and I consider the Zope "approach" to be sick. Learning the Plone can be more difficult that switching to another programming language. If you can stay away from it, don't even come close. Now, try to do all those things in Plone. It should be possible of course, but... how? I think Plone is awfully documented. It's not consistent, information is spread between many many different pages, examples don't work. In Plone you can do the same thing in many many ways. |
|||
|
|
|
|
|||
|
|