Index: openacs-4/packages/xotcl-core/tcl/context-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xotcl-core/tcl/context-procs.tcl,v diff -u -r1.6 -r1.7 --- openacs-4/packages/xotcl-core/tcl/context-procs.tcl 13 Oct 2006 07:06:40 -0000 1.6 +++ openacs-4/packages/xotcl-core/tcl/context-procs.tcl 7 Jan 2007 21:33:55 -0000 1.7 @@ -295,9 +295,18 @@ my exists form_parameter($name) } + ConnectionContext instproc set_parameter {name value} { + my set perconnectionparam($name) $value + } + ConnectionContext instproc get_parameter {name {default ""}} { + my instvar perconnectionparam + return [expr {[info exists perconnectionparam($name)] ? $perconnectionparam($name) : $default}] + } + ConnectionContext instproc exists_parameter {name} { + my exists perconnectionparam($name) + } - # # Meta-Class for Application Package Classes #