Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Django Book platform available? [closed]

The Django Book has a neat content publishing template. Anyone knows if it's available for public use?

Alternatively, what Django sources would you recommend as an easy to use, out of the box CMS?

like image 670
Tomer Lichtash Avatar asked Sep 22 '09 11:09

Tomer Lichtash


3 Answers

The Django Book is now available in sources (both examples and book content in reStructuredText):

  $ svn co http://djangobook.com/svn/trunk/en

I read book and try examples without leaving Emacs!!

PS Seems SVN server is down. Check https://github.com/jacobian/djangobook.com or even https://github.com/search?q=djangobook

NOTE book was originally published by Apress in 2009 and covered Django version 1.0. Since then it has languished and, in places, is extremely out of date

like image 74
gavenkoa Avatar answered Nov 09 '22 23:11

gavenkoa


According to this post on the mailing list, the source hasn't been released, and it doesn't look like it will be.

I'd be interested in seeing the code as well.

All we know is that it uses the YUI / extjs comment system. Based on that mailing list post it sounds like the code the Django site uses is from a BSD licensed version of the code, so perhaps you could use that javascript as a starting point.

Ian Bicking created a similar commentary system implemented as WSGI middleware. Here are the docs for it. Looks like the source is here.

like image 42
Steven Kryskalla Avatar answered Nov 10 '22 01:11

Steven Kryskalla


There's a free, and fully supported, Django package that we built to have the same functionality as the Django Book site.

http://ucomment.org

That codebase is used on several publicly-available websites, such at http://connectmv.com/tutorials

We do our best to maintain this package, so please give it a try and send us your feedback.

Kevin

like image 32
Kevin Dunn Avatar answered Nov 10 '22 01:11

Kevin Dunn