Live data from Hacker News

Django CMS 3.2 released

django-cms.org

21–30 of 96 posts

Re: Django CMS 3.2 released

#21

This is the first time I've seen Django CMS, but it looks interesting. How hard is it to integrate into an existing Django site?

Very easy - django CMS is Django all the way down. All addons are simply Django apps, the templates are Django templates, etc... So if you know Django you'll find it easy to develop for django CMS. It's quite common to find sites that started as bare Django sites and evolved by adding the CMS to it.

Re: Django CMS 3.2 released

#22

Off-topic, but since CMS-related submissions come up rather scarcely nowadays: What are some promising, modern Web Content Management Systems for medium-sized sites that I should look at, especially if I like the clean, modular design of ProcessWire very much, but not its implementation (too slow even with caching enabled)? I don't care about the programming language (PHP is fine, so is anything else). What I do care…

django CMS is a lot smarter than that.

It's really a kludge to define 'page types' for (say) a book - a book is a book, not a page.

So in Django you define a book, in a modular application, and then define how it's displayed or represented, which of course could include having its own page - but also allows you to connect it to all kinds of other meaningful data.

django CMS is designed to allow you to integrate such modular applications. The tutorial http://docs.django-cms.org/en/develop/introduction/index.htm... covers this, in the section "Integrating a third-party application".

Re: Django CMS 3.2 released

#23

Off-topic, but since CMS-related submissions come up rather scarcely nowadays: What are some promising, modern Web Content Management Systems for medium-sized sites that I should look at, especially if I like the clean, modular design of ProcessWire very much, but not its implementation (too slow even with caching enabled)? I don't care about the programming language (PHP is fine, so is anything else). What I do care…

On PHP I quite like Concrete5. It's reasonably clean, and while I've only used it on small sites there are a bunch of people using it as their main CMS for decent sized sites.

The CMS I use the most is Umbraco. It's an open-source ASP.NET CMS that I've used on a varied range of sites, from small to very large. It has its flaws, like most of these types of tools, but I recommend downloading it, and giving it a quick test.

Re: Django CMS 3.2 released

#24
post #13

Earlier quoted context omitted.

Beyond the documentation, they have a demo if you want to find out: https://control.aldryn.com/demo/get-new/

"Sorry, we've temporarily run out of demo websites. Please try again soon! " Interesting wording.

https://twitter.com/djangocms/status/674982831320379392

Re: Django CMS 3.2 released

#25

Off-topic, but since CMS-related submissions come up rather scarcely nowadays: What are some promising, modern Web Content Management Systems for medium-sized sites that I should look at, especially if I like the clean, modular design of ProcessWire very much, but not its implementation (too slow even with caching enabled)? I don't care about the programming language (PHP is fine, so is anything else). What I do care…

Drupal 8 just dropped a couple weeks ago and will do everything you just listed out of the box. The code under the hood appears to be vastly more pleasant and interesting to work with than any other PHP CMS I know of, including previous versions of Drupal.

Re: Django CMS 3.2 released

#28

Earlier quoted context omitted.

"Sorry, we've temporarily run out of demo websites. Please try again soon! " Interesting wording.

That's the HN effect. Demo sites are "pre-deployed" to make sure you get a fresh individual site. Usually there are hundreds of them in the waiting but looks like we've got very popular all of a sudden :) If you'd like to give it a try and don't have patience to wait for a demo site to become available, you can also register to Aldryn [ http://www.aldryn.com/ ] (for free) and deploy your own site with a few clicks.

Slight side-track, but I'd be interested in your "pre-deployment" process. Could you enlighten me, or point me somewhere I could find out? Thanks.

Re: Django CMS 3.2 released

#29
post #25

Off-topic, but since CMS-related submissions come up rather scarcely nowadays: What are some promising, modern Web Content Management Systems for medium-sized sites that I should look at, especially if I like the clean, modular design of ProcessWire very much, but not its implementation (too slow even with caching enabled)? I don't care about the programming language (PHP is fine, so is anything else). What I do care…

Drupal 8 just dropped a couple weeks ago and will do everything you just listed out of the box. The code under the hood appears to be vastly more pleasant and interesting to work with than any other PHP CMS I know of, including previous versions of Drupal.

Indeed, Drupal 8 is first and foremost a data modeling tool. It's for structured content, not pages.

It allows you to reuse that structured content in many ways, everywhere.

(Django CMS as demonstrated in the video is purely about building pages, which makes it — if I'm being a bit harsh — just a glorified MS FrontPage.)

Post reply on HN