- Publicity: Public Only All
10-charset-compat-procs.tcl
Compatibility procs in case we're not running a version of AOLServer that supports charsets.
- Location:
- packages/acs-tcl/tcl/10-charset-compat-procs.tcl
- Created:
- June 28, 2000
- Authors:
- Rob Mayoff [mayoff@arsdigita.com]
- Nada Amin [namin@arsdigita.com]
- CVS Identification:
$Id: 10-charset-compat-procs.tcl,v 1.6 2024/09/11 06:15:48 gustafn Exp $
Procedures in this file
Detailed information
[ hide source ] | [ make this the default ]Content File Source
ad_library { Compatibility procs in case we're not running a version of AOLServer that supports charsets. @author Rob Mayoff [mayoff@arsdigita.com] @author Nada Amin [namin@arsdigita.com] @creation-date June 28, 2000 @cvs-id $Id: 10-charset-compat-procs.tcl,v 1.6 2024/09/11 06:15:48 gustafn Exp $ } # # Define dummy stubs in case the required commands are not available. # foreach one_proc {ns_startcontent ns_encodingfortype} { if {[namespace which $one_proc] eq ""} { proc $one_proc {args} { } } } # Local variables: # mode: tcl # tcl-indent-level: 4 # indent-tabs-mode: nil # End: