Index: openacs-4/packages/acs-content-repository/sql/oracle/packages-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/sql/oracle/packages-create.sql,v diff -u -r1.8 -r1.9 --- openacs-4/packages/acs-content-repository/sql/oracle/packages-create.sql 17 May 2003 09:42:02 -0000 1.8 +++ openacs-4/packages/acs-content-repository/sql/oracle/packages-create.sql 7 Jul 2003 12:25:53 -0000 1.9 @@ -1378,7 +1378,10 @@ -- @param name The name for the template, must be a valid UNIX-like filename. -- If a template with this name already exists under the specified -- parent item, an error is thrown + -- @param text The body of the .adp template itself, defaults to null -- @param parent_id The parent of this item, defaults to null + -- @param is_live The should the revision be set live, defaults to 't'. Requires + -- that text is not null or there will be no revision to begin with -- @param template_id The id of the new template. A new id will be allocated if this -- parameter is null -- @param creation_date As in acs_object.new @@ -1389,7 +1392,9 @@ -- {content_type.register_template} --*/ name in cr_items.name%TYPE, + text in varchar2 default null, parent_id in cr_items.parent_id%TYPE default null, + is_live in char default 't', template_id in cr_templates.template_id%TYPE default null, creation_date in acs_objects.creation_date%TYPE default sysdate,