Index: openacs-4/packages/calendar/tcl/calendar-display-procs-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/tcl/Attic/calendar-display-procs-postgresql.xql,v diff -u -r1.9 -r1.10 --- openacs-4/packages/calendar/tcl/calendar-display-procs-postgresql.xql 17 May 2003 10:20:50 -0000 1.9 +++ openacs-4/packages/calendar/tcl/calendar-display-procs-postgresql.xql 23 May 2003 13:16:08 -0000 1.10 @@ -124,13 +124,15 @@ select to_char(start_date, 'HH24') as start_hour, + to_char(start_date, 'YYYY-MM-DD') as pretty_start_date, + to_char(start_date, 'HH24:MI:SS') as start_time, to_char(start_date, 'YYYY-MM-DD HH24:MI:SS') as ansi_start_date, + to_char(end_date, 'YYYY-MM-DD') as pretty_end_date, to_char(end_date, 'YYYY-MM-DD HH24:MI:SS') as ansi_end_date, coalesce(e.name, a.name) as name, - coalesce(e.status_summary, a.status_summary) as status_summary, e.event_id as item_id, - recurrence_id, - (select type from cal_item_types where item_type_id= cal_items.item_type_id) as item_type + (select type from cal_item_types where item_type_id= cal_items.item_type_id) as item_type, + to_char(start_date, 'Day') as pretty_weekday from acs_activities a, acs_events e, timespans s,