template-init.tcl
Does not contain a contract.
- Location:
- /packages/acs-templating/tcl/template-init.tcl
Related Files
[ hide source ] | [ make this the default ]
File Contents
# Initialization of ArsDigita Templating System as a Tcl-only module # Copyright (C) 1999-2000 ArsDigita Corporation # Author: Karl Goldstein (karlg@arsdigita.com) # $Id: template-init.tcl,v 1.6 2024/09/11 06:15:48 gustafn Exp $ # This is free software distributed under the terms of the GNU Public # License. Full text of the license is available from the GNU Project: # http://www.fsf.org/copyleft/gpl.html if { [parameter::get_from_package_key \ -package_key acs-templating \ -parameter ShowCompiledTemplatesP \ -default 0] } { ad_register_filter postauth GET *.cmp template::cmp_page_filter } if { [parameter::get_from_package_key \ -package_key acs-templating \ -parameter ShowDataDictionariesP \ -default 0] } { ad_register_filter postauth GET *.dat template::dat_page_filter ad_register_filter postauth GET *.frm template::frm_page_filter } # Local variables: # mode: tcl # tcl-indent-level: 4 # indent-tabs-mode: nil # End: