forked from envjs/env-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incorporated filesystem path fixes for Windows file paths (as in
pull request envjs#23, 031b304/b645a70 from moschel. Added Windows batch files to run envjs using either Rhino or the Rhino debugger. Fixed an issue in xhr.js Envjs.localXHR when running under Rhino, url parameter was tested for pattern match to determine Content-Type, but fails under Rhino since the url parameter passed is a Java object, not a string.
- Loading branch information
Showing
4 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java -cp rhino/js.jar org.mozilla.javascript.tools.debugger.Main envjs/rhino.js %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java -Xmx512M -jar rhino/js.jar -opt -1 envjs/rhino.js %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters