<%Option Explicit%> <% ' '============================================================ 'This is a replacement of s\default.asp file for folder "m": 'More explanationas are in default.asp. 'This page sets four important parameters: ' two for path and ' two for security '------------------------------------------------------------ ' for path: '- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' take schema from the same folder ' where file called from Web is located: dim path_to_web_sml_engine 'relative to this page: path_to_web_sml_engine = "schema.txt" ' '- - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - ' take file_to_read - as the same file ' as requested from web dim file_to_read file_to_read = "" 'file_to_read = request.ServerVariables("PATH_INFO") 'file_to_read = mid(file_to_read,instrrev(file_to_read,"/")+1) '------------------------------------------------------------ ' '------------------------------------------------------------ ' for security dim save_result_file save_result_file = false '"false" adds security; ' dim proceed_result_file proceed_result_file = false 'false adds security '============================================================ %> <% ' *********************************************** ' point to the components of sml-engine: ' sml-engine can be in different directory than ' this file; %> <!--#include file="../../custom.inc"--> <!--#include file="../s/lib/easylife.inc"--> <!--#include file="../s/globals.inc"--> <!--#include file="../s/lib/common.inc"--> <!--#include file="../s/funct.inc"--> <!--#include file="../s/cschema.inc"--> <!--#include file="../s/compile.inc"--> <!--#include file="../s/lib/ParseQuoted.inc"--> <!--#include file="../s/manage_core.inc"--> <% ' *********************************************** %> <% response.end %>