aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* Launch errors are not being printed to terminalOmair Majid2012-03-141-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2012-03-14 Omair Majid <[email protected]> Print exceptions to terminal when running in gui mode too. * netx/net/sourceforge/jnlp/AbstractLaunchHandler.java: New file. * netx/net/sourceforge/jnlp/DefaultLaunchHandler.java: Extend AbstractLaunchHandler. (DefaultLaunchHandler): New method. (printMessage): Moved to parent class. * netx/net/sourceforge/jnlp/GuiLaunchHandler.java: Extend AbstractLaunchHandler. (GuiLauchHandler): New method. (launchError): Print the error too. (launchWarning,validationError): Call parent's printMessage. * netx/net/sourceforge/jnlp/LaunchException.java: Use standard java exception chaining. This removes compatibility with pre-java 1.3 class libraries. (LaunchException(JNLPFile,Exception,String,String,String,String)): Pass cause to parent so exceptions are chanined properly. (LaunchException(String,Throwable),LaunchException(Throwable)): Call parent's constructor. (printStackTrace(PrintStream),printStackTrace(PrintWriter),getCause): Removed. Use parent's implementation instead. (getCauses): Removed. * netx/net/sourceforge/jnlp/LaunchHandler.java (validationError): Rename argument to clarify meaing. * netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java (initialize): Redirect output of all handlers to System.err. * plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java (PluginAppletSecurityContext): Likewise. * tests/netx/unit/net/sourceforge/jnlp/DefaultLaunchHandlerTest.java, * tests/netx/unit/net/sourceforge/jnlp/LaunchExceptionTest.java: New file. Contains tests.
* Test that checks ServiceManager is setup correctly for applets.Danesh Dadachanji2012-03-121-0/+11
|
* Update JNLPs of tests to include required information/title/vendor tags.Danesh Dadachanji2012-03-121-0/+26
|
* added reproducers for main class in manifestJiri Vanek2012-03-081-0/+17
|
* Extended reflection testJiri Vanek2012-03-071-0/+21
|
* Bumped version to 1.3preDeepak Bhole2012-02-291-0/+4
|
* Change CertificateUtils.inKeyStores() to only check for certificate equalityDeepak Bhole2012-02-291-0/+5
|
* Added check for main class in jar manifest(s)Deepak Bhole2012-02-281-0/+7
|
* Return 0 id to Java side if call/eval fail.Deepak Bhole2012-02-281-0/+6
|
* Use the mozilla-plugin pkgconfig module if the libxul module is not available.doko2012-02-271-0/+5
| | | | | | | | | 2012-02-27 Matthias Klose <[email protected]> * acinclude.m4 (IT_CHECK_PLUGIN_DEPENDENCIES): Use the mozilla-plugin pkgconfig module if the libxul module is not available. (patch was included in previous commit)
* Define mime descriptions for 1.7, when built with Java7doko2012-02-271-0/+7
| | | | | | | | | 2012-02-27 Matthias Klose <[email protected]> * acinclude.m4 (IT_FIND_JAVA): Set VERSION_DEFS. * Makefile.am ($(PLUGIN_DIR)/%.o): Pass $(VERSION_DEFS) * IcedTeaNPPlugin.cc (PLUGIN_MIME_DESC): Define in terms of HAVE_JAVA7.
* PR820: IcedTea-Web 1.1.3 crashing Firefox when loading Citrix XenAppDeepak Bhole2012-02-271-0/+20
| | | | Patch from Thomas Meyer (primary) and Deepak Bhole
* Add ability to check for use of jnlp_href outside of PluginBridge.Danesh Dadachanji2012-02-221-0/+7
|
* Path to NEW_LINE_IFS is incorrect.Danesh Dadachanji2012-02-131-0/+6
|
* Fix regression in broken AppletTest.Danesh Dadachanji2012-02-131-0/+8
|
* Fix LaunchException constructor to handle null a description.Danesh Dadachanji2012-02-021-0/+5
|
* Use description parameter when creating a LaunchException.Danesh Dadachanji2012-02-011-0/+5
|
* fixed date in changelogJiri Vanek2012-02-011-1/+1
|
* fixed LRU cache behaviour in case of failure. Tests added.Jiri Vanek2012-02-011-0/+28
|
* PR852: Classloader not being flushed after last applet from a site is closedDeepak Bhole2012-01-271-0/+12
|
* added xnofork tests and applet testsJiri Vanek2012-01-251-0/+16
|
* Plugin does not make JNLP's <information> available when using jnlp_href.Danesh Dadachanji2012-01-241-0/+14
|
* PR838: IcedTea plugin crashes with chrome browser when javascript is executedicedtea-web-1.2-branchpointDeepak Bhole2012-01-091-0/+7
|
* fix findbugs cloud jnlpsOmair Majid2012-01-061-0/+7
| | | | | | | | | | | | | | | | | | | | | | | Someone reported that the following JNLP was not starting: http://findbugs.cs.umd.edu/cloud/eclipse.jnlp The first problem was that icedtea-web was trying to ensure that all jnlps, including extension jnlps have a main class. I wonder what other applications were broken by this check. This patch modifies the check to only check for main class when a main class is possible (applets and applications). The second second problem was that (in the extension jnlp file) the jnlp element did not contain a codebase attribute. IcedTea-Web tried to add this null codebase when merging the jnlp file, causing an exception. The patch simply ignores this null. 2012-01-05 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (initializeResources): Only throw exceptions about the main class not being found when the jnlp file can have a main class. (addToCodeBaseLoader): Dont try to process null URLs.
* Added check for xsltproc toolJiri Vanek2012-01-051-0/+7
|
* Use correct response parameter when returning array member vs member itselfDeepak Bhole2011-12-221-0/+5
| | | | Patch from Thomas Meyer <[email protected]>
* RH586194: Unable to connect to connect with Juniper VPN clientDeepak Bhole2011-12-211-0/+7
| | | | | | | | Patch from Thomas Meyer <[email protected]> * plugin/icedteanp/IcedTeaPluginRequestProcessor.cc(sendMember): Use createJavaObjectFromVariant to create the resulting object on Java side, rather than always creating a JSObject.
* Made compatible with both versions of xulrunnerJiri Vanek2011-12-211-0/+10
|
* BasicService code does not work when placed in the applet constructor.Danesh Dadachanji2011-12-191-0/+11
|
* Fixed function name in comment for sendMember.Deepak Bhole2011-12-161-0/+6
| | | | Patch from Thomas Meyer <[email protected]>
* Print the arguments passed to the application's main methodOmair Majid2011-12-081-0/+6
| | | | | | | | 2011-12-08 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/Launcher.java (launchApplication): Print arguments being passed to the application's main method in debug mode.
* Change icon for AccessWarningPane dialogsDanesh Dadachanji2011-12-051-0/+6
|
* Added targets to calcualte code coverage by testsJiri Vanek2011-11-291-0/+23
|
* chenglogs for spaces reproducers and for changes to engine because of spacesJiri Vanek2011-11-111-0/+38
|
* Enabled testWeekdayRange, added tests for star/end of months for dateRange ↵Jiri Vanek2011-11-101-0/+15
| | | | pac function
* mergeDeepak Bhole2011-11-081-0/+8
|\
| * RH742515, CVE-2011-3377: IcedTea-Web: second-level domain subdomains and ↵Deepak Bhole2011-10-281-0/+8
| | | | | | | | suffix domain SOP bypass
* | PR808: javaws is unable to start when missing jars are enumerated before ↵Omair Majid2011-10-311-0/+8
|/ | | | | | | | | | main jar 2011-10-31 Omair Majid <[email protected]> * NEWS: Update. * netx/net/sourceforge/jnlp/tools/JarSigner.java (verifyJars): Continue with other jars if the first jar can't be used.
* PR778: Jar download and server certificate verification deadlockDeepak Bhole2011-10-271-2/+10
|
* PR804: javaws launcher incorrectly handles file names with spacesOmair Majid2011-10-251-0/+7
| | | | | | | | | 2011-10-25 Omair Majid <[email protected]> PR804: javaws launcher incorrectly handles file names with spaces * NEWS: Update. * launcher/javaws.in: Use bash arrays to store arguments to handle filenames with spaces correctly.
* added reproducer for pr788Jiri Vanek2011-10-241-0/+13
|
* sun.misc.BASE64Encoder replaced by internal implementationJiri Vanek2011-10-171-0/+14
|
* added missing directory "signed" with its filesJiri Vanek2011-10-031-0/+12
|
* PR618: Can't install OpenDJ, JavaWebStart fails with Input stream is null error.Omair Majid2011-09-291-1/+12
| | | | | | | | | | | 2011-09-29 Omair Majid <[email protected]> * NEWS: Update. * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (getResource): Rename to ... (findResource): New method. (findResources): If resource can not be found, search in lazy resources. (findResourcesBySearching): New method.
* Make getMainClass()'s return value consistent for AppletDesc and ApplicationDescOmair Majid2011-09-281-0/+11
| | | | | | | | | | | | | 2011-09-28 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/AppletDesc.java (getMainClass): Clarify the return value in javadoc. * netx/net/sourceforge/jnlp/Launcher.java (createApplet, createAppletObject): Do not replace '/' with '.'. * netx/net/sourceforge/jnlp/PluginBridge.java (PluginBridge): Ensure that the class name is in the dot-separated from. * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (checkForMain): Ensure that the name is an exact match.
* PR794: IcedTea-Web does not work if a Web Start app jar has a Class-PathDeepak Bhole2011-09-281-0/+11
| | | | element in the manifest.
* Add support for client authentication certificatesLars Herschke2011-09-261-0/+16
| | | | | | | | | | | | | | | | | | 2011-09-26 Lars Herschke <[email protected]> * netx/net/sourceforge/jnlp/resources/Messages.properties: Add CVExportPasswordMessage, CVImportPasswordMessage and CVPasswordTitle. * netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java (initialize): Initialize SSLContext with the user's client certificates. * netx/net/sourceforge/jnlp/security/CertificateUtils.java (addPKCS12ToKeyStore, addPKCS12ToKeyStore, dumpPKCS12): New methods. * netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java (getPasswords): New method. (ImportButtonListener.actionPerformed): Import client certificates in PKCS12 format. (ExportButtonListener.actionPerformed): Export client certificates in PKCS12 format.
* RH738814: Access denied at ssl handshakeOmair Majid2011-09-231-0/+9
| | | | | | | | | | | | | | It turns out that TrustManager.checkTrusted() could be called by untrusted code. In such a case, we should still show a warning to the user, and not throw a SecurityException instead. 2011-09-23 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/security/SecurityDialogs.java (showCertWarningDialog): Add a javadoc comment. * netx/net/sourceforge/jnlp/security/VariableX509TrustManager.java (askUser): Wrap the call to showCertWarningDialog in a doPrivileged block.
* PR788: Elluminate Live! is not workingOmair Majid2011-09-221-0/+8
| | | | | | | | | | 2011-09-22 Omair Majid <[email protected]> PR788: Elluminate Live! is not working * NEWS: Update. * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (checkForMain): If localFile is null (JAR couldn't be downloaded), try to continue, rather than allowing the exception to cause an abort.
* PR766 javaws fails to parse an <argument> node that contains CDATAOmair Majid2011-09-211-0/+6
| | | | | | | | 2011-09-21 Omair Majid <[email protected]> PR766: javaws fails to parse an <argument> node that contains CDATA * netx/net/sourceforge/nanoxml/XMLElement.java (sanitizeInput): Do not remove CDATA sections along with comments.