Re: Treebeard Question

2011-03-08 Thread Tyler Brock
Answer: I was depending on Django's auto_now feature to give me appropriate datetime which apparently isn't available until save. Changed root addition to this and it works like a charm: now = created=datetime.datetime.now() Interaction.add_root(page=page, content=content, user=user, interactio

Treebeard Question

2011-03-07 Thread Tyler Brock
Hey guys, Was wondering if you could help me figure this out... I've got a class in a model that implements MP_Node from treebeard: http://dpaste.com/481579/ When I tag something and send the tag request to the API I want to create a new tag interaction (root node) as defined in the following ha