-- -- Copyright (C) 2001, 2002 OpenForce, Inc. -- -- This file is part of dotLRN. -- -- dotLRN is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) any later -- version. -- -- dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -- details. -- -- -- Initialize the dotLRN Externals package -- -- @author yon@openforce.net -- @version $Id: externals-init.sql,v 1.2 2002/07/26 14:53:51 yon Exp $ -- create function inline_1() returns integer as ' declare foo integer; gid integer; sid integer; dotlrn_users_group_id integer; begin PERFORM acs_rel_type__create_type( ''dotlrn_external_profile_rel'', ''dotLRN Profile External'', ''dotLRN External Externals'', ''dotlrn_user_profile_rel'', ''dotlrn_external_profile_rels'', ''rel_id'', ''dotlrn_external_profile_rel'', ''profiled_group'', null, 0, null, ''user'', null, 0, 1 ); select min(impl_id) into foo from acs_sc_impls where impl_name = ''dotlrn_external_profile_provider''; gid := profiled_group__new( foo, ''dotLRN Externals'' ); sid := rel_segment__new( ''dotLRN Externals'', gid, ''dotlrn_external_profile_rel'' ); insert into dotlrn_user_types (type, pretty_name, rel_type, group_id, segment_id) values (''external'', ''Externals'', ''dotlrn_external_profile_rel'', gid, sid); select group_id into dotlrn_users_group_id from groups where group_name = ''dotLRN Users''; foo := composition_rel__new( dotlrn_users_group_id, gid ); return 0; end; ' language 'plpgsql'; select inline_1(); drop function inline_1();