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

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.provide("dojo.xml.Parse");
  9. dojo.require("dojo.dom");
  10. dojo.xml.Parse = function () {
  11. var isIE = ((dojo.render.html.capable) && (dojo.render.html.ie));
  12. function getTagName(node) {
  13. try {
  14. return node.tagName.toLowerCase();
  15. }
  16. catch (e) {
  17. return "";
  18. }
  19. }
  20. function getDojoTagName(node) {
  21. var tagName = getTagName(node);
  22. if (!tagName) {
  23. return "";
  24. }
  25. if ((dojo.widget) && (dojo.widget.tags[tagName])) {
  26. return tagName;
  27. }
  28. var p = tagName.indexOf(":");
  29. if (p >= 0) {
  30. return tagName;
  31. }
  32. if (tagName.substr(0, 5) == "dojo:") {
  33. return tagName;
  34. }
  35. if (dojo.render.html.capable && dojo.render.html.ie && node.scopeName != "HTML") {
  36. return node.scopeName.toLowerCase() + ":" + tagName;
  37. }
  38. if (tagName.substr(0, 4) == "dojo") {
  39. return "dojo:" + tagName.substring(4);
  40. }
  41. var djt = node.getAttribute("dojoType") || node.getAttribute("dojotype");
  42. if (djt) {
  43. if (djt.indexOf(":") < 0) {
  44. djt = "dojo:" + djt;
  45. }
  46. return djt.toLowerCase();
  47. }
  48. djt = node.getAttributeNS && node.getAttributeNS(dojo.dom.dojoml, "type");
  49. if (djt) {
  50. return "dojo:" + djt.toLowerCase();
  51. }
  52. try {
  53. djt = node.getAttribute("dojo:type");
  54. }
  55. catch (e) {
  56. }
  57. if (djt) {
  58. return "dojo:" + djt.toLowerCase();
  59. }
  60. if ((dj_global["djConfig"]) && (!djConfig["ignoreClassNames"])) {
  61. var classes = node.className || node.getAttribute("class");
  62. if ((classes) && (classes.indexOf) && (classes.indexOf("dojo-") != -1)) {
  63. var aclasses = classes.split(" ");
  64. for (var x = 0, c = aclasses.length; x < c; x++) {
  65. if (aclasses[x].slice(0, 5) == "dojo-") {
  66. return "dojo:" + aclasses[x].substr(5).toLowerCase();
  67. }
  68. }
  69. }
  70. }
  71. return "";
  72. }
  73. this.parseElement = function (node, hasParentNodeSet, optimizeForDojoML, thisIdx) {
  74. var tagName = getTagName(node);
  75. if (isIE && tagName.indexOf("/") == 0) {
  76. return null;
  77. }
  78. try {
  79. var attr = node.getAttribute("parseWidgets");
  80. if (attr && attr.toLowerCase() == "false") {
  81. return {};
  82. }
  83. }
  84. catch (e) {
  85. }
  86. var process = true;
  87. if (optimizeForDojoML) {
  88. var dojoTagName = getDojoTagName(node);
  89. tagName = dojoTagName || tagName;
  90. process = Boolean(dojoTagName);
  91. }
  92. var parsedNodeSet = {};
  93. parsedNodeSet[tagName] = [];
  94. var pos = tagName.indexOf(":");
  95. if (pos > 0) {
  96. var ns = tagName.substring(0, pos);
  97. parsedNodeSet["ns"] = ns;
  98. if ((dojo.ns) && (!dojo.ns.allow(ns))) {
  99. process = false;
  100. }
  101. }
  102. if (process) {
  103. var attributeSet = this.parseAttributes(node);
  104. for (var attr in attributeSet) {
  105. if ((!parsedNodeSet[tagName][attr]) || (typeof parsedNodeSet[tagName][attr] != "array")) {
  106. parsedNodeSet[tagName][attr] = [];
  107. }
  108. parsedNodeSet[tagName][attr].push(attributeSet[attr]);
  109. }
  110. parsedNodeSet[tagName].nodeRef = node;
  111. parsedNodeSet.tagName = tagName;
  112. parsedNodeSet.index = thisIdx || 0;
  113. }
  114. var count = 0;
  115. for (var i = 0; i < node.childNodes.length; i++) {
  116. var tcn = node.childNodes.item(i);
  117. switch (tcn.nodeType) {
  118.   case dojo.dom.ELEMENT_NODE:
  119. var ctn = getDojoTagName(tcn) || getTagName(tcn);
  120. if (!parsedNodeSet[ctn]) {
  121. parsedNodeSet[ctn] = [];
  122. }
  123. parsedNodeSet[ctn].push(this.parseElement(tcn, true, optimizeForDojoML, count));
  124. if ((tcn.childNodes.length == 1) && (tcn.childNodes.item(0).nodeType == dojo.dom.TEXT_NODE)) {
  125. parsedNodeSet[ctn][parsedNodeSet[ctn].length - 1].value = tcn.childNodes.item(0).nodeValue;
  126. }
  127. count++;
  128. break;
  129.   case dojo.dom.TEXT_NODE:
  130. if (node.childNodes.length == 1) {
  131. parsedNodeSet[tagName].push({value:node.childNodes.item(0).nodeValue});
  132. }
  133. break;
  134.   default:
  135. break;
  136. }
  137. }
  138. return parsedNodeSet;
  139. };
  140. this.parseAttributes = function (node) {
  141. var parsedAttributeSet = {};
  142. var atts = node.attributes;
  143. var attnode, i = 0;
  144. while ((attnode = atts[i++])) {
  145. if (isIE) {
  146. if (!attnode) {
  147. continue;
  148. }
  149. if ((typeof attnode == "object") && (typeof attnode.nodeValue == "undefined") || (attnode.nodeValue == null) || (attnode.nodeValue == "")) {
  150. continue;
  151. }
  152. }
  153. var nn = attnode.nodeName.split(":");
  154. nn = (nn.length == 2) ? nn[1] : attnode.nodeName;
  155. parsedAttributeSet[nn] = {value:attnode.nodeValue};
  156. }
  157. return parsedAttributeSet;
  158. };
  159. };