svn commit: r350769 - in head/java/icedtea-web: . files
Jung-uk Kim
jkim at FreeBSD.org
Thu Apr 10 05:24:07 UTC 2014
Author: jkim
Date: Thu Apr 10 05:24:06 2014
New Revision: 350769
URL: http://svnweb.freebsd.org/changeset/ports/350769
QAT: https://qat.redports.org/buildarchive/r350769/
Log:
Update to 1.5.
Added:
head/java/icedtea-web/files/AUTHORS.html (contents, props changed)
head/java/icedtea-web/files/COPYING.html (contents, props changed)
head/java/icedtea-web/files/ChangeLog.html (contents, props changed)
head/java/icedtea-web/files/NEWS.html (contents, props changed)
Deleted:
head/java/icedtea-web/files/patch-launcher-javaws.in
head/java/icedtea-web/files/patch-tests-JNLPClassLoaderTest.java
Modified:
head/java/icedtea-web/Makefile
head/java/icedtea-web/distinfo
head/java/icedtea-web/files/patch-Makefile.in
Modified: head/java/icedtea-web/Makefile
==============================================================================
--- head/java/icedtea-web/Makefile Thu Apr 10 05:15:56 2014 (r350768)
+++ head/java/icedtea-web/Makefile Thu Apr 10 05:24:06 2014 (r350769)
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= icedtea-web
-PORTVERSION= 1.4.2
-PORTREVISION= 2
+PORTVERSION= 1.5
CATEGORIES= java www
MASTER_SITES= http://icedtea.wildebeest.org/download/source/ \
http://icedtea.classpath.org/download/source/
@@ -20,11 +19,10 @@ GNU_CONFIGURE= yes
USE_JAVA= yes
JAVA_OS= native
JAVA_VENDOR= openjdk
-JAVA_VERSION= 1.6+
USE_PERL5= build
USE_XORG= x11
-USES= gmake perl5 pkgconfig shebangfix desktop-file-utils
-SHEBANG_FILES= javac.in jrunscript.in
+USES= desktop-file-utils gmake perl5 pkgconfig shebangfix
+SHEBANG_FILES= javac.in jrunscript.in launcher/launchers.in
WANT_GNOME= yes
@@ -32,16 +30,22 @@ EXTRACT_CMD= ${GZIP_CMD}
EXTRACT_BEFORE_ARGS= -dc
EXTRACT_AFTER_ARGS= | ${SETENV} LC_ALL=en_US.UTF-8 ${TAR} -xf -
-PLIST_FILES= bin/itweb-javaws bin/itweb-settings \
+PLIST_FILES= bin/itweb-javaws \
+ bin/itweb-policyeditor \
+ bin/itweb-settings \
man/man1/itweb-javaws.1.gz \
+ man/man1/itweb-policyeditor.1.gz \
+ man/man1/itweb-settings.1.gz \
share/applications/itweb-javaws.desktop \
+ share/applications/itweb-policyeditor.desktop \
share/applications/itweb-settings.desktop \
share/pixmaps/itweb-javaws.png
-PORTDATA= about.jar about.jnlp javaws_splash.png netx.jar
+PORTDATA= javaws_splash.png netx.jar
PORTDOCS= netx
CONFIGURE_ARGS= --with-asm=no --with-ecj=no --with-emma=no --with-jacoco=no
CONFIGURE_ARGS+=--with-jdk-home="${JAVA_HOME}"
+CONFIGURE_ENV= ac_cv_path_BIN_BASH=${bash_CMD}
SH= ${bash_CMD}
OPTIONS_DEFINE= PLUGIN RHINO TEST
@@ -50,38 +54,26 @@ PLUGIN_DESC= Enable the browser plug-in
RHINO_DESC= Add support for Proxy Auto Config files
TEST_DESC= Add support for running regression test
-.include <bsd.port.options.mk>
+DOCS_CONFIGURE_ENABLE= docs
+PLUGIN_CONFIGURE_ENABLE=plugin
+RHINO_BUILD_DEPENDS= ${JAVASHAREDIR}/rhino/rhino.jar:${PORTSDIR}/lang/rhino
+RHINO_RUN_DEPENDS= ${JAVASHAREDIR}/rhino/rhino.jar:${PORTSDIR}/lang/rhino
+RHINO_CONFIGURE_OFF= --with-rhino=no
+RHINO_CONFIGURE_ON= --with-rhino=${JAVASHAREDIR}/rhino/rhino.jar
+TEST_BUILD_DEPENDS= ${JAVALIBDIR}/junit.jar:${PORTSDIR}/java/junit
+TEST_CONFIGURE_OFF= --with-junit=no
+TEST_CONFIGURE_ON= --with-junit=${JAVALIBDIR}/junit.jar
+PLUGIN_PLIST_FILES= lib/IcedTeaPlugin.so
+PLUGIN_USE= GNOME=glib20
+PLUGIN_USES= gecko webplugin:native
-.if empty(PORT_OPTIONS:MDOCS)
-CONFIGURE_ARGS+=--disable-docs
-.endif
+.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPLUGIN}
-USE_GNOME= glib20
-USES+= webplugin:native gecko
-WEBPLUGIN_DIR= ${PREFIX}/lib
-WEBPLUGIN_FILES=IcedTeaPlugin.so
-
-PLIST_FILES+= lib/IcedTeaPlugin.so
PORTDATA+= plugin.jar
PORTDOCS+= plugin
-.else
-CONFIGURE_ARGS+=--disable-plugin
-.endif
-
-.if ${PORT_OPTIONS:MRHINO}
-BUILD_DEPENDS+= ${JAVASHAREDIR}/rhino/rhino.jar:${PORTSDIR}/lang/rhino
-RUN_DEPENDS+= ${JAVASHAREDIR}/rhino/rhino.jar:${PORTSDIR}/lang/rhino
-CONFIGURE_ARGS+=--with-rhino=${JAVASHAREDIR}/rhino/rhino.jar
-.else
-CONFIGURE_ARGS+=--with-rhino=no
-.endif
-
-.if ${PORT_OPTIONS:MTEST}
-BUILD_DEPENDS+= ${JAVALIBDIR}/junit.jar:${PORTSDIR}/java/junit
-CONFIGURE_ARGS+=--with-junit=${JAVALIBDIR}/junit.jar
-.else
-CONFIGURE_ARGS+=--with-junit=no
+WEBPLUGIN_DIR= ${PREFIX}/lib
+WEBPLUGIN_FILES=IcedTeaPlugin.so
.endif
.include <bsd.port.pre.mk>
@@ -98,12 +90,8 @@ pre-extract:
post-patch:
${REINPLACE_CMD} -e 's|^Icon=javaws|Icon=itweb-javaws|' \
${WRKSRC}/*.desktop.in
- ${REINPLACE_CMD} -E 's|/bin/(ba)?sh|${bash_CMD}|' \
- ${WRKSRC}/launcher/*.in \
- ${WRKSRC}/plugin/tests/LiveConnect/build \
- ${WRKSRC}/tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java
- ${REINPLACE_CMD} -e 's|%%JAR%%|${JAR}|' \
- ${WRKSRC}/tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java
+ ${CP} -fp ${FILESDIR}/*.html \
+ ${WRKSRC}/netx/net/sourceforge/jnlp/resources
.if ${PORT_OPTIONS:MTEST}
post-build:
Modified: head/java/icedtea-web/distinfo
==============================================================================
--- head/java/icedtea-web/distinfo Thu Apr 10 05:15:56 2014 (r350768)
+++ head/java/icedtea-web/distinfo Thu Apr 10 05:24:06 2014 (r350769)
@@ -1,2 +1,2 @@
-SHA256 (icedtea-web-1.4.2.tar.gz) = d48de5fdbf0eb8983b857ebc5368f3392916b4a3e93e1c2bee6d3ad95924dc2d
-SIZE (icedtea-web-1.4.2.tar.gz) = 1393866
+SHA256 (icedtea-web-1.5.tar.gz) = 1c09f40b873a95c9863178b0f6cd2645fef493cc19d346510655a94948527c2d
+SIZE (icedtea-web-1.5.tar.gz) = 1583000
Added: head/java/icedtea-web/files/AUTHORS.html
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/java/icedtea-web/files/AUTHORS.html Thu Apr 10 05:24:06 2014 (r350769)
@@ -0,0 +1,39 @@
+The following people have made contibutions to this project.<br>
+Please keep this list in alphabetical order.<br>
+<br>
+<center>
+<br><img src="jamIcon.jpg" alt="Jam Icon" width="87" height="84"><br><br>
+Lillian Angel <<a href="mailto:langel at redhat.com?subject=IcedTea-Web">langel at redhat.com</a>><br>
+Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br>
+Deepak Bhole <<a href="mailto:dbhole at redhat.com?subject=IcedTea-Web">dbhole at redhat.com</a>><br>
+Ricardo Martín Camarero <<a href="mailto:rickyepoderi at yahoo.es?subject=IcedTea-Web">rickyepoderi at yahoo.es</a>><br>
+Danesh Dadachanji <<a href="mailto:ddadacha at redhat.com?subject=IcedTea-Web">ddadacha at redhat.com</a>><br>
+Adam Domurad <<a href="mailto:adomurad at redhat.com?subject=IcedTea-Web">adomurad at redhat.com</a>><br>
+Thomas Fitzsimmons <<a href="mailto:fitzsim at redhat.com?subject=IcedTea-Web">fitzsim at redhat.com</a>><br>
+Mark Greenwood <<a href="mailto:mark at dcs.shef.ac.uk?subject=IcedTea-Web">mark at dcs.shef.ac.uk</a>><br>
+Peter Hatina <<a href="mailto:phatina at redhat.com?subject=IcedTea-Web">phatina at redhat.com</a>><br>
+Andrew John Hughes <<a href="mailto:ahughes at redhat.com?subject=IcedTea-Web">ahughes at redhat.com</a>><br>
+Matthias Klose <<a href="mailto:doko at ubuntu.com?subject=IcedTea-Web">doko at ubuntu.com</a>><br>
+Alexandr Kolouch <<a href="mailto:skolnag at gmail.com?subject=IcedTea-Web">skolnag at gmail.com</a>><br>
+Michał Górny <<a href="mailto: mgorny at gentoo.org ?subject=IcedTea-Web"> mgorny at gentoo.org </a>><br>
+Jan Kmetko <<a href="mailto:jan.kmetko.ml at gmail.com?subject=IcedTea-Web">jan.kmetko.ml at gmail.com</a>><br>
+Francis Kung <<a href="mailto:fkung at redhat.com?subject=IcedTea-Web">fkung at redhat.com</a>><br>
+Denis Lila <<a href="mailto:dlila at redhat.com?subject=IcedTea-Web">dlila at redhat.com</a>><br>
+DJ Lucas <<a href="mailto:dj at lucasit.com?subject=IcedTea-Web">dj at lucasit.com</a>><br>
+Omair Majid <<a href="mailto:omajid at redhat.com?subject=IcedTea-Web">omajid at redhat.com</a>><br>
+Jon A. Maxwell <<a href="mailto:jmaxwell at users.sourceforge.net?subject=IcedTea-Web">jmaxwell at users.sourceforge.net</a>><br>
+Thomas Meyer <<a href="mailto:thomas at m3y3r.de?subject=IcedTea-Web">thomas at m3y3r.de</a>><br>
+Saad Mohammad <<a href="mailto:smohammad at redhat.com?subject=IcedTea-Web">smohammad at redhat.com</a>><br>
+Martin Olsson <<a href="mailto:martin at minimum.se?subject=IcedTea-Web">martin at minimum.se</a>><br>
+Andrew Su <<a href="mailto:asu at redhat.com?subject=IcedTea-Web">asu at redhat.com</a>><br>
+Joshua Sumali <<a href="mailto:jsumali at redhat.com?subject=IcedTea-Web">jsumali at redhat.com</a>><br>
+Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br>
+Mark Wielaard <<a href="mailto:mark at klomp.org?subject=IcedTea-Web">mark at klomp.org</a>><br>
+Jacob Wisor <<a href="mailto:gitne at excite.co.jp?subject=IcedTea-Web">gitne at excite.co.jp</a>><br>
+Man Lung Wong <<a href="mailto:mwong at redhat.com?subject=IcedTea-Web">mwong at redhat.com</a>><br>
+<br>
+This project also includes code from the following projects:<br>
+<br>
+OpenJDK <<a href="http://openjdk.java.net/">http://openjdk.java.net/</a>><br>
+Netx <<a href="http://jnlp.sourceforge.net/netx/">http://jnlp.sourceforge.net/netx/</a>><br>
+</center>
Added: head/java/icedtea-web/files/COPYING.html
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/java/icedtea-web/files/COPYING.html Thu Apr 10 05:24:06 2014 (r350769)
@@ -0,0 +1,340 @@
+ GNU GENERAL PUBLIC LICENSE<br>
+ Version 2, June 1991<br>
+<br>
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.<br>
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA<br>
+ Everyone is permitted to copy and distribute verbatim copies<br>
+ of this license document, but changing it is not allowed.<br>
+<br>
+ Preamble<br>
+<br>
+ The licenses for most software are designed to take away your<br>
+freedom to share and change it. By contrast, the GNU General Public<br>
+License is intended to guarantee your freedom to share and change free<br>
+software--to make sure the software is free for all its users. This<br>
+General Public License applies to most of the Free Software<br>
+Foundation's software and to any other program whose authors commit to<br>
+using it. (Some other Free Software Foundation software is covered by<br>
+the GNU Library General Public License instead.) You can apply it to<br>
+your programs, too.<br>
+<br>
+ When we speak of free software, we are referring to freedom, not<br>
+price. Our General Public Licenses are designed to make sure that you<br>
+have the freedom to distribute copies of free software (and charge for<br>
+this service if you wish), that you receive source code or can get it<br>
+if you want it, that you can change the software or use pieces of it<br>
+in new free programs; and that you know you can do these things.<br>
+<br>
+ To protect your rights, we need to make restrictions that forbid<br>
+anyone to deny you these rights or to ask you to surrender the rights.<br>
+These restrictions translate to certain responsibilities for you if you<br>
+distribute copies of the software, or if you modify it.<br>
+<br>
+ For example, if you distribute copies of such a program, whether<br>
+gratis or for a fee, you must give the recipients all the rights that<br>
+you have. You must make sure that they, too, receive or can get the<br>
+source code. And you must show them these terms so they know their<br>
+rights.<br>
+<br>
+ We protect your rights with two steps: (1) copyright the software, and<br>
+(2) offer you this license which gives you legal permission to copy,<br>
+distribute and/or modify the software.<br>
+<br>
+ Also, for each author's protection and ours, we want to make certain<br>
+that everyone understands that there is no warranty for this free<br>
+software. If the software is modified by someone else and passed on, we<br>
+want its recipients to know that what they have is not the original, so<br>
+that any problems introduced by others will not reflect on the original<br>
+authors' reputations.<br>
+<br>
+ Finally, any free program is threatened constantly by software<br>
+patents. We wish to avoid the danger that redistributors of a free<br>
+program will individually obtain patent licenses, in effect making the<br>
+program proprietary. To prevent this, we have made it clear that any<br>
+patent must be licensed for everyone's free use or not licensed at all.<br>
+<br>
+ The precise terms and conditions for copying, distribution and<br>
+modification follow.<br>
+
<br>
+ GNU GENERAL PUBLIC LICENSE<br>
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION<br>
+<br>
+ 0. This License applies to any program or other work which contains<br>
+a notice placed by the copyright holder saying it may be distributed<br>
+under the terms of this General Public License. The "Program", below,<br>
+refers to any such program or work, and a "work based on the Program"<br>
+means either the Program or any derivative work under copyright law:<br>
+that is to say, a work containing the Program or a portion of it,<br>
+either verbatim or with modifications and/or translated into another<br>
+language. (Hereinafter, translation is included without limitation in<br>
+the term "modification".) Each licensee is addressed as "you".<br>
+<br>
+Activities other than copying, distribution and modification are not<br>
+covered by this License; they are outside its scope. The act of<br>
+running the Program is not restricted, and the output from the Program<br>
+is covered only if its contents constitute a work based on the<br>
+Program (independent of having been made by running the Program).<br>
+Whether that is true depends on what the Program does.<br>
+<br>
+ 1. You may copy and distribute verbatim copies of the Program's<br>
+source code as you receive it, in any medium, provided that you<br>
+conspicuously and appropriately publish on each copy an appropriate<br>
+copyright notice and disclaimer of warranty; keep intact all the<br>
+notices that refer to this License and to the absence of any warranty;<br>
+and give any other recipients of the Program a copy of this License<br>
+along with the Program.<br>
+<br>
+You may charge a fee for the physical act of transferring a copy, and<br>
+you may at your option offer warranty protection in exchange for a fee.<br>
+<br>
+ 2. You may modify your copy or copies of the Program or any portion<br>
+of it, thus forming a work based on the Program, and copy and<br>
+distribute such modifications or work under the terms of Section 1<br>
+above, provided that you also meet all of these conditions:<br>
+<br>
+ a) You must cause the modified files to carry prominent notices<br>
+ stating that you changed the files and the date of any change.<br>
+<br>
+ b) You must cause any work that you distribute or publish, that in<br>
+ whole or in part contains or is derived from the Program or any<br>
+ part thereof, to be licensed as a whole at no charge to all third<br>
+ parties under the terms of this License.<br>
+<br>
+ c) If the modified program normally reads commands interactively<br>
+ when run, you must cause it, when started running for such<br>
+ interactive use in the most ordinary way, to print or display an<br>
+ announcement including an appropriate copyright notice and a<br>
+ notice that there is no warranty (or else, saying that you provide<br>
+ a warranty) and that users may redistribute the program under<br>
+ these conditions, and telling the user how to view a copy of this<br>
+ License. (Exception: if the Program itself is interactive but<br>
+ does not normally print such an announcement, your work based on<br>
+ the Program is not required to print an announcement.)<br>
+
<br>
+These requirements apply to the modified work as a whole. If<br>
+identifiable sections of that work are not derived from the Program,<br>
+and can be reasonably considered independent and separate works in<br>
+themselves, then this License, and its terms, do not apply to those<br>
+sections when you distribute them as separate works. But when you<br>
+distribute the same sections as part of a whole which is a work based<br>
+on the Program, the distribution of the whole must be on the terms of<br>
+this License, whose permissions for other licensees extend to the<br>
+entire whole, and thus to each and every part regardless of who wrote it.<br>
+<br>
+Thus, it is not the intent of this section to claim rights or contest<br>
+your rights to work written entirely by you; rather, the intent is to<br>
+exercise the right to control the distribution of derivative or<br>
+collective works based on the Program.<br>
+<br>
+In addition, mere aggregation of another work not based on the Program<br>
+with the Program (or with a work based on the Program) on a volume of<br>
+a storage or distribution medium does not bring the other work under<br>
+the scope of this License.<br>
+<br>
+ 3. You may copy and distribute the Program (or a work based on it,<br>
+under Section 2) in object code or executable form under the terms of<br>
+Sections 1 and 2 above provided that you also do one of the following:<br>
+<br>
+ a) Accompany it with the complete corresponding machine-readable<br>
+ source code, which must be distributed under the terms of Sections<br>
+ 1 and 2 above on a medium customarily used for software interchange; or,<br>
+<br>
+ b) Accompany it with a written offer, valid for at least three<br>
+ years, to give any third party, for a charge no more than your<br>
+ cost of physically performing source distribution, a complete<br>
+ machine-readable copy of the corresponding source code, to be<br>
+ distributed under the terms of Sections 1 and 2 above on a medium<br>
+ customarily used for software interchange; or,<br>
+<br>
+ c) Accompany it with the information you received as to the offer<br>
+ to distribute corresponding source code. (This alternative is<br>
+ allowed only for noncommercial distribution and only if you<br>
+ received the program in object code or executable form with such<br>
+ an offer, in accord with Subsection b above.)<br>
+<br>
+The source code for a work means the preferred form of the work for<br>
+making modifications to it. For an executable work, complete source<br>
+code means all the source code for all modules it contains, plus any<br>
+associated interface definition files, plus the scripts used to<br>
+control compilation and installation of the executable. However, as a<br>
+special exception, the source code distributed need not include<br>
+anything that is normally distributed (in either source or binary<br>
+form) with the major components (compiler, kernel, and so on) of the<br>
+operating system on which the executable runs, unless that component<br>
+itself accompanies the executable.<br>
+<br>
+If distribution of executable or object code is made by offering<br>
+access to copy from a designated place, then offering equivalent<br>
+access to copy the source code from the same place counts as<br>
+distribution of the source code, even though third parties are not<br>
+compelled to copy the source along with the object code.<br>
+
<br>
+ 4. You may not copy, modify, sublicense, or distribute the Program<br>
+except as expressly provided under this License. Any attempt<br>
+otherwise to copy, modify, sublicense or distribute the Program is<br>
+void, and will automatically terminate your rights under this License.<br>
+However, parties who have received copies, or rights, from you under<br>
+this License will not have their licenses terminated so long as such<br>
+parties remain in full compliance.<br>
+<br>
+ 5. You are not required to accept this License, since you have not<br>
+signed it. However, nothing else grants you permission to modify or<br>
+distribute the Program or its derivative works. These actions are<br>
+prohibited by law if you do not accept this License. Therefore, by<br>
+modifying or distributing the Program (or any work based on the<br>
+Program), you indicate your acceptance of this License to do so, and<br>
+all its terms and conditions for copying, distributing or modifying<br>
+the Program or works based on it.<br>
+<br>
+ 6. Each time you redistribute the Program (or any work based on the<br>
+Program), the recipient automatically receives a license from the<br>
+original licensor to copy, distribute or modify the Program subject to<br>
+these terms and conditions. You may not impose any further<br>
+restrictions on the recipients' exercise of the rights granted herein.<br>
+You are not responsible for enforcing compliance by third parties to<br>
+this License.<br>
+<br>
+ 7. If, as a consequence of a court judgment or allegation of patent<br>
+infringement or for any other reason (not limited to patent issues),<br>
+conditions are imposed on you (whether by court order, agreement or<br>
+otherwise) that contradict the conditions of this License, they do not<br>
+excuse you from the conditions of this License. If you cannot<br>
+distribute so as to satisfy simultaneously your obligations under this<br>
+License and any other pertinent obligations, then as a consequence you<br>
+may not distribute the Program at all. For example, if a patent<br>
+license would not permit royalty-free redistribution of the Program by<br>
+all those who receive copies directly or indirectly through you, then<br>
+the only way you could satisfy both it and this License would be to<br>
+refrain entirely from distribution of the Program.<br>
+<br>
+If any portion of this section is held invalid or unenforceable under<br>
+any particular circumstance, the balance of the section is intended to<br>
+apply and the section as a whole is intended to apply in other<br>
+circumstances.<br>
+<br>
+It is not the purpose of this section to induce you to infringe any<br>
+patents or other property right claims or to contest validity of any<br>
+such claims; this section has the sole purpose of protecting the<br>
+integrity of the free software distribution system, which is<br>
+implemented by public license practices. Many people have made<br>
+generous contributions to the wide range of software distributed<br>
+through that system in reliance on consistent application of that<br>
+system; it is up to the author/donor to decide if he or she is willing<br>
+to distribute software through any other system and a licensee cannot<br>
+impose that choice.<br>
+<br>
+This section is intended to make thoroughly clear what is believed to<br>
+be a consequence of the rest of this License.<br>
+
<br>
+ 8. If the distribution and/or use of the Program is restricted in<br>
+certain countries either by patents or by copyrighted interfaces, the<br>
+original copyright holder who places the Program under this License<br>
+may add an explicit geographical distribution limitation excluding<br>
+those countries, so that distribution is permitted only in or among<br>
+countries not thus excluded. In such case, this License incorporates<br>
+the limitation as if written in the body of this License.<br>
+<br>
+ 9. The Free Software Foundation may publish revised and/or new versions<br>
+of the General Public License from time to time. Such new versions will<br>
+be similar in spirit to the present version, but may differ in detail to<br>
+address new problems or concerns.<br>
+<br>
+Each version is given a distinguishing version number. If the Program<br>
+specifies a version number of this License which applies to it and "any<br>
+later version", you have the option of following the terms and conditions<br>
+either of that version or of any later version published by the Free<br>
+Software Foundation. If the Program does not specify a version number of<br>
+this License, you may choose any version ever published by the Free Software<br>
+Foundation.<br>
+<br>
+ 10. If you wish to incorporate parts of the Program into other free<br>
+programs whose distribution conditions are different, write to the author<br>
+to ask for permission. For software which is copyrighted by the Free<br>
+Software Foundation, write to the Free Software Foundation; we sometimes<br>
+make exceptions for this. Our decision will be guided by the two goals<br>
+of preserving the free status of all derivatives of our free software and<br>
+of promoting the sharing and reuse of software generally.<br>
+<br>
+ NO WARRANTY<br>
+<br>
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY<br>
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN<br>
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES<br>
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED<br>
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF<br>
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS<br>
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE<br>
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,<br>
+REPAIR OR CORRECTION.<br>
+<br>
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING<br>
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR<br>
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,<br>
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING<br>
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED<br>
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY<br>
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER<br>
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE<br>
+POSSIBILITY OF SUCH DAMAGES.<br>
+<br>
+ END OF TERMS AND CONDITIONS<br>
+
<br>
+ How to Apply These Terms to Your New Programs<br>
+<br>
+ If you develop a new program, and you want it to be of the greatest<br>
+possible use to the public, the best way to achieve this is to make it<br>
+free software which everyone can redistribute and change under these terms.<br>
+<br>
+ To do so, attach the following notices to the program. It is safest<br>
+to attach them to the start of each source file to most effectively<br>
+convey the exclusion of warranty; and each file should have at least<br>
+the "copyright" line and a pointer to where the full notice is found.<br>
+<br>
+ <one line to give the program's name and a brief idea of what it does.><br>
+ Copyright (C) <year> <name of author><br>
+<br>
+ This program is free software; you can redistribute it and/or modify<br>
+ it under the terms of the GNU General Public License as published by<br>
+ the Free Software Foundation; either version 2 of the License, or<br>
+ (at your option) any later version.<br>
+<br>
+ This program is distributed in the hope that it will be useful,<br>
+ but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br>
+ GNU General Public License for more details.<br>
+<br>
+ You should have received a copy of the GNU General Public License<br>
+ along with this program; if not, write to the Free Software<br>
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA<br>
+<br>
+<br>
+Also add information on how to contact you by electronic and paper mail.<br>
+<br>
+If the program is interactive, make it output a short notice like this<br>
+when it starts in an interactive mode:<br>
+<br>
+ Gnomovision version 69, Copyright (C) year name of author<br>
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.<br>
+ This is free software, and you are welcome to redistribute it<br>
+ under certain conditions; type `show c' for details.<br>
+<br>
+The hypothetical commands `show w' and `show c' should show the appropriate<br>
+parts of the General Public License. Of course, the commands you use may<br>
+be called something other than `show w' and `show c'; they could even be<br>
+mouse-clicks or menu items--whatever suits your program.<br>
+<br>
+You should also get your employer (if you work as a programmer) or your<br>
+school, if any, to sign a "copyright disclaimer" for the program, if<br>
+necessary. Here is a sample; alter the names:<br>
+<br>
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program<br>
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.<br>
+<br>
+ <signature of Ty Coon>, 1 April 1989<br>
+ Ty Coon, President of Vice<br>
+<br>
+This General Public License does not permit incorporating your program into<br>
+proprietary programs. If your program is a subroutine library, you may<br>
+consider it more useful to permit linking proprietary applications with the<br>
+library. If this is what you want to do, use the GNU Library General<br>
+Public License instead of this License.<br>
Added: head/java/icedtea-web/files/ChangeLog.html
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/java/icedtea-web/files/ChangeLog.html Thu Apr 10 05:24:06 2014 (r350769)
@@ -0,0 +1,2905 @@
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/d4c3c9f33a1f>2014-04-02</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ <u>* Makefile.am</u>: bumped number of changeset in for about dialog. Fixed placement.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/39b42b8c71c1>2014-04-02</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ <u>* Changelog</u>: minor fixes<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/26383febeaff>2014-04-02</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Pre-release tuning<br>
+ <u>* Makefile.am</u>: (netx-html-gen.stamp) set number of changests to 223 (since 1.4)<br>
+ <u>* NEWS</u>: date of 1.5 set to 201-04-02<br>
+ <u>* configure.ac</u>: (AC_INIT) set to use 1.5<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/b73f794d8e3f>2014-04-02</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ <u>* NEWS</u>: Bumped date of 1.5 release to 2014<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/c310c9e44597>2014-04-01</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Fix Permissions manifest attribute check<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestAttributesChecker.java</u>:<br>
+ (isNoneOrDefault) new method.<br>
+ (validateRequestedPermissionLevelMatchesManifestPermissions) new method.<br>
+ (checkPermissionsAttribute) rework to closer match spec and fix bug in not<br>
+ allowing signed applets to request sandbox permissions.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/0b2c5e69cb55>2014-04-01</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/JNLPFile.java</u>: hardcoded strings replaced by<br>
+ SecurityDesc.RequestedPermissionLevel values.<br>
+ <u>* netx/net/sourceforge/jnlp/PluginBridge.java</u>: likewise<br>
+ <u>* tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPFileTest.java</u>: likewise<br>
+ <u>* tests/netx/unit/net/sourceforge/jnlp/JNLPFileTest.java</u>: added new tests<br>
+ (testGetRequestedPermissionLevel1) - (testGetRequestedPermissionLevel7).<br>
+ Added (minimalJnlp) field.<br>
+ <u>* tests/netx/unit/net/sourceforge/jnlp/PluginBridgeTest.java</u>: added new<br>
+ (testGetRequestedPermissionLevel) test.<br>
+ <u>* netx/net/sourceforge/jnlp/SecurityDesc.java</u>: added (DEFAULT) into<br>
+ (RequestedPermissionLevel) and fixed typo in (J2EE) jnlpValue<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/fc9ab70d0b32>2014-04-01</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/SecurityDesc.java</u>: (RequestedPermissionLevel)<br>
+ new enum to describe the permission level requested in an applet's<br>
+ JNLP/HTML. (requestedPermissionLevel) new field. (SecurityDesc) new<br>
+ constructor with RequestedPermissionLevel added.<br>
+ (getRequestedPermissionLevel) new method.<br>
+ <u>* netx/net/sourceforge/jnlp/JNLPFile.java</u>: (getRequestedPermissionLevel)<br>
+ new method<br>
+ <u>* netx/net/sourceforge/jnlp/Parser.java</u>: (getSecurity) construct<br>
+ SecurityDescs with correct RequestedPermissionLevel<br>
+ <u>* netx/net/sourceforge/jnlp/PluginBridge.java</u>:<br>
+ (getRequestedPermissionLevel) new overridden method<br>
+ <u>* netx/net/sourceforge/jnlp/PluginParameters.java</u>: (getPermissions) new<br>
+ method<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/2670820a9609>2014-04-01</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages_cs.properties</u>: adapted to match newest state.<br>
+ (MissingPermissionsMainTitle) (MissingPermissionsInfo) (ALACAMissingMainTitle) (ALACAMissingInfo)<br>
+ (ALACAMatchingMainTitle) (ALACAMatchingInfo) removed codebase word, used text in all hrefs.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/d84effce2642>2014-04-01</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Manual quotation in ClasspathMatcher regex replaced by Pattern.quote<br>
+ <u>* netx/net/sourceforge/jnlp/util/ClasspathMatcher.java</u>: (quote)<br>
+ is now using Pattern.quote instead manual Q + original + E<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/70d23452ac83>2014-04-01</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Restricted CodebaseMatcher to not match aaexample.com by *.example.com expression<br>
+ but still match example.com - as in specification.<br>
+ <u>* netx/net/sourceforge/jnlp/util/ClasspathMatcher.java</u>: (domainToRegEx) consists<br>
+ of original regex connected by or with second one in case of *. start.<br>
+ (sourceToRegExString) part of the logic extracted to quote method.<br>
+ <u>* tests/netx/unit/net/sourceforge/jnlp/util/ClasspathMatcherTest.java</u>:<br>
+ (matchTest5) adapted. (wildCardSubdomainDoesNotMatchParentDomainPaths) new test,<br>
+ focusing on aaexample.com/example.com/aaa.example.com in *.example.com both<br>
+ path and domain.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/ec7b04725a82>2014-03-31</a> Omair Majid <<a href="mailto:omajid at redhat.com?subject=IcedTea-Web">omajid at redhat.com</a>><br></b>
+<br>
+ * netx/net/sourceforge/jnlp/resources/Messages.properties<br>
+ (MissingPermissionsMainTitle): Remove 'codebase'<br>
+ (MissingPermissionsInfo): Use simple link title.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/1fa70bdff359>2014-03-31</a> Omair Majid <<a href="mailto:omajid at redhat.com?subject=IcedTea-Web">omajid at redhat.com</a>><br></b>
+<br>
+ * netx/net/sourceforge/jnlp/resources/Messages.properties<br>
+ (ALACAMissingMainTitle, ALACAMissingInfo ALACAMatchingMainTitle)<br>
+ (ALACAMatchingInfo): Rephrase strings and replace full links with page<br>
+ names.<br>
+ <u>* netx/net/sourceforge/jnlp/util/UrlUtils.java (setOfUrlsToHtmlList)</u>:<br>
+ Enclose list in 'ul' element.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/79a3a7a01760>2014-03-31</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Allowed wrong match of the aaaexample.com by *.example.com expression as in<br>
+ specification.<br>
+ <u>* netx/net/sourceforge/jnlp/util/ClasspathMatcher.java</u>: uncommented handling <br>
+ of dot in (domainToRegEx).<br>
+ <u>* tests/netx/unit/net/sourceforge/jnlp/util/ClasspathMatcherTest.java</u>:<br>
+ (matchTest) uncommented and added tests of/for dot issue.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/ee80e215928e>2014-03-31</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<b> Alexandr Kolouch <<a href="mailto:skolnag at gmail.com?subject=IcedTea-Web">skolnag at gmail.com</a>><br></b>
+<br>
+ Fixed cz_CS locales and adapted tests<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages_cs_CZ.properties</u>: added missing<br>
+ values<br>
+ <u>* tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java</u>:<br>
+ Added few untranslatable items to white-list. (allResourcesAreReallyDifferent)<br>
+ now skip test on values of "std. err" "std. out" "Policy Editor" and <br>
+ "Java Reflection"<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/da9335e11493>2014-03-31</a> Omair Majid <<a href="mailto:omajid at redhat.com?subject=IcedTea-Web">omajid at redhat.com</a>><br></b>
+<br>
+ * acinclude.m4<br>
+ (IT_CHECK_XULRUNNER_MIMEDESCRIPTION_CONSTCHAR),<br>
+ (IT_CHECK_XULRUNNER_REQUIRES_C11): Use AC_LANG_SOURCE with code.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/cfe6aca11b12>2014-03-31</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Refactored check of heap space. Now recognize g/G and is based on regex<br>
+ <u>* netx/net/sourceforge/jnlp/JREDesc.java</u>: Added (heapPattern) constant.<br>
+ (checkHeapSize) now returns trimmed string and its logic is matching the<br>
+ heapPattern instead compelx structure. (init) set result of checkHeapSize<br>
+ as initialHeapSize and maximumHeapSize.<br>
+ <u>* tests/netx/unit/net/sourceforge/jnlp/JREDescTest.java</u>: tests for (checkHeapSize)<br>
+ and (init) of JREDesc.<br>
+ <br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/8417559b6a12>2014-03-27</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Fix NPE when trying to open a new file, with changes made, and wanting to<br>
+ save these changes to a file<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>:<br>
+ (openButtonAction) display Save As file chooser if there is no file object<br>
+ yet and user wishes to save changes<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/e9f222be36b5>2014-03-27</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Fix bug with checkboxes not correctly updating on open and with repeats of<br>
+ a codebase appearing when opening a file multiple times<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>:<br>
+ (resetCodebases) new method. (openAndParsePolicyFile) call resetCodebases<br>
+ at start. (PolicyEditor) call resetCodebases in constructor<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/ede0279b5c53>2014-03-27</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Applets can be temporarily granted permission levels above fully sandboxed<br>
+ but below all-permission<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>:<br>
+ (STempPermNoFile, STempPermNoNetwork, STempPermNoExec,<br>
+ STempPermNoFileOrNetwork, STempPermNoExecOrNetwork, STempPermNoFileOrExec,<br>
+ STempPermNoFileOrNetworkOrExec, STempAllMedia, STempSoundOnly,<br>
+ STempClipboardOnly, STempPrintOnly, STempAllFileAndPropertyAccess,<br>
+ STempReadLocalFilesAndProperties, STempReflectionOnly): new messages<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialog.java</u>: (installPanel)<br>
+ pass SecurityDelegate to partially signed dialog<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialogs.java</u>:<br>
+ (showPartiallySignedWarningDialog) added SecutityDelegate param for<br>
+ message extras<br>
+ <u>* netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java</u>:<br>
+ (checkPartiallySignedWithUserIfRequired) added SecurityDelegate param<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java</u>:<br>
+ (createPolicyPermissionsMenu, PolicyEditorLaunchListener,<br>
+ PolicyEditorPopupListener) removed in favour of TemporaryPermissionsButton<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java</u>:<br>
+ same<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningDialog.java</u>:<br>
+ (partiallySigned) SecurityDelegate param<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PermissionActions.java</u>:<br>
+ (DELETE, READLINK, FILE_ALL) new actions. (rawActions, rawString) can<br>
+ retrieve raw String representation of the action<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PermissionTarget.java</u>:<br>
+ (USER_HOME, TMPDIR) grant permissions to entire directory, not only<br>
+ children<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java</u>: <br>
+ (DELETE_LOCAL_FILES, DELETE_TMP_FILES) new permissions.<br>
+ (Group.WriteFileSystem) added DELETE* permissions<br>
+ <u>* nests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorParsingTest.java</u>: <br>
+ update for change in PermissionTarget<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissions.java</u>:<br>
+ new class<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissionsButton.java</u>:<br>
+ new class<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/b4631fce293a>2014-03-27</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Clenaup in PolicyEditor tests and MVC<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>: MVC<br>
+ mixing method (updatecheckboxes) splited to invokelater and plain impls.<br>
+ <u>* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/* </u>: removed<br>
+ warnings and fixed wrong package declaration.<br>
+ <u>* tests/test-extensions/net/sourceforge/jnlp/util/FileTestUtils.java</u>: when<br>
+ filelaks are negative, take it as success.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/f975d5db4fbd>2014-03-26</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Fix JOptionPane modality problems after making PolicyEditor itself modal<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>:<br>
+ JOptionPane dialog parents set correctly to JDialog or JFrame rather than<br>
+ JPanel<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/01a37b9ad8cb>2014-03-26</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.propertie</u>: new keys (STOAsignedMsgFully)<br>
+ (STOAsignedMsgAndSandbox) (STOAsignedMsgPartiall) added<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestAttributesChecker.java</u>: extracted<br>
+ hardocded values of (signedMsg)<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/9de6713da051>2014-03-26</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Added possibility to group permissions in PolicyEditor<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>: added groups names<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>: (setLayout)<br>
+ added grouping panels and checkboxes. (JcheckBoxWithGroup) New inner class to work<br>
+ with groups.<br>
+ netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java:<br>
+ Added inner class (Groups) and deffinied (ReadFileSystem) (WriteFileSystem)<br>
+ (AccesUnowenedCode) (MediaAccess)<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/ca18850addad>2014-03-26</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>:<br>
+ (savePolicyFile, openAndParsePolicyFile) made synchronous so that<br>
+ programmatically adding a new codebase has a well-defined order when<br>
+ performed immediately after starting a new PolicyEditor instance<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/fcb9dcf1c83c>2014-03-26</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<b> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ PolicyEditor can be made modal.<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>:<br>
+ (PolicyEditorWindow) new interface to facilitate PolicyEditor as a Window<br>
+ rather than Panel. (PolicyEditorFrame, PolicyEditorDialog)<br>
+ PolicyEditorWindow implementations. (getPolicyEditorFrame,<br>
+ getPolicyEditorWindow) new methods to get frame or dialog implementations.<br>
+ (setComponentMnemonic) made static. (preparePolicyEditorWindow) common<br>
+ setup for frame and dialog implementations.<br>
+ <u>* netx/net/sourceforge/jnlp/controlpanel/PolicyPanel.java</u>: refactor to use<br>
+ PolicyEditorWindow<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java</u>:<br>
+ same<br>
+ * netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java<br>
+ same<br>
+ <u>* netx/net/sourceforge/jnlp/util/FileUtils.java</u>: (showReadOnlyDialog,<br>
+ showCouldNotOpenFileDialog, showCouldNotOpenFilePathDialog,<br>
+ showCouldNotOpenDialog) use Component rather than JFrame<br>
+<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/689447c4d6bd>2014-03-26</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Added many new permissions for PolicyEditor<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>: (PEWriteProps,<br>
+ PEWritePropsDetail, PEWriteSystemFiles, PEWriteSystemFilesDetail,<br>
+ PEAWTPermission, PEAWTPermissionDetail, PERecordAudio,<br>
+ PERecordAudioDetail, PEReflection, PEReflectionDetail, PEClassLoader,<br>
+ PEClassLoaderDetail, PEClassInPackage, PEClassInPackageDetail,<br>
+ PEDeclaredMembers, PEDeclaredMembersDetail, PEExec, PEExecDetail,<br>
+ PEGetEnv, PEGetEnvDetail): new messages. (PEAudio, PEAudioDetail) renamed<br>
+ to PEPlayAudio{,Detail}.<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PermissionActions.java</u>:<br>
+ (EXECUTE) new action<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PermissionTarget.java</u>:<br>
+ (ALL_FILES, RECORD, REFLECT, GETENV, ACCESS_CLASS_IN_PACKAGE,<br>
+ DECLARED_MEMBERS, CLASSLOADER) new targets<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PermissionType.java</u>:<br>
+ (REFLECT_PERMISSION) new type<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java</u>:<br>
+ (WRITE_PROPERTIES, WRITE_SYSTEM_FILES, JAVA_REFLECTION, GET_CLASSLOADER,<br>
+ ACCESS_CLASS_IN_PACKAGE, ACCESS_DECLARED_MEMBERS, EXEC_COMMANDS, GET_ENV,<br>
+ ALL_AWT, RECORD_AUDIO) new permissions. (AUDIO) renamed PLAY_AUDIO.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/d0069afaeaff>2014-03-24</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java</u>:<br>
+ renamed to ManifestAttributesChecker.<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestAttributesChecker.java</u>:<br>
+ (checkTrustedOnlyAttribute, checkCodebaseAttribute,<br>
+ checkPermissionsAttribute,<br>
+ checkApplicationLibraryAllowableCodebaseAttribute) made private.<br>
+ (checkAll) new method.<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java</u>: reflect above<br>
+ changes<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/80e5a57863e2>2014-03-24</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java</u>:<br>
+ (checkTrustedOnlyAttrubute) works properly with sandboxing<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/c0845e58bfba>2014-03-24</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Client applications now log into new console.<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>: added keys (COPitw)<br>
+ and (COPclientApp) for new checkboxes in console<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/Boot.java</u>: added brackets to headless if<br>
+ <u>* netx/net/sourceforge/jnlp/util/TeeOutputStream.java</u>: moved to<br>
+ <u>* netx/net/sourceforge/jnlp/util/logging/TeeOutputStream.java</u>: and improved to<br>
+ log into new console.<br>
+ <u>* netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java</u>: added new<br>
+ checkboxes to filter out/in custom app/itw logs. copyAll buttons do not include<br>
+ custom app's logs in case of first click.<br>
+ <u>* netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPaneModel.java</u>: Added<br>
+ testing data with custom app. (HTMLCOLOR_PURPLE) and (HTMLCOLOR_GREEN) as<br>
+ new colors for custom app. (filter) now handle client app.<br>
+ <u>* netx/net/sourceforge/jnlp/util/logging/JavaConsole.java</u>: (init) redirect<br>
+ stdout/err over teeOutputStream<br>
+ <u>* /netx/net/sourceforge/jnlp/util/logging/OutputController.java</u>: (consume)<br>
+ do not reprint if header is marked by isClientApp<br>
+ <u>* netx/net/sourceforge/jnlp/util/logging/headers/Header.java</u>: added field<br>
+ (isClientApp)<br>
+ <br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/2d02a075cb1e>2014-03-24</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/controlpanel/CachePane.java</u>: (visualCleanCache)<br>
+ consider exception in cache operation as not-scuess.<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>: (CCannotClearCache)<br>
+ (CFakedCache) (CVCPCleanCacheTip) improved by fix it tips.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/6bdbe6b2694b>2014-03-24</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ <u>* NEWS</u>: added mention of Trusted-only manifest attribute<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/a958ecb160f6>2014-03-24</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Added ability to launch PolicyEditor from security prompts, with the<br>
+ current applet's codebase pre-selected in the editor.<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>:<br>
+ (CertWarnPolicyTip, CertWarnPolicyEditor): new messages<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java</u>: can<br>
+ launch PolicyEditor from new options overflow button<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java</u>:<br>
+ same<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/48f3658a7efd>2014-03-24</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java</u>: pass<br>
+ SecurityDelegate to ManifestsAttributesValidator<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java</u>:<br>
+ (securityDelegate) new field, added to constructor.<br>
+ (checkTrustedOnlyAttribute, checkPermissionsAttribute) works with<br>
+ RunInSandbox.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/022f56ff692f>2014-03-20</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Trusted-only manifest attribute implementation<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>:<br>
+ (STrustedOnlyAttributeFailure) new message<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java</u>: added<br>
+ ManifestsAttributesValidator#checkTrustedOnlyAttribute() to constructor<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java</u>:<br>
+ (checkTrustedOnlyAttribute) new method<br>
+ <u>* tests/reproducers/custom/TrustedOnlyAttribute/resources/TrustedOnlyAttribute-signed-nosecurity.jnlp</u>:<br>
+ new tests for Trusted-only attribute<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/resources/TrustedOnlyAttribute-signed-security.jnlp<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/resources/TrustedOnlyAttribute-signed.html<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/resources/TrustedOnlyAttribute-unsigned-nosecurity.jnlp<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/resources/TrustedOnlyAttribute-unsigned-security.jnlp<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/resources/TrustedOnlyAttribute-unsigned.html<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/srcs/MANIFEST.MF<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/srcs/Makefile<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/srcs/TrustedOnlyAttribute.java<br>
+ * tests/reproducers/custom/TrustedOnlyAttribute/testcases/TrustedOnlyAttributeTest.java<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/fb2309dfa598>2014-03-20</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Passing a reference to SecurityDelegate to CertWarningPane, so that UI<br>
+ elements can be added later to allow the applet to be run Sandboxed + some<br>
+ temporary permissions<br>
+ <u>* netx/net/sourceforge/jnlp/security/JNLPAppVerifier.java</u>: (checkTrustWithUser)<br>
+ pass SecurityDelegate reference to SecurityDialogs.showCertWarningDialog<br>
+ <u>* netx/net/sourceforge/jnlp/security/PluginAppVerifier.java</u>: same<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialog.java</u>: pass SecurityDelegate<br>
+ reference from extras into CertWarningPane constructor<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialogs.java</u>: (showCertWarningDialog)<br>
+ added SecurityDelegate parameter, add to extras array.<br>
+ <u>* netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java</u>: (askUser)<br>
+ pass null for SecurityDelegate reference<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/CertWarningPane.java</u>: (CertWarningPane)<br>
+ added SecurityDelegate constructor parameter and (securityDelegate) field <br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/674128ef4394>2014-03-20</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ SecurityDelegate can be used to add permissions to JNLPClassLoader during<br>
+ run. This is useful for adding temporary extra permissions to an applet.<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java</u>: (SecurityDelegate<br>
+ addPermission, addPermissions) new methods. (SecurityDelegateImpl addPermission,<br>
+ addPermissions) implement previous.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/cea32875903d>2014-03-20</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Clear cache function made more visible.<br>
+ <u>* netx/net/sourceforge/jnlp/cache/CacheUtil.java</u>: (okToClearCache) released<br>
+ never released lock. (clearCache) now recriated directory after cleaning.<br>
+ <u>* netx/net/sourceforge/jnlp/controlpanel/CachePane.java</u>: Added delete<br>
+ all button. (restoreDisabled) and (disableButtons) are containing duplicated<br>
+ code. (invokeLaterDeleteAll) and (visualCleanCache) utility methods accessing<br>
+ CacheUtil.clearCache.<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>: added (CVCPCleanCache)<br>
+ and (CVCPCleanCacheTip) keys<br>
+ <u>* netx/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialog.java</u>:<br>
+ added (cacheButton)<br>
+ <u>* netx/net/sourceforge/jnlp/util/BasicExceptionDialog.java</u>: also added (cacheButton)<br>
+ but also included some layout refactoring to have buttons in row.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/d133c4ebfe24>2014-03-20</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Methods validating manifests' attributes moved to separate class.<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java</u>: Cleaned imports.<br>
+ At (init) methods (checkCodebaseAttribute), (checkPermissionsAttribute) and <br>
+ (checkApplicationLibraryAllowableCodebaseAttribute) moved to<br>
+ ManifestsAttributesValidator. (guessCodeBase) generalized in UrlUtils.<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/ManifestsAttributesValidator.java</u>:<br>
+ new class. Contains logic to validate manifests'attributes.<br>
+ <u>* netx/net/sourceforge/jnlp/util/UrlUtils.java</u>: added method (guessCodeBase)<br>
+ as generalization of JNLPClassLoader's guessCodeBase method.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/15bbdf43c1e7>2014-03-14</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ Added new PartiallySigned Dialog to replace NotAllSignedWarningPane.<br>
+ Also includes a Sandbox button.<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>:<br>
+ (APPEXTSecunsignedAppletActionSandbox, LPartiallySignedApplet,<br>
+ LPartiallySignedAppletUserDenied) new messages. (SNotAllSignedSummary,<br>
+ SNotAllSignedDetail, SNotAllSignedQuestion) keys renamed to SPartially*<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages_cs.properties</u>: (SNotAllSignedSummary,<br>
+ SNotAllSignedDetail, SNotAllSignedQuestion) keys renamed to SPartially*<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages_de.properties</u>: same<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages_pl.properties</u>: same<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java</u>:<br>
+ Logic added for displaying new PartiallySigned dialog.<br>
+ (showNotAllSignedDialog) removed. (getSigningState) new method.<br>
+ (promptUserOnPartialSigning, userPromptedForPartialSigning) new methods for<br>
+ SecurityDelegate.<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningDialog.java</u>:<br>
+ (partiallySigned) new method<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/AppTrustWarningPanel.java</u>:<br>
+ (chosenActionSetter) refactored to allow Sandbox action. (setupInfoPanel) applet<br>
+ title made overrideable by subclasses<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialog.java</u>: (NOTALLSIGNED_WARNING)<br>
+ renamed PARTIALLYSIGNED_WARNING, display new dialog rather than old<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialogs.java</u>: (NOTALLSIGNED_WARNING)<br>
+ renamed PARTIALLYSIGNED_WARNING. (showNotAllSignedWarningDialog) removed.<br>
+ (showPartiallySignedWarningDialog) new method<br>
+ <u>* netx/net/sourceforge/jnlp/security/appletextendedsecurity/ExecuteAppletAction.java</u>:<br>
+ Added Sandbox action<br>
+ <u>* netx/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmation.java</u>:<br>
+ (checkPartiallySignedWithUserIfRequired) new method<br>
+ <u>* tests/reproducers/custom/SignedAppletCodebaseLoading/testcases/SignedAppletCodebaseLoadingTests.java</u>:<br>
+ test now passes since dialog will not appear if applet security is set to Low.<br>
+ KnownToFail removed.<br>
+ <u>* tests/reproducers/custom/SignedAppletExternalMainClass/testcases/SignedAppletExternalMainClassTest.java</u>:<br>
+ same<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/apptrustwarningpanel/PartiallySignedAppTrustWarningPanel.java</u>:<br>
+ new class<br>
+ <u>* netx/net/sourceforge/jnlp/security/dialogs/NotAllSignedWarningPane.java</u>: deleted<br>
+ in favour of PartiallySignedAppTrustWarningPanel<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/fdff61a60cc1>2014-03-14</a> Andrew Azores <<a href="mailto:aazores at redhat.com?subject=IcedTea-Web">aazores at redhat.com</a>><br></b>
+<br>
+ <u>* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java</u>:<br>
+ (addNewCodebase) ensure that checkboxes update. (removeCodebase,<br>
+ updateCheckboxes) ensure UI updates are done on EDT.<br>
+<br>
+<b><a href=http://icedtea.classpath.org/hg/release/icedtea-web-1.5/rev/aba4c18c4c64>2014-03-14</a> Jiri Vanek <<a href="mailto:jvanek at redhat.com?subject=IcedTea-Web">jvanek at redhat.com</a>><br></b>
+<br>
+ Base implementation of Application-Library-Allowable-Codebase. Remember<br>
+ button not yet working.<br>
+ <u>* netx/net/sourceforge/jnlp/JNLPFile.java</u>: (ClasspathMatchers)<br>
+ (getApplicationLibraryAllowableCodebase) (getCodebase) (getCodeBaseMatchersAttribute)<br>
+ (getCodeBaseMatchersAttribute) (getCodeBaseMatchersAttribute) changed signature<br>
+ to include/not include path in returned matcher.<br>
+ <u>* netx/net/sourceforge/jnlp/resources/Messages.properties</u>: Added keys<br>
+ (ALACAMissingMainTitle) (ALACAMissingInfo) (ALACAMatchingMainTitle)<br>
+ (ALACAMatchingInfo) for new dialogs.<br>
+ <u>* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java</u>: Implemented <br>
+ (checkApplicationLibraryAllowableCodebaseAttribute). Used in (init)<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialog.java</u>: made aware of <br>
+ new constants (MISSING_ALACA) and (MATCHING_ALACA)<br>
+ <u>* netx/net/sourceforge/jnlp/security/SecurityDialogs.java</u>: new constants<br>
+ (MISSING_ALACA) and (MATCHING_ALACA). Implemented (showMissingALACAttributePanel)<br>
+ and (showMatchingALACAttributePanel)<br>
*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
More information about the svn-ports-all
mailing list