Index: openacs-4/contrib/obsolete-packages/bboard-portlets/sql/oracle/bboard-portlets-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/bboard-portlets/sql/oracle/bboard-portlets-create.sql,v diff -u -N --- openacs-4/contrib/obsolete-packages/bboard-portlets/sql/oracle/bboard-portlets-create.sql 28 Jul 2001 23:58:07 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,31 +0,0 @@ --- --- 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.1 2001/07/28 23:58:07 donb 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