Index: openacs-4/packages/calendar/www/cal-options-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/www/cal-options-postgresql.xql,v diff -u -N --- openacs-4/packages/calendar/www/cal-options-postgresql.xql 10 Jan 2004 18:59:50 -0000 1.4 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,34 +0,0 @@ - - - - postgresql7.1 - - - - - - select distinct(calendar_id) as calendar_id, - calendar_name, - ' '::varchar as checked_p - from calendars - where acs_permission__permission_p(calendar_id, :user_id, 'calendar_read') = 't' - and acs_permission__permission_p(calendar_id, :user_id, 'calendar_show') = 't' - and private_p = 'f' - - union - - select on_which_calendar as calendar_id, - calendar_name, - ' '::varchar as checked_p - from cal_items, calendars - where acs_permission__permission_p(cal_item_id, :user_id, 'cal_item_read') = 't' - and calendars.private_p = 'f' - and cal_items.on_which_calendar = calendars.calendar_id - - - - - - - -