/hg/release/icedtea-web-1.6: Updated NEWS, added javadoc fo secu...
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Mon Jun 15 09:21:29 UTC 2015
changeset bf754026fe6b in /hg/release/icedtea-web-1.6
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.6?cmd=changeset;node=bf754026fe6b
author: Jiri Vanek <jvanek at redhat.com>
date: Mon Jun 15 10:56:00 2015 +0200
Updated NEWS, added javadoc fo security package
* NEWS: mentioned major work in last month and half
* netx/net/sourceforge/jnlp/security/package-info.java: new file, describing flow of SecurityDialogMessage
diffstat:
ChangeLog | 7 +
NEWS | 9 ++
netx/net/sourceforge/jnlp/security/package-info.java | 81 ++++++++++++++++++++
3 files changed, 97 insertions(+), 0 deletions(-)
diffs (118 lines):
diff -r 1277621dfd03 -r bf754026fe6b ChangeLog
--- a/ChangeLog Thu Jun 11 12:30:23 2015 +0200
+++ b/ChangeLog Mon Jun 15 10:56:00 2015 +0200
@@ -1,3 +1,10 @@
+2015-06-15 Jiri Vanek <jvanek at redhat.com>
+
+ Updated NEWS, added javadoc fo security package
+ * NEWS: mentioned major work in last month and half
+ * netx/net/sourceforge/jnlp/security/package-info.java: new file, describing
+ flow of SecurityDialogMessage
+
2015-06-10 Jiri Vanek <jvanek at redhat.com>
Security dialogs got, moreover, unified dealing with trustNone/All and headless
diff -r 1277621dfd03 -r bf754026fe6b NEWS
--- a/NEWS Thu Jun 11 12:30:23 2015 +0200
+++ b/NEWS Mon Jun 15 10:56:00 2015 +0200
@@ -9,6 +9,15 @@
CVE-XXXX-YYYY: http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=XXXX-YYYY
New in release 1.6.1 (2015-MM-DD):
+* fixed bug in caching of files with query
+* fixed issues with recreating of existing shortcut
+* trustAll/trustNone now processed correctly
+* headless no longer shows dialogues
+* NetX
+ - fixed issues with -html shortcuts
+ - fixed issue with -html receiving garbage in width and height
+* PolicyEditor
+ - file flag made to work when used standalone
New in release 1.6 (2015-04-29):
* Massively improved offline abilities. Added Xoffline switch to force work without inet connection.
diff -r 1277621dfd03 -r bf754026fe6b netx/net/sourceforge/jnlp/security/package-info.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/netx/net/sourceforge/jnlp/security/package-info.java Mon Jun 15 10:56:00 2015 +0200
@@ -0,0 +1,81 @@
+/* package-info.java
+ Copyright (C) 2015 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify it under the
+terms of the GNU General Public License as published by the Free Software
+Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is making a
+combined work based on this library. Thus, the terms and conditions of the GNU
+General Public License cover the whole combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent modules, and
+to copy and distribute the resulting executable under terms of your choice,
+provided that you also meet, for each linked independent module, the terms and
+conditions of the license of that module. An independent module is a module
+which is not derived from or based on this library. If you modify this library,
+you may extend this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this exception
+statement from your version.*/
+/**
+ *<pre>
+ ITW-thread(s) | dialogs-thread X
+ | X
+ presteps in SecurtyDialogs | X
+ # eg handle trustall/none | X
+ # eg handle or remeber itself | X
+ actions | X
+ | | X
+ prepare message | X
+ # set JNLPfile | X
+ # set type of dialog | X
+ see | X
+ # extrass... | X
+ # lock | X
+ | | X
+ post message to queue | X
+ | >------------------------------------> | <----------------------------------------------------------------------------------------------------------------------------| X
+ wait for result from | read message from queue | X
+ getUserResponse(lock lock)| | | X
+ | create instance of dialogue | X
+ | | | X
+ | acording to type of dialogue, create and place panel | X
+ | | | X
+ | | | X
+ | | | X
+ | | | X
+ | | | X
+ | add closing and disposing listener(s) to button(s) | X
+ | | * set return value to listner? | X
+ | | | X
+ | accordingo to set value, set default selected button? | X
+ | | | X
+ | if his applet+action was already stored in .appletSecurity include text approved/denyed and when | X
+ | | | X
+ | wait for user to click buttton or close dialogue | X
+ | | | X
+ | --> set selected value (via listener?) to message, dispose dialog --| | X
+ | | | X
+ | | | X
+ | <------------------------------------------------------------------------------------------< unlock lock of this messge >--------------------------------------------| X
+ read result from message | X
+ | | X
+ continue accordingly | X
+ X
+
+ *</pre>
+ */
+package net.sourceforge.jnlp.security;
More information about the distro-pkg-dev
mailing list