ad_ns_set_to_tcl_vars (public, deprecated)
ad_ns_set_to_tcl_vars [ -duplicates duplicates ] [ -level level ] \ set_id
Defined in packages/acs-tcl/tcl/utilities-procs.tcl
Deprecated. Invoking this procedure generates a warning.
Takes an ns_set and sets variables in the caller's environment correspondingly, i.e. if key is foo and value is bar, the Tcl var foo is set to bar. DEPRECATED: the few remaining usages of this API in upstream code were found to be easily replaceable with much saner and clearer idioms.
- Switches:
- -duplicates (optional, defaults to
"overwrite"
)- This argument defines what happens when the Tcl variable already exists, or if there are duplicate entries for the same key.
overwrites
just overwrites the var, which amounts to letting the ns_set win over pre-defined vars, and later entries in the ns_set win over earlier ones.ignore
means the variable isn't overwritten.fail
will make this proc fail with an error. This makes it easier to track subtle errors that could occur because of unpredicted name clashes.- -level (optional, defaults to
"1"
)- The level to upvar to.
- Parameters:
- set_id (required)
- Author:
- Lars Pind <lars@pinds.com>
- See Also:
- upvar
- for
- ns_set
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.