-- -- packages/bboard-portlet/sql/bboard-portlets-create.sql -- -- Creates bboard datasources for portal portlets -- Copyright (C) 2001 ArsDigita Corporation -- @author Phong Nguyen (phong@arsdigita.com) -- @creation-date 2001-02-26 -- $Id: bboard-portlets-create.sql,v 1.3 2003/08/28 09:41:52 lars Exp $ -- This is free software distributed under the terms of the GNU Public -- License. Full text of the license is available from the GNU Project: -- http://www.fsf.org/copyleft/gpl.html declare ds_id portal_datasources.datasource_id%TYPE; begin ds_id := portal_datasource.new( data_type => 'raw', package_key => 'bboard', mime_type => 'application/x-ats', name => 'Summarize bboard applications', description => 'Summarizes the bboard topics for all instances of bboard mounted below the current node', content_varchar => '/packages/bboard-portlets/www/summarize', configurable_p => 'f' ); end; / show errors