janines
committed
on 10 Nov 03
cleaned up files: updated require sections, removed references to arsdigita and openforce, and replaced out-of-date owner info. Most of th… Show more
cleaned up files:  updated require sections, removed references to arsdigita and openforce, and replaced out-of-date owner info.  Most of these edits were done by hand due to bug 1106; I tried to do the same things the APM would do (remove file sections, etc) and updating the release date to today

Show less

/upgrade/upgrade-0.22d3-0.22d4.sql (+1 -1)
96 96 --      as_item_type_id         integer
97 97 --                              constraint as_item_type_fu_type_id_pk
98 98 --                              primary key
99 99 --                              constraint as_item_type_fu_type_id_fk
100 100 --                              references cr_revisions(revision_id)
101 101 --                 on delete cascade
102 102 -- );
103 103
104 104 -- -- File Upload Display Type
105 105 -- create table as_item_display_f (
106 106 --      as_item_display_id      integer
107 107 --                              constraint as_item_display_f_displ_id_pk
108 108 --                              primary key
109 109 --                              constraint as_item_display_f_displ_id_fk
110 110 --                              references cr_revisions(revision_id)
111 111 --                 on delete cascade,
112 112 --      -- field to specify other stuff like textarea dimensions
113 113 --      html_display_options    varchar(50),
114 114 --      -- an abstraction of the real size value in "small","medium","large"
115 115 --      abs_size                varchar(10),
116   --      -- the orientation between the "question part" of the Item (the title/subtext) and the "answer part" (beside-left, beside-right, bellow, above)
  116 --      -- the orientation between the "question part" of the Item (the title/subtext) and the "answer part" (beside-left, beside-right, below, above)
117 117 --      item_answer_alignment   varchar(20)
118 118 -- );
119 119
120 120 -- alter table as_item_data add file_id integer
121 121 --              constraint as_item_data_file_id_fk
122 122 --              references cr_revisions(revision_id)
123 123 --                 on delete cascade;
124 124
125 125 -- insert into as_item_types_map (item_type, display_type)
126 126 -- values ('fu', 'f');
127 127
128 128
129 129 create or replace package as_action
130 130 as
131 131         function new (
132 132         action_id       in acs_objects.object_id%TYPE default null,
133 133         name            in as_actions.name%TYPE,
134 134         description     in as_actions.description%TYPE,
135 135         tcl_code        in as_actions.tcl_code%TYPE,
136 136         context_id      in acs_objects.context_id%TYPE,