Index: openacs-4/etc/config.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/etc/config.tcl,v diff -u -r1.36 -r1.37 --- openacs-4/etc/config.tcl 4 Jun 2006 00:45:19 -0000 1.36 +++ openacs-4/etc/config.tcl 27 Jul 2006 00:42:51 -0000 1.37 @@ -10,7 +10,7 @@ #--------------------------------------------------------------------- # change to 80 and 443 for production use -set httpport 8000 +set httpport 9500 set httpsport 8443 # If setting port below 1024 with AOLServer 4, read comments in file: # /var/lib/aolserver/service0/packages/etc/daemontools/run @@ -19,14 +19,14 @@ # setting the address to 0.0.0.0 means aolserver listens on all interfaces set hostname [ns_info hostname] #set address [ns_info address] -set address 0.0.0.0 +set address 129.78.27.143 # Note: If port is privileged (usually < 1024), OpenACS must be # started by root, and, in AOLserver 4, the run script have a # '-b address' flag which matches the address according to settings (above) -set server "service0" -set servername "New OpenACS Installation - Development" +set server "stomp" +set servername "OpenACS Installation for Bug Stomp" set serverroot "/var/lib/aolserver/${server}" @@ -41,7 +41,7 @@ } else { set db_host localhost set db_port "" - set db_user $server + set db_user ncarroll } #--------------------------------------------------------------------- Index: openacs-4/etc/daemontools/run =================================================================== RCS file: /usr/local/cvsroot/openacs-4/etc/daemontools/run,v diff -u -r1.8 -r1.9 --- openacs-4/etc/daemontools/run 13 Aug 2005 22:14:17 -0000 1.8 +++ openacs-4/etc/daemontools/run 27 Jul 2006 00:42:52 -0000 1.9 @@ -9,7 +9,7 @@ # see http://openacs.org/forums/message-view?message_id=176100 sleep 4 -exec /usr/local/aolserver/bin/nsd-postgres -it /var/lib/aolserver/service0/etc/config.tcl -u service0 -g web +exec /usr/local/aolserver/bin/nsd-postgres -it /var/lib/aolserver/stomp/etc/config.tcl -u ncarroll -g web # For AOLserver 4 using privileged ports (usually < 1024), add the flag # -b youraddress:yourport to the nsd command Index: openacs-4/packages/acs-subsite/tcl/attribute-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/tcl/attribute-procs.tcl,v diff -u -r1.7 -r1.8 --- openacs-4/packages/acs-subsite/tcl/attribute-procs.tcl 12 Jul 2004 14:49:49 -0000 1.7 +++ openacs-4/packages/acs-subsite/tcl/attribute-procs.tcl 27 Jul 2006 00:42:52 -0000 1.8 @@ -536,7 +536,16 @@ { -object_type "acs_object" } { -variable_prefix "" } } { + Adds form elements to the specified form_id. Each form element + corresponds to an attribute belonging to the given object_type. + @param form_id ID of a form to add form elements to. + @param start_with Object type to start with. Defaults to acs_object. + @param object_type Object type to extract attributes for. + Defaults to acs_object. + @param variable_prefix Variable prefix. +} { + if {[empty_string_p $form_id]} { error "attribute::add_form_elements - form_id not specified" }