Tagged Questions
The mptt tag has no wiki summary.
10
votes
2answers
320 views
efficient function to retrieve a queryset of ancestors of an mptt queryset
Does anybody have an efficient algorithm to retrieve all ancestors of an mptt queryset? The best I could think of so far is something like this:
def qs_ancestors(queryset):
if ...
5
votes
2answers
1k views
data structure for transversal tree in PHP?
I don't have a background in CS or data structures. I want to make a PHP class that stores a modified preorder transversal tree, for manipulation and syncing with a database.
Basically I need to ...
5
votes
1answer
747 views
Storing hierarchical (parent/child) data in Python/Django: MPTT alternative?
I'm looking for a good way to store and use hierarchical (parent/child) data in Django. I've been using django-mptt, but it seems entirely incompatible with my brain - I end up with non-obvious bugs ...
3
votes
1answer
242 views
django-mptt not linking data together correctly
Hay, I'm using MPTT to create some tree-like data from a model which contains conversations, and i want them to be ordered by a 'votes' field.
The model looks like this at the moment, very basic.
...
3
votes
2answers
818 views
How to repair a corrupted MPTT tree (nested set) in the database using SQL?
I have an MPTT tree of over 100,000 records stored in MySQL using lft, rght and parent_id columns. Now the left/right values became corrupted, while the parent ids are still intact. It would require ...
3
votes
2answers
524 views
Deeply nested subqueries for traversing trees in MySQL
I have a table in my database where I store a tree structure using the hybrid Nested Set (MPTT) model (the one which has lft and rght values) and the Adjacency List model (storing parent_id on each ...
3
votes
4answers
2k views
Building hierarchy objects from flat list of parent/child
I have a list of items in a hierarchy, and I'm attempting to parse this list out into an actual hierarchy of objects. I'm using modified pre-order tree traversal to store/iterate through this list, ...
2
votes
2answers
108 views
Managing hierarchies in SQL: MPTT/nested sets vs adjacency lists vs storing paths
For a while now I've been wrestling with how best to handle hierarchies in SQL. Frustrated by the limitations of adjacency lists and the complexity of MPTT/nested sets, I began thinking about simply ...
2
votes
0answers
82 views
Rails ACL Using Modified Preorder Tree Traversal
Is there a Rails ACL plugin/gem that uses MPTT (Modified Preorder Tree Traversal) as the technique to administer permissions?
I'm looking for ACL that will allow me to create roles, assign users to ...
2
votes
1answer
70 views
Modified Preorder Tree Transversal Child Roll Up
I'm trying to roll up spend by child company including all the grandchildren companies without any recursive functions.
My data set looks similar to this format:
Parent A
- Child A.1 - $1,000
- ...
2
votes
1answer
1k views
Finding a subtree in a CakePHP Tree
In CakePHP, how do you select just a subtree in a model which actsAs tree?
I tried this, to find the tree headed by the item with label = "My Label"
$this->find("threaded", array(
...
2
votes
2answers
2k views
How to convert this MPTT array into a tree structure in PHP?
I've got hierarchal data in the database, stored in Modified Preorder Tree Traversal format. I'm pulling the data in a query that looks something like "SELECT ID, Left, Right, Name, etc FROM Table ...
1
vote
1answer
206 views
How to show only categories with products with CakePHP's tree behavioral?
I'm using CakePHP's tree behavior and need to know if there is any products in category or it's subcategories since I don't want to view empty categories.
I would like to do something like this:
...
1
vote
2answers
351 views
django-mptt get_descendants for a list of nodes
I am trying to get all descendants(include_self=True) not for one
Node, but for a list (a QuerySet) of Nodes. This should be one SQL
query.
Example (that actually is not working:)
some_nodes = ...
1
vote
2answers
134 views
MPTT to select root element mysql
What mysql query should i use to select root elements? Let's say i have tree structure like this:
http://www.ipix.lt/desc/18496369
And i want to select (Vaisiai, Daržovės) elements.
1
vote
1answer
949 views
Django-mptt completely buggy or am I doing it wrong?
I'm attempting to use django-mptt with very little luck. This is with Python2.5, windows, sqlite3, Django 1.2pre , django-mptt latest from svn.
The code:
model:
class Node(models.Model):
name ...
1
vote
1answer
198 views
How to properly sort MPTT hierarchy data into multidimensional array?
Helo there, im trying to figure out how to write a function that returns a multidimensional array, based on the data below:
I know how to write the function using the "category_parent" value, but im ...
1
vote
1answer
707 views
Django treebeard what are differences between AL, NS, MP
I'm trying to make a model for categorizing some objects.
I already tried using django-mptt to easily retrieve related categories, and now I'm searching different solutions to find the best one.
I ...
1
vote
2answers
884 views
MPTT ( Modified Preorder Tree Traversal) issue in PHP
My first post here! Seems like this is the place to get wise ;)
I am currently in the middle of some testing with my first ever attempt to try the MPTT (Modified Preorder Tree Traversal) approach to ...
1
vote
2answers
246 views
Suggested indices for a MPTT table
I'm just building a table to store hierarchical data using the Modified Pre-order Tree Traversal (MPTT) -- you know the one: each node stores the left and right IDs to find its descendants. I'm using ...
1
vote
1answer
1k views
Sort MPTT resultset into a multidimensional array PHP
I have been experimenting with the Modified Pre-Order Tree Traversal
Pattern, my test case code is returning the results as expected however I am
having trouble converting the 2D array into a ...
1
vote
4answers
656 views
Finding breadcrumbs for nested sets
I'm using nested sets (aka modified preorder tree traversal) to store a list of groups, and I'm trying to find a quick way to generate breadcrumbs (as a string, not a table) for ALL of the groups at ...
1
vote
2answers
2k views
Problem using django mptt
I am having problem implementing django mptt.
Here is my model:
class Company(models.Model):
name = models.CharField( max_length=100)
parent = models.ForeignKey('self', null=True, ...
0
votes
2answers
55 views
How to update a node in Modified Preorder Tree Traversal
I am using MPTT for storing Hierarchies. The concept for Adding and Deleting is well explained in this Modified Preorder Tree Traversal link.
How do we update a particular node and its tree ...
0
votes
1answer
63 views
How to use MPTT for django to get all children?
I'm trying to get all the children of a category:
def list_sub(self, category_name):
# this will return the parent if exists
category = Category.objects.filter(seo_title__exact = ...
0
votes
1answer
24 views
Django mptt returns -2 on get_descendant_count()
I am trying to get the descendants of a root node, but for some reason the function returns -2 on get_descendant_count().
Here's the code:
roots = Project.tree.root_nodes()
...
0
votes
0answers
102 views
How to build django-mptt tree without rebuilding after each insert?
I'm building large mptt tree.
I'd like to insert all nodes and after that start method for rebuilding whole tree:
for i in range(big_loop):
...
m.save() # Saving mptt object. Tree is rebuild.
...
0
votes
1answer
210 views
Extending Django FlatPages to use MPTT
Preface: I was writing my own Page app that used MPTT and a custom page model. This was working for me, but FlatPages is more refined than my custom Page Model and so I'm leaning toward just extending ...
0
votes
1answer
85 views
MPTT, how to implement in Google App Engine using JDO?
I am moving from PHP/MySQL to Google App Engine and using JDO as interface with the datastore. What's the recommended way of migrating a Modified Preorder Tree Traversal (MPTT) enabled table to a JDO ...
0
votes
0answers
66 views
How to create a checkbox tree using django and mptt
I have create a model like this:
class Index(Model):
code = models.CharField(u'code', max_length=20)
name = models.CharField(u'name', max_length=200)
parent = models.ForeignKey('self', ...
0
votes
2answers
165 views
Django mptt admin category
I am using the basic configuration for Django Mptt Admin
from django.contrib import admin
from mptt.admin import MPTTModelAdmin
from teklifpark.categories.models import Category
...
0
votes
1answer
67 views
python - mptt for nested lists
I have read a little about mptt solution and I'm trying to implement some sort of translating a nested list into a mptt list. I know, that in this format it's useless, but nested lists can be easily ...
0
votes
1answer
51 views
Return a reference of an object instance
I'm working on a MPTT object that will support several database methods. First of is MySQL and MySQLi. Now I've created it like this
Mptt - The main object that will load the correct sub object
...
0
votes
1answer
126 views
django-mptt and ForeignKey with blank=True
I am using django-mptt in my project
models.py:
class Category(models.Model):
name = models.TextField()
parent = models.ForeignKey("self", blank=True, null=True,
...
0
votes
1answer
111 views
MySQL, PHP, MPTT: Sort children on weight/cost/menu_order
SELECT node . * , node.page_id, (COUNT( parent.page_id ) - ( sub_tree.depth +1 )) AS depth
FROM pages AS node, pages AS parent, pages AS sub_parent, (
SELECT node.page_id, (
COUNT( ...
0
votes
2answers
212 views
(MySQL) Aggregate functions on MPTT / Nested Set Model
So I'm using MySQL and storing my category structure based on the Nested Set / Modified Pre-Order Tree Traversal model, in a table name "nested_category" which has fields:
category_id, name, lft, rgt, ...
0
votes
1answer
96 views
What is the most efficient way to query a MPTT style table by path?
I have a MySQL table that stores hierarchical data using the MPTT method. The table also has a column in which I store a short string identifier (slug) for each row.
I'd like to be able to query the ...
0
votes
0answers
119 views
PHP need to display MPTT without modifying MySql database
I have a MPTT organized MySql database which i need to display , there is no level limit and i can't alter the database, i've tryed ...
0
votes
1answer
298 views
Making a copy of a FeinCMS page tree using django-mptt changes child order
I'm trying to make a copy of a FeinCMS page tree, which is managed using django-mptt. I wrote this function:
def make_tree_copy(page, parent=None):
'''
Makes a copy of the tree starting at ...
0
votes
1answer
192 views
Update all parent id's in a SQL mptt table
consider a SQL table, which stores hierarchical data using MPTT (Modified Preorder Tree Traversal) method.
CREATE TABLE node (
id SERIAL NOT NULL, -- primary key
-- ...
0
votes
1answer
156 views
Converting adjacency list tables to MPTT in SQL Server 2008
Is there a helpful tool or script resource to aid conversion from old-school adjacency list tables to MPTT?
I would have thought it was a problem faced by a few cleverer souls than I in the past, and ...
0
votes
2answers
841 views
Have multiple trees in one table using CakePHP Tree Behavior
I'm converting a flat list into a tree in my CakePHP app and found that there is an existing behavior that has this functionality. My table is not one giant tree, but consists of many user-generated ...
0
votes
1answer
281 views
Modified preorder tree traversal - finding the next node
I have this data:
id | parent_id | lft | rgt | name
=====================================
1 | 0 | 1 | 8 | abc
2 | 3 | 5 | 6 | jkl
3 | 1 | 2 | 3 | def
4 | 0 ...
0
votes
1answer
454 views
Sorting items in MPTT result set?
I'm using the MPTT (modified preorder tree traversal) model to store hierarchical data in my MySQL table. (MPTT model: another description is nested set model.). My question is this: has anyone ...