Index: openacs-4/contrib/obsolete-packages/acs-content/acs-content.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-content/acs-content.info,v diff -u -N -r1.3 -r1.3.2.1 --- openacs-4/contrib/obsolete-packages/acs-content/acs-content.info 9 May 2001 22:32:25 -0000 1.3 +++ openacs-4/contrib/obsolete-packages/acs-content/acs-content.info 16 May 2002 06:59:12 -0000 1.3.2.1 @@ -1,33 +1,33 @@ - + ACS Content acs-contents - t t + t - + oracle postgresql Khy Huang Alpha Release - 2001-03-06 - ArsDigita Corporation + 2002-05-15 + ArsDigita Corporation ACS content is a service for implementing side wide search. - + + - Index: openacs-4/contrib/obsolete-packages/acs-content/sql/upgrade/upgrade-4.1-4.1.1.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-content/sql/upgrade/Attic/upgrade-4.1-4.1.1.sql,v diff -u -N --- openacs-4/contrib/obsolete-packages/acs-content/sql/upgrade/upgrade-4.1-4.1.1.sql 13 Mar 2001 22:59:26 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,120 +0,0 @@ - ------------------------------------------------------------------------------- --- packages/acs-content/sql/upgrade/upgrade-4.1-4.1.1.sql --- --- @author teeters@arsdigita.com --- @creation-date 2000-03-06 --- @cvs-id $Id: upgrade-4.1-4.1.1.sql,v 1.1.1.1 2001/03/13 22:59:26 ben Exp $ --- - - --- upgrade script. Reload package acs_content. Function new changed to procedure. --- - - -create or replace package acs_content -as - procedure new ( - content_id in acs_contents.content_id%TYPE , - mime_type in acs_contents.mime_type%TYPE default 'text/plain', - nls_language in acs_contents.nls_language%TYPE default null, - searchable_p in acs_contents.searchable_p%TYPE default 'f', - content in acs_contents.content%TYPE default empty_blob() - ); - - procedure delete ( - content_id in acs_contents.content_id%TYPE - ); - - procedure update_nls_language ( - content_id in acs_contents.content_id%TYPE default null, - nls_language in acs_contents.nls_language%TYPE - ); - - procedure update_mime_type ( - content_id in acs_contents.content_id%TYPE default null, - mime_type in acs_contents.mime_type%TYPE - ); - - procedure update_searchable_p ( - content_id in acs_contents.content_id%TYPE default null, - searchable_p in acs_contents.searchable_p%TYPE - ); - -end acs_content; -/ - -create or replace package body acs_content -as - procedure new ( - content_id in acs_contents.content_id%TYPE, - mime_type in acs_contents.mime_type%TYPE default null, - nls_language in acs_contents.nls_language%TYPE default null, - searchable_p in acs_contents.searchable_p%TYPE default 't', - content in acs_contents.content%TYPE default empty_blob() - ) - is - v_content_id acs_contents.content_id%TYPE; - begin - insert into acs_contents ( - content_id, - mime_type, - nls_language, - searchable_p, - content - ) values ( - acs_content.new.content_id, - acs_content.new.mime_type, - acs_content.new.nls_language, - acs_content.new.searchable_p, - content - ); - end new; - - procedure delete ( - content_id in acs_contents.content_id%TYPE - ) - is - begin - delete from acs_contents - where content_id = acs_content.delete.content_id; - end delete; - - -- update language column - procedure update_nls_language ( - content_id in acs_contents.content_id%TYPE, - nls_language in acs_contents.nls_language%TYPE - ) - is - begin - update acs_contents - set nls_language = acs_content.update_nls_language.nls_language - where content_id = acs_content.update_nls_language.content_id; - end update_nls_language; - - -- update mime type column - procedure update_mime_type ( - content_id in acs_contents.content_id%TYPE, - mime_type in acs_contents.mime_type%TYPE - ) - is - begin - update acs_contents - set mime_type = acs_content.update_mime_type.mime_type - where content_id = acs_content.update_mime_type.content_id; - end update_mime_type; - - -- update searchable p column - procedure update_searchable_p ( - content_id in acs_contents.content_id%TYPE, - searchable_p in acs_contents.searchable_p%TYPE - ) - is - begin - update acs_contents - set searchable_p = acs_content.update_searchable_p.searchable_p - where content_id = acs_content.update_searchable_p.content_id; - end update_searchable_p; -end acs_content; -/ - Index: openacs-4/contrib/obsolete-packages/acs-util/acs-util.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-util/acs-util.info,v diff -u -N -r1.4 -r1.4.2.1 --- openacs-4/contrib/obsolete-packages/acs-util/acs-util.info 9 May 2001 22:32:25 -0000 1.4 +++ openacs-4/contrib/obsolete-packages/acs-util/acs-util.info 16 May 2002 06:59:12 -0000 1.4.2.1 @@ -1,23 +1,23 @@ - + ACS Utilities ACS Utility Services - t t + t - + oracle postgresql - ACS Team + ACS Team A set of utility functions that supplement the ACS Kernel. - 2000-11-09 - ArsDigita Corporation + 2002-05-15 + OpenACS - + Index: openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info,v diff -u -N -r1.13 -r1.13.2.1 --- openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info 12 Feb 2002 01:35:16 -0000 1.13 +++ openacs-4/contrib/obsolete-packages/acs-workflow/acs-workflow.info 16 May 2002 06:59:12 -0000 1.13.2.1 @@ -7,19 +7,19 @@ t t - + oracle postgresql - Lars Pind - Neophytos Demetriou Daniel Wickstrom + Neophytos Demetriou + Lars Pind Provides generic workflow management features to all ACS objects. - 2001-03-06 - ArsDigita Corporation + 2002-05-15 + OpenACS - + @@ -500,14 +500,14 @@ - - - - - - - + + + + + + + Index: openacs-4/packages/acs-admin/acs-admin.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/acs-admin.info,v diff -u -N -r1.12 -r1.12.2.1 --- openacs-4/packages/acs-admin/acs-admin.info 3 Oct 2001 23:35:49 -0000 1.12 +++ openacs-4/packages/acs-admin/acs-admin.info 16 May 2002 06:59:12 -0000 1.12.2.1 @@ -7,18 +7,18 @@ t t - + oracle postgresql Don Baccus Provides an interface for administering the OpenACS Community System Installation. - 2001-04-27 + 2002-05-15 OpenACS A UI for administering the OpenACS system. - + Index: openacs-4/packages/acs-api-browser/acs-api-browser.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-api-browser/acs-api-browser.info,v diff -u -N -r1.3.2.1 -r1.3.2.2 --- openacs-4/packages/acs-api-browser/acs-api-browser.info 3 May 2002 12:07:10 -0000 1.3.2.1 +++ openacs-4/packages/acs-api-browser/acs-api-browser.info 16 May 2002 06:59:12 -0000 1.3.2.2 @@ -1,20 +1,20 @@ - + ACS API Browser ACS API Browsers - t t + t - + oracle postgresql Dennis Gregorovic A browser for Tcl and SQL APIs. - 2001-03-06 + 2002-05-15 ArsDigita Corporation @@ -32,8 +32,12 @@ + + + + @@ -45,10 +49,10 @@ - - + + Index: openacs-4/packages/acs-bootstrap-installer/acs-bootstrap-installer.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/acs-bootstrap-installer.info,v diff -u -N -r1.6 -r1.6.2.1 --- openacs-4/packages/acs-bootstrap-installer/acs-bootstrap-installer.info 30 Aug 2001 21:40:14 -0000 1.6 +++ openacs-4/packages/acs-bootstrap-installer/acs-bootstrap-installer.info 16 May 2002 06:59:12 -0000 1.6.2.1 @@ -1,24 +1,25 @@ - + OpenACS Bootstrap Installer OpenACS Bootstrap Installers - t t + t - + oracle postgresql Don Baccus Bootstrap OpenACS and install the core packages. + 2002-05-15 OpenACS This package bootstraps OpenACS. If the core packages have not yet been installed, it calls the installer which leads the user through the steps necessary to do so. - + @@ -27,8 +28,13 @@ + + + + + @@ -40,11 +46,6 @@ - - - - - Index: openacs-4/packages/acs-content-repository/acs-content-repository.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/acs-content-repository.info,v diff -u -N -r1.15 -r1.15.2.1 --- openacs-4/packages/acs-content-repository/acs-content-repository.info 31 Oct 2001 20:42:07 -0000 1.15 +++ openacs-4/packages/acs-content-repository/acs-content-repository.info 16 May 2002 06:59:12 -0000 1.15.2.1 @@ -7,17 +7,18 @@ t t - + oracle postgresql - Karl Goldstein + Dan Wickstrom + Karl Goldstein A canonical repository for all OpenACS content. - 2001-03-07 + 2002-05-15 OpenACS - + @@ -79,11 +80,11 @@ - + Index: openacs-4/packages/acs-content-repository/sql/oracle/upgrade-4.0-4.0.1.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/sql/oracle/Attic/upgrade-4.0-4.0.1.sql,v diff -u -N --- openacs-4/packages/acs-content-repository/sql/oracle/upgrade-4.0-4.0.1.sql 24 Mar 2001 22:00:48 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,5 +0,0 @@ --- --- CR upgrade script. --- - -@@ packages-create.sql \ No newline at end of file Index: openacs-4/packages/acs-core-docs/acs-core-docs.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/acs-core-docs.info,v diff -u -N -r1.3 -r1.3.2.1 --- openacs-4/packages/acs-core-docs/acs-core-docs.info 9 May 2001 22:32:25 -0000 1.3 +++ openacs-4/packages/acs-core-docs/acs-core-docs.info 16 May 2002 06:59:12 -0000 1.3.2.1 @@ -1,50 +1,128 @@ - + ACS Core Documents ACS Core Documents - t t + t - + oracle postgresql - Richard Li + Vinod Kurup + Richard Li Documentation for the ACS Core. - 2001-03-06 - ArsDigita Corporation + 2002-05-15 + OpenACS - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -55,7 +133,6 @@ - @@ -66,28 +143,33 @@ - - + + + + + + - + + + - - - - + + + @@ -107,6 +189,7 @@ + Index: openacs-4/packages/acs-core-docs/www/index.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/index.adp,v diff -u -N -r1.3 -r1.3.2.1 --- openacs-4/packages/acs-core-docs/www/index.adp 2 Feb 2002 04:01:12 -0000 1.3 +++ openacs-4/packages/acs-core-docs/www/index.adp 16 May 2002 06:59:12 -0000 1.3.2.1 @@ -14,7 +14,7 @@ -

The OpenACS Community System

+

The Open Architecture Community System

@@ -28,7 +28,7 @@
For Everyone
-        - OpenACS 4.2 beta Release Notes
+        - OpenACS 4.5 Release Notes
         - Older Release Notes
 
 For OpenACS-admins
@@ -96,7 +96,7 @@
 
Please visit the OpenACS bboards -or shoot email at vinod@kurup.com or rmello@cc.usu.edu. +or shoot email at vinod@kurup.com or rmello at fslc.usu.edu.

Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/credits.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/credits.xml,v diff -u -N -r1.5.2.1 -r1.5.2.2 --- openacs-4/packages/acs-core-docs/www/xml/install-guide/credits.xml 15 May 2002 23:26:19 -0000 1.5.2.1 +++ openacs-4/packages/acs-core-docs/www/xml/install-guide/credits.xml 16 May 2002 06:59:12 -0000 1.5.2.2 @@ -46,7 +46,7 @@ Several people have helped with this document, including Torben Brosten, Don Baccus, Roberto Mello, Talli Somekh, Dave Bauer, Jim - Lynch, Jon Griffin and Daryl Biberdorf. + Lynch, Jon Griffin, Daryl Biberdorf, Jade Rubick, and Fred Yankowski. Index: openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml,v diff -u -N -r1.5.2.1 -r1.5.2.2 --- openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml 15 May 2002 23:26:19 -0000 1.5.2.1 +++ openacs-4/packages/acs-core-docs/www/xml/install-guide/os.xml 16 May 2002 06:59:12 -0000 1.5.2.2 @@ -104,9 +104,12 @@ - glib 2.1 (or greater) - You need recent versions of - these libraries for Oracle to work properly. + glibc 2.1 (or greater) + + You need recent versions of these libraries for Oracle to + work properly. If you want Unicode support, you'll need glibc + 2.2. + Index: openacs-4/packages/acs-kernel/acs-kernel.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/acs-kernel.info,v diff -u -N -r1.10 -r1.10.2.1 --- openacs-4/packages/acs-kernel/acs-kernel.info 9 Mar 2002 02:00:02 -0000 1.10 +++ openacs-4/packages/acs-kernel/acs-kernel.info 16 May 2002 06:59:12 -0000 1.10.2.1 @@ -7,13 +7,13 @@ t t - + oracle postgresql Routines and data models providing the foundation for OpenACS-based Web services. - 2001-03-06 + 2002-05-15 OpenACS @@ -22,6 +22,7 @@ + @@ -31,6 +32,8 @@ + + @@ -75,6 +78,7 @@ + @@ -84,6 +88,8 @@ + + @@ -120,51 +126,56 @@ + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: openacs-4/packages/acs-mail/acs-mail.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail/acs-mail.info,v diff -u -N -r1.7 -r1.7.2.1 --- openacs-4/packages/acs-mail/acs-mail.info 25 Oct 2001 23:49:20 -0000 1.7 +++ openacs-4/packages/acs-mail/acs-mail.info 16 May 2002 06:59:12 -0000 1.7.2.1 @@ -7,19 +7,19 @@ t t - + oracle postgresql - Vinod Kurup John Prevost + Vinod Kurup General messaging system, mark II - 2001-03-06 + 2002-05-15 OpenACS Provides generic message services, with email sending. - + Index: openacs-4/packages/acs-messaging/acs-messaging.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-messaging/acs-messaging.info,v diff -u -N -r1.5 -r1.5.2.1 --- openacs-4/packages/acs-messaging/acs-messaging.info 23 May 2001 18:35:33 -0000 1.5 +++ openacs-4/packages/acs-messaging/acs-messaging.info 16 May 2002 06:59:12 -0000 1.5.2.1 @@ -1,25 +1,26 @@ - + ACS Messaging ACS Messaging Services t t - + oracle postgresql - John Prevost - Anukul Kapoor + Anukul Kapoor + John Prevost + Vinod Kurup General messaging for bboard, general comments, etc. - 2001-02-13 - ArsDigita Corporation + 2002-05-15 + OpenACS Provides generic message services, with email sending. - + Index: openacs-4/packages/acs-service-contract/acs-service-contract.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-service-contract/acs-service-contract.info,v diff -u -N -r1.5 -r1.5.2.1 --- openacs-4/packages/acs-service-contract/acs-service-contract.info 12 Feb 2002 02:28:20 -0000 1.5 +++ openacs-4/packages/acs-service-contract/acs-service-contract.info 16 May 2002 06:59:12 -0000 1.5.2.1 @@ -7,15 +7,17 @@ t t - + oracle postgresql - Neophytos Demetriou Kapil Thangavelu + Neophytos Demetriou + 2002-05-15 + OpenACS - + Index: openacs-4/packages/acs-subsite/acs-subsite.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/acs-subsite.info,v diff -u -N -r1.24 -r1.24.2.1 --- openacs-4/packages/acs-subsite/acs-subsite.info 9 Feb 2002 02:33:35 -0000 1.24 +++ openacs-4/packages/acs-subsite/acs-subsite.info 16 May 2002 06:59:12 -0000 1.24.2.1 @@ -7,21 +7,21 @@ t f - + oracle postgresql - Michael Yoon - Rafael Schloming - Oumi Mehrotra - Michael Bryzek + Michael Bryzek + Oumi Mehrotra + Rafael Schloming + Michael Yoon Provides the ability to create subsite within the ArsDigita Community System. - 2001-03-06 - ArsDigita Corporation + 2002-05-15 + OpenACS Aware of parties, groups, users, portraits, ... - + @@ -576,13 +576,18 @@ + + + + + - + @@ -596,6 +601,7 @@ + @@ -625,30 +631,30 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + Index: openacs-4/packages/acs-tcl/acs-tcl.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/acs-tcl.info,v diff -u -N -r1.13 -r1.13.2.1 --- openacs-4/packages/acs-tcl/acs-tcl.info 23 Jan 2002 02:05:06 -0000 1.13 +++ openacs-4/packages/acs-tcl/acs-tcl.info 16 May 2002 06:59:12 -0000 1.13.2.1 @@ -7,17 +7,17 @@ t t - + oracle postgresql - ACS Core Team + ACS Core Team The Tcl library procedures that comprise the ACS Kernel. - 2001-03-06 - ArsDigita Corporation + 2002-05-15 + OpenACS - + Index: openacs-4/packages/acs-templating/acs-templating.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/acs-templating.info,v diff -u -N -r1.7 -r1.7.2.1 --- openacs-4/packages/acs-templating/acs-templating.info 9 Mar 2002 02:00:02 -0000 1.7 +++ openacs-4/packages/acs-templating/acs-templating.info 16 May 2002 06:59:12 -0000 1.7.2.1 @@ -7,21 +7,21 @@ t t - + oracle postgresql - Christian Brechb - Karl Goldstein + Karl Goldstein + Christian Brechb Separate page layout and implementation. - 2001-02-21 - ArsDigita Corporation - The template system provides mechanisms that allow developers and graphic designers to work independently. Templates specify the layout of the page seperately from the contents of the page. Graphic designers work primarily on the layout part of the template (the template), while programmers work primarily a script that generates the the content part of the template (the code). In addition, the -template system provides a way to use a single layout + 2002-05-15 + OpenACS + The template system provides mechanisms that allow developers and graphic designers to work independently. Templates specify the layout of the page seperately from the contents of the page. Graphic designers work primarily on the layout part of the template (the template), while programmers work primarily a script that generates the the content part of the template (the code). In addition, the +template system provides a way to use a single layout specification for many physical pages, so the overall layout of a site can be more easily administered. - + @@ -30,7 +30,12 @@ + + + + + @@ -324,9 +329,9 @@ - - + + Index: openacs-4/packages/page/page.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/page/page.info,v diff -u -N -r1.4.2.1 -r1.4.2.2 --- openacs-4/packages/page/page.info 9 Mar 2002 22:04:56 -0000 1.4.2.1 +++ openacs-4/packages/page/page.info 16 May 2002 06:59:12 -0000 1.4.2.2 @@ -7,14 +7,15 @@ t f - + oracle postgresql - Rafael Schloming + Rafael Schloming Creates a page. - ArsDigita Corporation + 2002-05-15 + OpenACS Index: openacs-4/packages/search/search.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/search/search.info,v diff -u -N -r1.3 -r1.3.2.1 --- openacs-4/packages/search/search.info 18 Oct 2001 21:06:09 -0000 1.3 +++ openacs-4/packages/search/search.info 16 May 2002 06:59:12 -0000 1.3.2.1 @@ -7,13 +7,15 @@ t f - + + oracle postgresql Neophytos Demetriou + 2002-05-15 - + @@ -29,6 +31,7 @@ + Index: openacs-4/packages/skin/skin.info =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/skin/skin.info,v diff -u -N -r1.4 -r1.4.2.1 --- openacs-4/packages/skin/skin.info 19 Nov 2001 19:34:23 -0000 1.4 +++ openacs-4/packages/skin/skin.info 16 May 2002 06:59:12 -0000 1.4.2.1 @@ -1,21 +1,21 @@ - + Skin Skins - t t + t - - - oracle - postgresql - - Christian Brechbuhler + + + oracle + postgresql + + Christian Brechbuhler Demonstration of skins or cobranding. - 2001-02-23 - ArsDigita Corporation + 2002-05-15 + OpenACS Show how the template system lets you give different looks to pages depending on the subsite under which they are mounted.