summaryrefslogtreecommitdiff
path: root/www/py-django-mptt
AgeCommit message (Collapse)AuthorFilesLines
2013-01-03Changes 0.5.5:adam2-6/+6
Bug fixes.
2012-10-28Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-08-26Changes 0.5.4:adam3-7/+9
Bug fixes.
2012-01-08Utilities for implementing Modified Preorder Tree Traversal with youradam4-0/+79
Django Models and working with trees of Model instances. MPTT is a technique for storing hierarchical data in a database. The aim is to make retrieval operations very efficient. The trade-off for this efficiency is that performing inserts and moving items around the tree is more involved, as there's some extra work required to keep the tree structure in a good state at all times.