BrowserWindow.vala
[app.webkitpdf] / BrowserWindow.vala
index a02c6cf..e3485bf 100644 (file)
@@ -52,14 +52,8 @@ public class BrowserWindow : Object
             var r =  new Regex ("\\.blogspot\\..*?/");
             blog = r.replace(blog, blog.length, 0, ".blogspot.com/ncr/");
           }
-
-         var iostream = new GIO.FileIOStream() ;
-                                             
-         var file = File.new_tmp ("cookie-XXXXXX.txt", out iostream);
-         
-         print("cookie tmp file name: %s\n", file.get_path ());
          
-         var ostream = iostream.output_stream;
+         var filename="";
           
          if(webkitpdf.opt_cookies != null) {
             print("setting cookie %s\n",webkitpdf.opt_cookies);
@@ -78,11 +72,13 @@ public class BrowserWindow : Object
                 if (scheme=="https") {
                     ssl="TRUE";
                 }                
-                try {
-                             
-                    //File file = File.new_tmp ("cookie-XXXXXX.txt", out iostream);
-                             //print("cookie tmp file name: %s\n", file.get_path ());
-                            
+                try {            
+                    FileIOStream iostream;                           
+                    File file = File.new_tmp ("cookie-XXXXXX.txt", out iostream);
+                    filename = file.get_path ();        
+                    print("cookie tmp file name: %s\n", file.get_path ());
+                
+                             OutputStream ostream = iostream.output_stream;
                              DataOutputStream dostream = new DataOutputStream (ostream);                                            
                                             
                              dostream.put_string (uri.get_host() + "\tTRUE\t/\t"+ssl+"\t2147483647\t" + cookies[0] + "\t" + cookies[1] );                            
@@ -120,6 +116,13 @@ public class BrowserWindow : Object
         
          });
                
+               try {
+                        print("deleting cookie tmp file name: %s\n", file.get_path ());
+                  
+             } catch (Error e) {
+                      stdout.printf ("Error: %s\n", e.message);
+             }
+
         
         });
     }