Changes between Version 203 and Version 204 of DjangoResources


Ignore:
Timestamp:
Oct 15, 2009, 2:05:13 AM (15 years ago)
Author:
Antti Kaihola
Comment:

grouped db hierarchy apps together

Legend:

Unmodified
Added
Removed
Modified
  • DjangoResources

    v203 v204  
    4646  * [http://code.google.com/p/diamanda/ Diamanda Wiki and MyghtyBoard Forum]: A wiki and forum. GPL.
    4747  * [http://code.google.com/p/django-forum/ django-forum] - A lightweight Forum application that plugs straight into your existing Django project.
     48 * Hierarchy structures in the database
     49  * [http://code.google.com/p/django-mptt/ Django MPTT] -
     50    Utilities for implementing Modified Preorder Tree Traversal (MPTT) with your Django Model classes
     51    and working with trees of Model instances.
     52  * [http://code.google.com/p/django-treebeard/ django-treebeard] -
     53    3 different efficient tree implementations:
     54    Adjacency List, Materialized Path and Nested Sets.
     55    They share the same API, so it’s easy to switch between them.
    4856 * AutoCompleteSolutions - links to several solutions for integrating !JavaScript auto-complete fields
    4957 * [http://bitbucket.org/jezdez/django-dbtemplates/ django-dbtemplates] - A Template loader for database stored templates with an extensible cache backend
     
    7785 * [http://code.google.com/p/blogmaker/ Blogmaker] A full-featured, production-quality blogging application with support for trackback, ping and comment honeypots
    7886 * [http://code.google.com/p/django-pingback/ django-pingback] Pingback implementation for Django
    79  * [http://code.google.com/p/django-mptt/ Django MPTT] - Utilities for implementing Modified Preorder Tree Traversal (MPTT) with your Django Model classes and working with trees of Model instances.
    80  * [http://code.google.com/p/django-treebeard/ django-treebeard] - 3 different efficient tree implementations: Adjacency List, Materialized Path and Nested Sets. They share the same API, so it’s easy to switch between them.
    8187 * [http://code.google.com/p/django-dynamic-media-serve/ django-dynamic-media-serve] - Django Dynamic Media Serve is the good alternative of the default django.views.static.serve for serving the media files in Django.
    8288 * [http://code.google.com/p/django-cron/ django-cron] - Djang-Cron is a simple tool that allows you to have cron jobs for you applications. It comes with an example to delete expired sessions, and I have one for django-registration to delete expired users. Django Cron is intended to replace anything you would be adding to a bin directory in your own Django App
Back to Top