root/trunk/calendar3/resources/calendar/initialCalendars

Revision 2 (checked in by douglm, 7 years ago)

Initial import of bedework

Line 
1 # (calendarid, name, type, ref, parentid)
2 #
3 # name is only shown if the type is O or N.
4 # We include names below for other calendars to make this file and database
5 # records more readable
6 #
7 # type:  K = the referenced keyword,
8 #        L = the referenced location,
9 #        S = the referenced sponsor,
10 #        C = the referenced creator,
11 #        A = 'and' (of its children),
12 #        O = 'or' (of its children),
13 #        N = not (of the referenced calendar)
14 #        a = 'alias' (of another calendar [i.e., if a calendar needs to be
15 #            the child of two parents),
16 #
17 # Calendar #1 is the default calendar.  Other calendars' whose ids are less
18 # than 10 are 'top-level' calendars, which will show up as the root of
19 # the forest of calendars displayed on the All Calendars page.
20 #
21 # For now, we order subcalendars by calendarid.  This may change.
22 # We leave plenty of space between the ids of the subcalendars, so we can
23 # rearrange them and still order by calendarid.
24 #
25 # Otherwise, calendar ids are arbitrary integers. 
26 #
27 # This file can be loaded by edu.washington.cac.calendar.db.LoadCalendars
28 #
29 # If people have already subscribed to calendars, and calendarids change,
30 #   bad things will probably happen to the subscriptions.  But if the
31 #   ids remain the same, nothing untoward should occur.
32 #
33 # Obviously, the references to keywords, sponsors, creators and locations
34 #   should sync up with the rows that were pre-loaded in the database schema
35
36 (1, 'All Public Events (except class meetings)', 'N', 10, 0)   #default calendar
37   (10, 'events created by notToBeLoadedByDefaultCreator', 'C', 2, 1)
38 (2, 'Main Calendars', 'O', 0, 0)
39   (100, 'General Calendars', 'O', 0, 2)
40     (1000, 'Academic Calendar', 'K', 35, 100)                     
41     (1100, 'Alerts', 'K', 33, 100)                     
42     (1200, 'Deadlines', 'K', 22, 100)
43     (1300, 'Holidays', 'K', 34, 100)                     
44   (110, 'Arts (all)', 'O', 0, 2)
45     (1400, 'Concerts', 'K', 3, 110)         
46     (1500, 'Dance', 'K', 4, 110)             
47     (1600, 'Drama', 'K', 5, 110)               
48     (1700, 'Exhibits', 'K', 6, 110)             
49     (1800, 'Films', 'K', 7, 110)                 
50     (1900, 'Operas', 'K', 12, 110)               
51     (2000, 'Readings', 'K', 14, 110)               
52   (120, 'Conferences/Meetings (all)', 'O', 0, 2)
53     (2100, 'Conferences', 'K', 24, 120)               
54     (2200, 'Forums', 'K', 25, 120)   
55     (2300, 'Hearings', 'K', 9, 120)   
56     (2400, 'Meetings', 'K', 29, 120)   
57     (2500, 'Workshops', 'K', 26, 120)   
58   (130, 'Health Sciences', 'K', 8, 2)     
59   (140, 'Human Resources (all)', 'O', 0, 2)           
60     (2600, 'Benefits Office', 'S', 1667, 140)             
61     (2700, 'Recruiting & Candidate Services', 'S', 1673, 140)             
62     (2800, 'Training and Development', 'S', 1672, 140)             
63     (2900, 'Work/Life Office', 'S', 1668, 140)             
64   (150, 'Lectures/Seminars (all)', 'O', 0, 2)
65     (3000, 'Lectures', 'K', 10, 150)       
66     (3100, 'Seminars', 'K', 16, 150)       
67   (160, 'Radio/TV (all)', 'O', 0, 2)
68     (3200, 'Radio', 'K', 13, 160)           
69     (3300, 'TV', 'K', 19, 160)               
70   (170, 'Sports', 'K', 18, 2)                     
71   (180, 'Other Events (all)', 'O', 0, 2)
72     (3400, 'Benefits', 'K', 1, 180)                 
73     (3500, 'Commencement', 'K', 2, 180)                 
74     (3600, 'Open Houses', 'K', 11, 180)               
75     (3700, 'Sales', 'K', 15, 180)               
76     (3800, 'Special Events', 'K', 17, 180)               
77     (3900, 'Tours', 'K', 20, 180)               
78     (4000, 'Training', 'K', 21, 180)               
79 (9990, 'UW TV', 'O', 0, 0)
80   (9991, 'Lectures/Seminars', 'a', 150, 9990)
81   (9992, 'Sports', 'a', 170, 9990)
82   (9993, 'Arts', 'a', 110, 9990)
Note: See TracBrowser for help on using the browser.