BrowserWindow.vala
[app.webkitpdf] / BrowserWindow.vala
index af7b6c7..be34def 100644 (file)
@@ -52,6 +52,8 @@ public class BrowserWindow : Object
             var r =  new Regex ("\\.blogspot\\..*?/");
             blog = r.replace(blog, blog.length, 0, ".blogspot.com/ncr/");
           }
+         
+         
           
          if(webkitpdf.opt_cookies != null) {
             print("setting cookie %s\n",webkitpdf.opt_cookies);
@@ -64,28 +66,20 @@ public class BrowserWindow : Object
 #if GTK3               
                 var context = WebKit.WebContext.get_default();          
                 var cookie_manager = context.get_cookie_manager();
-                cookie_manager.set_accept_policy(WebKit.CookieAcceptPolicy.ALWAYS);
+                cookie_manager.set_accept_policy(WebKit.CookieAcceptPolicy.NEVER);
                 string scheme = uri.get_scheme ();
                 var ssl = "FALSE";
                 if (scheme=="https") {
                     ssl="TRUE";
                 }                
-                try {
-                         //FileIOStream iostream;
-                             //File file = File.new_tmp ("cookie.txt", out iostream);
-                             //printf ("cookie tmp file name: %s\n", file.get_path ());
-                                            //File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + "/cookie.txt" );
-                                            //print("setting cookie file%s\n",file.get_path());
-                                            
-                    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);        
+                    print("cookie tmp file name: %s\n", file.get_path ());
+                
                              OutputStream ostream = iostream.output_stream;
                              DataOutputStream dostream = new DataOutputStream (ostream);                                            
                                             
-                             //FileOutputStream ostream = file.replace (null, false, FileCreateFlags.NONE);
-                             //DataOutputStream dostream = new DataOutputStream (ostream);
-                             
                              dostream.put_string (uri.get_host() + "\tTRUE\t/\t"+ssl+"\t2147483647\t" + cookies[0] + "\t" + cookies[1] );                            
                              cookie_manager.set_persistent_storage(file.get_path(), WebKit.CookiePersistentStorage.TEXT);                            
                     } catch (Error e) {
@@ -94,7 +88,7 @@ public class BrowserWindow : Object
 #else
                 var sess = WebKit.get_default_session();
                 var cookie_jar = new Soup.CookieJar();                     
-                cookie_jar.set_accept_policy(Soup.CookieJarAcceptPolicy.ALWAYS);                                
+                cookie_jar.set_accept_policy(Soup.CookieJarAcceptPolicy.NEVER);                                 
                 cookie_jar.add_cookie(new Soup.Cookie (cookies[0], cookies[1], uri.get_host(), "/", -1));                          
                 sess.add_feature(cookie_jar);
 #endif                                                                     
@@ -121,6 +115,8 @@ public class BrowserWindow : Object
         
          });
                
+               
+
         
         });
     }