<%@language="VBScript"%>
<%Option Explicit%>
<%
'
'============================================================
'This page sets five important parameters:
' two for path and
' two for security
' IndentFlag
'------------------------------------------------------------
' for path:
'- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
' take schema from the same folder
' where file called from Web is located:
dim path_to_web_sml_engine
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 = ""
'empty value will trigger parsing query or response
'to find file_to_read
'------------------------------------------------------------
'
'------------------------------------------------------------
' for security
dim save_result_file
save_result_file = false
'"false" adds security;
'
dim proceed_result_file
proceed_result_file = true
'false adds security
'============================================================
'
'another controls are in included pages:
'QueryString("do") = "now", then execute result
'if no file, then:
'source = request.QueryString("source_text")
'or source = request.form("source_text")
'
'
%>
<%
' ***********************************************
' point to the components of sml-engine:
' sml-engine can be in different directory than
' this file;
%>
<!--#include file="../../custom.inc"-->
<!--#include file="lib/easylife.inc"-->
<!--#include file="globals.inc"-->
<!--#include file="lib/common.inc"-->
<!--#include file="funct.inc"-->
<!--#include file="cschema.inc"-->
<!--#include file="compile.inc"-->
<!--#include file="lib/ParseQuoted.inc"-->
<!--#include file="manage_core.inc"-->
<%
' ***********************************************
%>