Posted
over 17 years
ago
It turns out Django MPTT 0.2 had a dodgy setup.py, which only worked if you had a valid DJANGO_SETTINGS_MODULE environment variable in place.
You can now grab version 0.2.1 instead, which puts in a quick fix to rectify this.
|
Posted
over 17 years
ago
The second public release of Django MPTT is now available for download.
Backwards-incompatible changes:
mptt.register replaces mptt.models.treeify for registering models with the mptt application.
move_node is now the only "public" method
|
Posted
over 17 years
ago
The first public release of Django MPTT is available for download.
Version 0.1 features:
Simple registration of Model classes for MPTT.
The tree structure is automatically managed when you create or delete MPTT Model instances.
MPTT Model
|
Posted
over 17 years
ago
Django MPTT is an application I've split out from a project I'm working on - it consists of some utilities for implementing Modified Preorder Tree Traversal (MPTT) with your own Django Model classes and helpers for working with trees of Model instances.
|