I want to have something like C's #include
directive or Python's import()
function. I would appreciate it if you consider that this is not a Javascript, VBScript, nor a JScript.Net question. I want the functionality in the JScript .js
files run by cscript.exe
/wscript.exe
. Not the JScript/JavaScript in HTA's run by mshta.exe
. The closest thing I could find so far is from here:
function Include(jsFile) {
var fso, f, s;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.OpenTextFile(jsFile);
s = f.ReadAll();
f.Close();
return(s);
}
that requires the user to invoke eval(Include("File.js"))
which is not desirable for me. I prefer a solution where I can have a clean include()
function. Here are what I have found so far:
- If JScript had a function similar to VBScript's
ExecuteGlobal
, then the problem would be easily solved. Sadly JScript only has theeval()
function that executes the input string in the local scope. I triedreturn eval(<commands>)
in the above function to no avail. - If it was possible to include XSLT in WSH's
.wsf
/.wsc
files, then one could potentially define theinclude()
function on XML level something like (sorry, I don't know XML/XSLT, and this is just pseudocode)
<xsl:function name="JS:include">
<xsl:param name="fileName"/>
<script language="JScript" src="fileName"/>
</xsl:function>
- if the WSH's XML elements had a
.appendChild()
method, like HTA's HTML.hta
files do, then we could do something like (reference):
function include(inputFile){
var head = document.head;
var script = document.createElement('script');
script.language = 'JScript';
script.src = inputFile
head.appendChild(script);
}
None of the options above seem to be available. I would appreciate it if you could help me know if/how I can implement a clean include()
function in the classic JScript. Thanks for your support in advance.
If I'm understanding what you're trying to do is to call an XSL extension function, that is written in JavaScript. Here's an example .wsf that takes as an input an xml file, and an xsl file, and outputs the transformed result.
It illustrates how to call a javascript extension function. For this example the javascript extension function is a "objDate" object that converts an Epoch date, into a formatted string.
Hope this helps, otherwise I've wasted my evening trying to help you out!
Sorry this is long, but there's no other way :)
Here's what's included...
complete .WSF file (save to t.wsf) sample XML (save to t.xml) sample XSL (save to t.xsl) the output.
To run the example, make sure you have MSXML installed then run
Sample t.wsf file
Next a sample XML, with an Epoch @dt in each row.
Then the XSL that calls the javascript extension object "dt". Note that you have to declare the namespace at the top of the XSL.
Finally the result, note the formatted dates, from the Epoch Dates.