Index: openacs-4/packages/edit-this-page/sql/postgresql/edit-this-page-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/edit-this-page/sql/postgresql/edit-this-page-create.sql,v diff -u -N -r1.11 -r1.12 --- openacs-4/packages/edit-this-page/sql/postgresql/edit-this-page-create.sql 15 Apr 2003 12:02:28 -0000 1.11 +++ openacs-4/packages/edit-this-page/sql/postgresql/edit-this-page-create.sql 17 May 2003 10:31:27 -0000 1.12 @@ -378,50 +378,6 @@ --- add the ETP parameters to the acs-subsite package so that --- we can serve the site's home page and top level pages. - --- DRB: This page was setting the parameter default values explicitly. apm__register_parameter --- is supposed to do this - there was a mistake in the Oracle->PostgreSQL port of this function. --- I fixed the bug and removed the code that was here ... - -create function inline_0 () -returns integer as ' -declare - ss_package_id integer; - cur_val record; -begin - perform apm__register_parameter( - NULL, - ''acs-subsite'', - ''application'', - ''Name of the ETP application to use (default, faq, wiki, or create your own with the etp::define_applicaton procedure)'', - ''string'', - ''default'', - ''EditThisPage'', - 1, - 1 - ); - perform apm__register_parameter( - NULL, - ''acs-subsite'', - ''subtopic_application'', - ''Name of the ETP application to use when creating a subtopic'', - ''string'', - ''default'', - ''EditThisPage'', - 1, - 1 - ); - - return 0; -end; -' language 'plpgsql'; - -select inline_0 (); -drop function inline_0 (); - - -- create a folder with magic folder_id of -400 where we -- will put all deleted content items so they'll be recoverable.