Index: openacs-4/contrib/packages/portal/sql/postgresql/defaults.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/sql/postgresql/Attic/defaults.sql,v diff -u -r1.1 -r1.2 --- openacs-4/contrib/packages/portal/sql/postgresql/defaults.sql 25 Oct 2002 21:29:17 -0000 1.1 +++ openacs-4/contrib/packages/portal/sql/postgresql/defaults.sql 25 Sep 2003 02:12:16 -0000 1.2 @@ -32,21 +32,33 @@ -- one-column layout, without a header. layout_id := portal_layout__new( - ''1_column'', - ''A simple 1-column layout'', - ''layouts/simple1'', - ''layouts/components/simple1'' + null, -- layout_id + ''1_column'', -- name + ''A simple 1-column layout'', -- description + ''layouts/simple1'', -- filename + ''layouts/components/simple1'', -- resource_dir + null, -- object_type + null, -- creation_date + null, -- creation_user + null, -- creation_ip + null -- context_id ); -- the supported regions for that layout. perform portal_layout__add_region(layout_id, ''1''); -- two-column layout, without a header. layout_id := portal_layout__new( - ''2_column'', - ''A simple 2-column layout'', - ''layouts/simple2'', - ''layouts/components/simple2'' + null, -- layout_id + ''2_column'', -- name + ''A simple 2-column layout'', -- description + ''layouts/simple2'', -- filename + ''layouts/components/simple2'', -- resource_dir + null, -- object_type + null, -- creation_date + null, -- creation_user + null, -- creation_ip + null -- context_id ); -- the supported regions for that layout. @@ -55,10 +67,16 @@ -- same as above, only, three columns. layout_id := portal_layout__new( - ''3_column'', - ''A simple 3-column layout'', - ''layouts/simple3'', - ''layouts/components/simple3'' + null, -- layout_id + ''3_column'', -- name + ''A simple 3-column layout'', -- description + ''layouts/simple3'', -- filename + ''layouts/components/simple3'', -- resource_dir + null, -- object_type + null, -- creation_date + null, -- creation_user + null, -- creation_ip + null -- context_id ); perform portal_layout__add_region(layout_id, ''1'');