Forum OpenACS Development: Re: Extensions of categories package

Collapse
Posted by Dave Bauer on
Timo,

I am going to be in need of linked categories pretty soon. Do you have an ideas on how to implement that?

Collapse
Posted by Joel Aufrecht on
Branimir and I are going to do some docs this week to make it easier to use what is currently implemented.  Please see https://openacs.org/doc/openacs-HEAD/categories/requirements.html for my current "state of categories" doc - and email me with corrections!
Collapse
Posted by Timo Hentschel on
Dave: I thought about adding a table to store the directed links and a second table to store the full closure of the directed graph (store for all categories the categories that automatically result from choosing them; start with self-references). When inserting a categorization for an object i'll join with this full-closure table and insert the result set.

Some questions remain: Should there be a way of turning off these linked categories? Probably for every object-tree mapping? Should we also give the option of just turning off linked categories in trees not mapped to an object? Or should there be a finegrained way of turning off some links?

Collapse
Posted by Timo Hentschel on
I added parameters of the category-tree map to let users do single/multiple categorizations and require categorization in a category tree. In addition to that I just added the functionality for category links. Any feedback on that?