• 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.4.2.2 2020/10/28 15:39:19 hectorr 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.4.2.2 2020/10/28 15:39:19 hectorr 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: