Index: openacs-4/packages/new-portal/sql/oracle/defaults.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/new-portal/sql/oracle/defaults.sql,v diff -u -r1.15 -r1.16 --- openacs-4/packages/new-portal/sql/oracle/defaults.sql 19 Jan 2002 21:59:47 -0000 1.15 +++ openacs-4/packages/new-portal/sql/oracle/defaults.sql 21 Jan 2002 06:29:55 -0000 1.16 @@ -17,16 +17,7 @@ theme_id portal_element_themes.theme_id%TYPE; begin --- two-column layout, without a header. - layout_id := portal_layout.new ( - name => 'Simple 1-Column', - description => 'A simple 1-column layout', - filename => 'layouts/simple1', - resource_dir => 'layouts/components/simple1'); --- the supported regions for that layout. - portal_layout.add_region (layout_id => layout_id, region => '1'); - -- two-column layout, without a header. layout_id := portal_layout.new ( name => 'Simple 2-Column', @@ -38,6 +29,16 @@ portal_layout.add_region (layout_id => layout_id, region => '1'); portal_layout.add_region (layout_id => layout_id, region => '2'); +-- one-column layout, without a header. + layout_id := portal_layout.new ( + name => 'Simple 1-Column', + description => 'A simple 1-column layout', + filename => 'layouts/simple1', + resource_dir => 'layouts/components/simple1'); + +-- the supported regions for that layout. + portal_layout.add_region (layout_id => layout_id, region => '1'); + -- same as above, only, three columns. layout_id := portal_layout.new ( name => 'Simple 3-Column',