[xiph-commits] r15088 - trunk/oggPusher/firefox-extension/chrome/content

nithin at svn.xiph.org nithin at svn.xiph.org
Sun Jun 29 04:39:27 PDT 2008


Author: nithin
Date: 2008-06-29 04:39:27 -0700 (Sun, 29 Jun 2008)
New Revision: 15088

Modified:
   trunk/oggPusher/firefox-extension/chrome/content/op_Window.js
Log:
removing the debugging alerts

Modified: trunk/oggPusher/firefox-extension/chrome/content/op_Window.js
===================================================================
--- trunk/oggPusher/firefox-extension/chrome/content/op_Window.js	2008-06-29 11:31:13 UTC (rev 15087)
+++ trunk/oggPusher/firefox-extension/chrome/content/op_Window.js	2008-06-29 11:39:27 UTC (rev 15088)
@@ -16,7 +16,7 @@
                 if (rv == nsIFilePicker.returnOK || rv == nsIFilePicker.returnReplace) {
                 	var file = fp.file;
          		var path = fp.file.path;
-			alert(fp.file.leafName);
+			//alert(fp.file.leafName);
 			this.leafName = fp.file.leafName;
 			parent.document.getElementById("file-path").value = path;
                 }
@@ -67,14 +67,14 @@
 		+ boundary;
 		
 		
-		alert(requestbody);
+		//alert(requestbody);
 
 	        xhr.onreadystatechange = function() { if(this.readyState == 4) {alert(this.responseText)}}
 		xhr.open("POST", "http://www.it.iitb.ac.in/~nithind/post.php", true);
 		xhr.setRequestHeader("Content-Type", "multipart/form-data; boundary=\""+ boundaryString + "\"");
 		xhr.setRequestHeader("Connection", "close");
 		xhr.setRequestHeader("Content-length", requestbody.length);
-		alert(requestbody.length);
+		//alert(requestbody.length);
 		xhr.send(requestbody);
 		
 



More information about the commits mailing list