Index: openacs-4/packages/categories/tcl/category-trees-procs.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/categories/tcl/category-trees-procs.xql,v diff -u -r1.9 -r1.10 --- openacs-4/packages/categories/tcl/category-trees-procs.xql 28 Aug 2007 16:30:03 -0000 1.9 +++ openacs-4/packages/categories/tcl/category-trees-procs.xql 7 Oct 2007 22:36:56 -0000 1.10 @@ -11,7 +11,17 @@ - + + + select c.category_id as category_id from categories c, category_translations ct + where parent_id is null + and tree_id = :tree_id + and c.category_id = ct.category_id + and locale = :locale + order by name + + + @@ -36,6 +46,16 @@ + + + + select object_id + from acs_objects + where title = :title + and object_type = 'category_tree' + + + @@ -59,8 +79,16 @@ + + + + select distinct tree_id + from category_object_map_tree + where object_id = :object_id + + + -