Index: openacs-4/packages/cms/www/modules/templates/index-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/cms/www/modules/templates/index-postgresql.xql,v diff -u -N -r1.3 -r1.4 --- openacs-4/packages/cms/www/modules/templates/index-postgresql.xql 22 Sep 2003 11:55:37 -0000 1.3 +++ openacs-4/packages/cms/www/modules/templates/index-postgresql.xql 16 Nov 2004 22:32:51 -0000 1.4 @@ -24,7 +24,7 @@ - select content_item__get_path(:id, null) + select content_item__get_path(:item_id, null) @@ -33,7 +33,7 @@ select - t.template_id, i.name, + t.template_id, t.template_id as item_id, i.name, to_char(o.last_modified, 'MM/DD/YY HH:MI AM') as modified, coalesce(round(r.content_length::numeric / 1000,2), 0)::float8::text || ' KB'::text as file_size from @@ -42,7 +42,7 @@ RIGHT OUTER JOIN cr_items i ON i.latest_revision = r.revision_id where - i.parent_id = :id + i.parent_id = :item_id and i.item_id = t.template_id and @@ -53,5 +53,19 @@ + + + + select + parent_id, coalesce(label, name) as label, description + from + cr_items i, cr_folders f + where + i.item_id = f.folder_id + and + f.folder_id = :item_id + + +