Index: openacs-4/contrib/packages/events/www/admin/activity-edit.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/events/www/admin/Attic/activity-edit.xql,v diff -u -N --- openacs-4/contrib/packages/events/www/admin/activity-edit.xql 9 Mar 2003 12:08:22 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,25 +0,0 @@ - - - - - - select 1 - from events_activities - where activity_id = :activity_id - - - - - - select a.name, - a.description, - ae.available_p, - ae.detail_url, - ae.default_contact_user_id - from acs_activities a, events_activities ae - where a.activity_id = :activity_id - and a.activity_id = ae.activity_id - - - - Index: openacs-4/contrib/packages/events/www/admin/activity-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/events/www/admin/Attic/activity-oracle.xql,v diff -u -N --- openacs-4/contrib/packages/events/www/admin/activity-oracle.xql 9 Mar 2003 12:08:22 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,50 +0,0 @@ - - - - - - select role, eor.role_id, - decode(public_role_p, 't', ' (public role)', '') as public_role_p - from events_organizer_roles eor, events_org_role_activity_map eoram - where eoram.activity_id = :activity_id - and eoram.role_id = eor.role_id - order by role - - - - - - select CASE WHEN to_char(t.start_date, 'YYYY-MM-DD') = to_char(t.end_date, 'YYYY-MM-DD') - THEN to_char(t.start_date, :date_format) || ' (' || to_char(t.start_date, :time_format) || ' - ' || to_char(t.end_date, :time_format) || ')' - ELSE to_char(t.start_date, :date_format) || ' ' || to_char(t.start_date, :time_format) || ' - ' || to_char(t.end_date, :date_format) || ' ' || to_char(t.end_date, :time_format) - END as timespan, - nvl(e.name, a.name) as name, - e.event_id, - v.city, - v.usps_abbrev - from acs_activities a, - acs_events e, - events_activities ea, - events_events ee, - timespans s, - time_intervals t, - events_venues v - where e.timespan_id = s.timespan_id - and s.interval_id = t.interval_id - and e.activity_id = a.activity_id - and a.activity_id = ea.activity_id - and e.activity_id = :activity_id - and e.event_id = ee.event_id - and v.venue_id = ee.venue_id - and ee.available_p = 't' - and ea.package_id = :package_id - order by t.start_date - - - - - - - - - Index: openacs-4/contrib/packages/events/www/admin/activity-orders-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/events/www/admin/Attic/activity-orders-postgresql.xql,v diff -u -N --- openacs-4/contrib/packages/events/www/admin/activity-orders-postgresql.xql 9 Mar 2003 12:08:22 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,74 +0,0 @@ - - - - - - select er.reg_id, - person__name(er.user_id) as name, - er.user_id, - pa.email, - er.reg_state, - to_char(ao.creation_date, :date_format) || ' ' || to_char(ao.creation_date, :time_format) as creation_date, - ae.event_id, - ev.venue_name, - CASE WHEN to_char(t.start_date, 'YYYY-MM-DD') = to_char(t.end_date, 'YYYY-MM-DD') - THEN to_char(t.start_date, :date_format) || ' (' || to_char(t.start_date, :time_format) || ' - ' || to_char(t.end_date, :time_format) || ')' - ELSE to_char(t.start_date, :date_format) || ' ' || to_char(t.start_date, :time_format) || ' - ' || to_char(t.end_date, :date_format) || ' ' || to_char(t.end_date, :time_format) - END as timespan - from events_registrations er, - parties pa, - acs_objects ao, - acs_events ae, - events_venues ev, - events_events ee, - timespans s, - time_intervals t - where er.user_id = pa.party_id - and ae.activity_id = :activity_id - and ae.event_id = er.event_id - and ae.event_id = ee.event_id - and ee.venue_id = ev.venue_id - and er.reg_state <> 'canceled' - and er.reg_id = ao.object_id - and ae.timespan_id = s.timespan_id - and s.interval_id = t.interval_id - order by creation_date - - - - - - select er.reg_id, - person__name(er.user_id) as name, - er.user_id, - pa.email, - er.reg_state, - to_char(ao.creation_date, :date_format) || ' ' || to_char(ao.creation_date, :time_format) as creation_date, - ae.event_id, - ev.venue_name, - CASE WHEN to_char(t.start_date, 'YYYY-MM-DD') = to_char(t.end_date, 'YYYY-MM-DD') - THEN to_char(t.start_date, :date_format) || ' (' || to_char(t.start_date, :time_format) || ' - ' || to_char(t.end_date, :time_format) || ')' - ELSE to_char(t.start_date, :date_format) || ' ' || to_char(t.start_date, :time_format) || ' - ' || to_char(t.end_date, :date_format) || ' ' || to_char(t.end_date, :time_format) - END as timespan - from events_registrations er, - parties pa, - acs_objects ao, - acs_events ae, - events_venues ev, - events_events ee, - timespans s, - time_intervals t - where er.user_id = pa.party_id - and ae.activity_id = :activity_id - and ae.event_id = er.event_id - and ae.event_id = ee.event_id - and ee.venue_id = ev.venue_id - and er.reg_state = :specific_reg_type - and er.reg_id = ao.object_id - and ae.timespan_id = s.timespan_id - and s.interval_id = t.interval_id - order by creation_date - - - - Index: openacs-4/contrib/packages/events/www/admin/activity-orders.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/events/www/admin/Attic/activity-orders.adp,v diff -u -N --- openacs-4/contrib/packages/events/www/admin/activity-orders.adp 22 May 2003 13:52:52 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,90 +0,0 @@ - -@title;noquote@ -@context;noquote@ - - - - - - - - - - -
Activity@activity_info.name@
- - - - - - - - - - - - - -
ApprovedPendingWaitingCanceled
@activity_stats.approved@@activity_stats.pending@@activity_stats.waiting@@activity_stats.canceled@
- -
- - -
    -
  • No registrants fit this category -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - -
LocationTimeReg. IDNameEmailReg. DateReg. State
@activity_members.venue_name@@activity_members.timespan@@activity_members.reg_id@@activity_members.name@@activity_members.email@@activity_members.creation_date@ - - - @activity_members.reg_state@ - waitlist - - cancel - - - @activity_members.reg_state@ -approve - - cancel - - - @activity_members.reg_state@ -approve - - waitlist - - cancel - - - @activity_members.reg_state@ -approve - - waitlist - - -
-
- -