hostenv_wsh.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.hostenv.name_ = "wsh";
  9. if (typeof WScript == "undefined") {
  10. dojo.raise("attempt to use WSH host environment when no WScript global");
  11. }
  12. dojo.hostenv.println = WScript.Echo;
  13. dojo.hostenv.getCurrentScriptUri = function () {
  14. return WScript.ScriptFullName();
  15. };
  16. dojo.hostenv.getText = function (fpath) {
  17. var fso = new ActiveXObject("Scripting.FileSystemObject");
  18. var istream = fso.OpenTextFile(fpath, 1);
  19. if (!istream) {
  20. return null;
  21. }
  22. var contents = istream.ReadAll();
  23. istream.Close();
  24. return contents;
  25. };
  26. dojo.hostenv.exit = function (exitcode) {
  27. WScript.Quit(exitcode);
  28. };
  29. dojo.requireIf((djConfig["isDebug"] || djConfig["debugAtAllCosts"]), "dojo.debug");