aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Domurad <[email protected]>2012-08-17 11:06:52 -0400
committerAdam Domurad <[email protected]>2012-08-17 11:06:52 -0400
commit7f66cacee5b0705e336870779417a673c3874d73 (patch)
tree8ca642da9f93879c9841ceae7a19cd20a9925eb0
parente6dfb0a5fab464a93c7c38e3cb72cefc0c4e84ea (diff)
Forgot changelog yet again. Woops.
-rw-r--r--ChangeLog42
1 files changed, 42 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9245210..aeccf44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,45 @@
+2012-08-17 Adam Domurad <[email protected]>
+
+ Fixes PR588, cookies set in the java cookie jar are now stored properly
+ * plugin/icedteanp/IcedTeaNPPlugin.cc
+ (set_cookie_info): New, uses setvalueforurl
+ (consume_plugin_message): Additional message added allowing
+ set_cookie_info to be used from the java side.
+ * plugin/icedteanp/java/sun/applet/PluginCookieManager.java: Now
+ overrides put method, results in set_cookie_info calls in C++
+ * plugin/icedteanp/java/sun/applet/PluginMain.java: Passes
+ PluginStreamHandler to PluginCookieManager to allow C++ side
+ communication
+
+2012-08-17 Adam Domurad <[email protected]>
+
+ Reproducers for PR588, sets persistent and session cookies in the
+ cookie jar and tries to read them with various means.
+ * tests/reproducers/signed/SavingCookies/resources/CheckCookie.html:
+ Print the cookie store contents
+ * tests/reproducers/signed/SavingCookies/resources/CheckCookieAndGotoClear.html:
+ Print the cookie store contents, and then go to
+ ClearPersistentCookie.html with showDocument
+ * tests/reproducers/signed/SavingCookies/resources/ClearPersistentCookie.html:
+ Clear the test cookie so it does not interfere with further tests
+ * tests/reproducers/signed/SavingCookies/resources/SavePersistentCookie.html:
+ Create a persistent cookie
+ * tests/reproducers/signed/SavingCookies/resources/SavePersistentCookieAndGotoCheck.html:
+ Create a persistent cookie and check it with showDocument
+ * tests/reproducers/signed/SavingCookies/resources/SaveSessionCookie.html:
+ Create a session cookie
+ * tests/reproducers/signed/SavingCookies/resources/SaveSessionCookieAndGotoCheck.html:
+ Create a session cookie and check it with showDocument
+ * tests/reproducers/signed/SavingCookies/srcs/CheckingCookies.java:
+ Checks the contents of the cookie store.
+ Depending on the test, this may go to another page upon completion.
+ * tests/reproducers/signed/SavingCookies/srcs/SavingCookies.java:
+ Store cookies in the java cookie store. Depending on the test, this may
+ go to another page upon completion.
+ * tests/reproducers/signed/SavingCookies/testcases/SavingCookiesTests.java
+ Test driver for testing persistent and session cookies in different
+ ways
+
2012-08-18 Jiri Vanek <[email protected]>
* tests/test-extensions/net/sourceforge/jnlp/ServerAccess.java: added