Fisheye: Tag 1.1.2.3 refers to a dead (removed) revision in file `openacs-4/packages/new-portal/sql/oracle/add-sloan-theme.sql'. Fisheye: No comparison available. Pass `N' to diff? 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.20 -r1.20.2.1 --- openacs-4/packages/new-portal/sql/oracle/defaults.sql 9 Aug 2002 20:56:27 -0000 1.20 +++ openacs-4/packages/new-portal/sql/oracle/defaults.sql 13 Mar 2003 02:27:13 -0000 1.20.2.1 @@ -86,6 +86,12 @@ resource_dir => 'themes/deco-theme' ); + theme_id := portal_element_theme.new ( + name => 'Sloan', + description => 'MIT Sloan theme', + filename => 'themes/sloan-theme', + resource_dir => 'themes/sloan-theme'); + end; / show errors Fisheye: Tag 1.1.2.3 refers to a dead (removed) revision in file `openacs-4/packages/new-portal/sql/postgresql/add-sloan-theme.sql'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/new-portal/sql/postgresql/defaults.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/new-portal/sql/postgresql/defaults.sql,v diff -u -r1.4 -r1.4.2.1 --- openacs-4/packages/new-portal/sql/postgresql/defaults.sql 9 Aug 2002 20:56:28 -0000 1.4 +++ openacs-4/packages/new-portal/sql/postgresql/defaults.sql 13 Mar 2003 02:27:13 -0000 1.4.2.1 @@ -25,7 +25,6 @@ returns integer as ' declare layout_id portal_layouts.layout_id%TYPE; - theme_id portal_element_themes.theme_id%TYPE; begin -- two-column layout, without a header. @@ -64,27 +63,34 @@ perform portal_layout__add_region(layout_id, ''3''); -- Now, some element themes. - theme_id := portal_element_theme__new( + perform portal_element_theme__new( ''simple'', ''A simple red table-based theme'', ''themes/simple-theme'', ''themes/simple-theme'' ); - theme_id := portal_element_theme__new( + perform portal_element_theme__new( ''nada'', ''The un-theme. No graphics.'', ''themes/nada-theme'', ''themes/nada-theme'' ); - theme_id := portal_element_theme__new( + perform portal_element_theme__new( ''deco'', ''An Art Deco theme'', ''themes/deco-theme'', ''themes/deco-theme'' ); + perform portal_element_theme__new ( + ''Sloan'', -- name + ''MIT Sloan theme'', -- description + ''themes/sloan-theme'', -- filename + ''themes/sloan-theme'' -- directory + ); + return 0; end;' language 'plpgsql';