Index: openacs-4/packages/file-storage/www/file-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/Attic/file-oracle.xql,v diff -u -r1.4 -r1.5 --- openacs-4/packages/file-storage/www/file-oracle.xql 22 Sep 2001 05:51:00 -0000 1.4 +++ openacs-4/packages/file-storage/www/file-oracle.xql 4 Dec 2001 04:59:48 -0000 1.5 @@ -24,7 +24,6 @@ select r.title, r.revision_id as version_id, - file_storage.get_path(i.item_id,file_storage.get_root_folder([ad_conn package_id]),r.revision_id) as file_path, person.name(o.creation_user) as author, r.mime_type as type, to_char(o.last_modified,'YYYY-MM-DD HH24:MI') as last_modified, Index: openacs-4/packages/file-storage/www/file-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/Attic/file-postgresql.xql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/file-storage/www/file-postgresql.xql 22 Sep 2001 05:51:14 -0000 1.3 +++ openacs-4/packages/file-storage/www/file-postgresql.xql 4 Dec 2001 04:59:48 -0000 1.4 @@ -24,7 +24,6 @@ select r.title, r.revision_id as version_id, - file_storage__get_path(i.item_id,file_storage__get_root_folder([ad_conn package_id]),r.revision_id) as file_path, person__name(o.creation_user) as author, r.mime_type as type, to_char(o.last_modified,'YYYY-MM-DD HH24:MI') as last_modified, @@ -57,3 +56,5 @@ + + Index: openacs-4/packages/file-storage/www/file.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/file.tcl,v diff -u -r1.4 -r1.5 --- openacs-4/packages/file-storage/www/file.tcl 22 Sep 2001 05:51:41 -0000 1.4 +++ openacs-4/packages/file-storage/www/file.tcl 4 Dec 2001 04:59:48 -0000 1.5 @@ -36,7 +36,6 @@ select person.name(o.creation_user) as owner, i.name, r.title, - content_item.get_path(i.item_id,file_storage.get_root_folder([ad_conn package_id])) as file_path, acs_permission.permission_p(:file_id,:user_id,'write') as write_p, acs_permission.permission_p(:file_id,:user_id,'delete') as delete_p, acs_permission.permission_p(:file_id,:user_id,'admin') as admin_p Index: openacs-4/packages/file-storage/www/index-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/Attic/index-oracle.xql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/file-storage/www/index-oracle.xql 22 Sep 2001 05:55:36 -0000 1.3 +++ openacs-4/packages/file-storage/www/index-oracle.xql 4 Dec 2001 04:59:48 -0000 1.4 @@ -9,7 +9,6 @@ select i.item_id as file_id, i.name as name, i.live_revision, - file_storage.get_path(i.item_id,file_storage.get_root_folder(:package_id),null) as path, r.mime_type as type, to_char(o.last_modified,'YYYY-MM-DD HH24:MI') as last_modified, r.content_length as content_size, @@ -24,7 +23,6 @@ select i.item_id as file_id, f.label as name, 0, - file_storage.get_path(f.folder_id,null,null) as path, 'Folder', NULL, 0, Index: openacs-4/packages/file-storage/www/index-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/Attic/index-postgresql.xql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/file-storage/www/index-postgresql.xql 22 Sep 2001 05:55:54 -0000 1.3 +++ openacs-4/packages/file-storage/www/index-postgresql.xql 4 Dec 2001 04:59:48 -0000 1.4 @@ -8,7 +8,6 @@ select i.item_id as file_id, i.name as name, i.live_revision, - file_storage__get_path(i.item_id,file_storage__get_root_folder(:package_id)) as path, r.mime_type as type, to_char(o.last_modified,'YYYY-MM-DD HH24:MI') as last_modified, r.content_length as content_size, @@ -22,7 +21,6 @@ select i.item_id as file_id, f.label as name, 0, - file_storage__get_path(f.folder_id,null) as path, 'Folder', NULL, 0, @@ -36,3 +34,4 @@ + Index: openacs-4/packages/file-storage/www/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/index.tcl,v diff -u -r1.5 -r1.6 --- openacs-4/packages/file-storage/www/index.tcl 24 Sep 2001 20:21:24 -0000 1.5 +++ openacs-4/packages/file-storage/www/index.tcl 4 Dec 2001 04:59:48 -0000 1.6 @@ -51,7 +51,6 @@ select i.item_id as file_id, r.title as name, i.live_revision, - content_item.get_path(i.item_id,file_storage.get_root_folder(:package_id)) as path, r.mime_type as type, to_char(o.last_modified,'YYYY-MM-DD HH24:MI') as last_modified, r.content_length as content_size, @@ -66,7 +65,6 @@ select i.item_id as file_id, f.label as name, 0, - content_item.get_path(f.folder_id) as path, 'Folder', NULL, 0,