-- -- 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. -- -- -- The New Portal Package -- copyright 2001, OpenForce, Inc. -- distributed under the GNU GPL v2 -- -- Arjun Sanyal (arjun@openforce.net) -- $Id: add-sloan-theme.sql,v 1.1.2.1 2002/10/17 09:39:44 jeffd Exp $ -- -- Insert some default templates. create function inline_0() returns integer as ' begin perform portal_element_theme__new ( ''Sloan'', -- name ''MIT Sloan theme'', -- description ''themes/sloan-theme'', -- filename ''themes/sloan-theme'' -- directory ); return 0; end;' language 'plpgsql'; select inline_0(); drop function inline_0();