{= # # resolve_lang_var.cfv # # # # Called from util.js to get language variables when # the system is in developer mode which uses non-combined # javascript files. include "templates.util.base_util"; include "templates.util.encoding"; debug_message("\n#### resolve_language_variable.cfv \n"); # Set volatile.param1, etc. # __PARAM__1, __PARAM__2 and __PARAM__3 are used in javascript to be replaced by actual values volatile.param1 = "__PARAM__1"; volatile.param2 = "__PARAM__2"; volatile.param3 = "__PARAM__3"; string lang_var = command_line.pathname; string lang_var_value = expand(@(lang_var)); debug_message("#### lang_var: " . lang_var . "\n"); debug_message("#### lang_var_value: " . lang_var_value . "\n"); # Return lang_var_value; =}