summaryrefslogtreecommitdiff
path: root/www/py-django-mptt
AgeCommit message (Collapse)AuthorFilesLines
2016-06-08Switch to MASTER_SITES_PYPI.wiz1-2/+2
2016-03-14Remove precompiled Python files in tests directoryadam2-21/+6
2016-03-06Changes 0.8.3:adam3-8/+68
Fixed build
2015-11-04Add SHA512 digests for distfiles for www categoryagc1-1/+2
Problems found locating distfiles: Package haskell-cgi: missing distfile haskell-cgi-20001206.tar.gz Package nginx: missing distfile array-var-nginx-module-0.04.tar.gz Package nginx: missing distfile encrypted-session-nginx-module-0.04.tar.gz Package nginx: missing distfile headers-more-nginx-module-0.261.tar.gz Package nginx: missing distfile nginx_http_push_module-0.692.tar.gz Package nginx: missing distfile set-misc-nginx-module-0.29.tar.gz Package nginx-devel: missing distfile echo-nginx-module-0.58.tar.gz Package nginx-devel: missing distfile form-input-nginx-module-0.11.tar.gz Package nginx-devel: missing distfile lua-nginx-module-0.9.16.tar.gz Package nginx-devel: missing distfile nginx_http_push_module-0.692.tar.gz Package nginx-devel: missing distfile set-misc-nginx-module-0.29.tar.gz Package php-owncloud: missing distfile owncloud-8.2.0.tar.bz2 Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-07-17Changes 0.7.4:adam2-6/+6
Fixes a regression affecting `TreeManager.get_queryset_ancesto
2015-04-17Changes 0.7.1:adam3-7/+21
Unknown
2014-12-31Improve EGG_NAME default to work for packages with '-' in their name.wiz1-2/+1
Remove now unnecessary overrides in various packages.
2014-06-09Changes 0.6.1:adam2-6/+6
point releast for django 1.7 compatibility
2013-08-09Changes 0.6.0:adam3-9/+16
mptt now requires Python 2.6+, and supports Python 3.2+
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.