[Sie-announce] SIEコード [2247]

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2010年 12月 25日 (土) 20:45:20 JST


Revision: 2247
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2247
Author:   dhrname
Date:     2010-12-25 20:45:20 +0900 (Sat, 25 Dec 2010)

Log Message:
-----------


Modified Paths:
--------------
    branches/06x/sie.js

Modified: branches/06x/sie.js
===================================================================
--- branches/06x/sie.js	2010-12-25 11:45:06 UTC (rev 2246)
+++ branches/06x/sie.js	2010-12-25 11:45:20 UTC (rev 2247)
@@ -3336,7 +3336,7 @@
             xmlhttp.onreadystatechange = function() {
               if (xmlhttp.readyState === 4  &&  xmlhttp.status === 200) {
                 var type = xmlhttp.getResponseHeader('Content-Type') || "text";
-                if (/[text|xml|script]/.test(type)) { //ファイルがtext形式である場合
+                if ((type.indexOf("text") > -1) || (type.indexOf("xml") > -1) || (type.indexOf("script") > -1)) { //ファイルがtext形式である場合
                   /*responseXMLを使うと、時々、空のデータを返すことがあるため(原因は不明)、
                    *ここでは、responseTextを用いる
                    */
@@ -3904,6 +3904,7 @@
       /*responseXMLを使うと、時々、空のデータを返すことがあるため(原因は不明)、
        *ここでは、responseTextを用いる
        */
+      var dsd = new Date();
       str = this.xmlhttp.responseText;
       NAIBU.doc.async = false;
       /*下記のプロパティについては、Microsoftのサイトを参照
@@ -4044,6 +4045,7 @@
       s = evt = null;
       /*IEのメモリリーク対策として、空関数を入力*/
       this.xmlhttp.onreadystatechange = NAIBU.emptyFunction;
+      alert(+(new Date()) - dsd.getTime())
       if (this._next) {
         this._next._init();
       } else {




Sie-announce メーリングリストの案内
Back to archive index