Index: openacs-4/packages/assessment/lib/comments-chunk-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/lib/Attic/comments-chunk-postgresql.xql,v diff -u -N --- openacs-4/packages/assessment/lib/comments-chunk-postgresql.xql 12 Jun 2006 02:49:49 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,26 +0,0 @@ - - - - postgresql7.1 - - - - select g.comment_id, - r.content, - r.title, - r.mime_type, - acs_object__name(o.creation_user) as author, - to_char(o.creation_date, 'YYYY-MM-DD HH24:MI:SS') as creation_date_ansi - from general_comments g, - cr_revisions r, - cr_items ci, - acs_objects o - where g.object_id = :object_id - and r.revision_id = ci.live_revision - and ci.item_id = g.comment_id - and o.object_id = g.comment_id - order by o.creation_date - - - -