Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix for PR1204, handling of query strings and absolute paths. | Andrew Azores | 2013-09-26 | 1 | -19/+21 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Absolute paths in resource URLs are correctly handled when appended to host URLs and URL query strings are not removed. * netx/net/sourceforge/jnlp/cache/ResourceUrlCreator.java: (getVersionedUrlUsingQuery) renamed to getVersionedUrl, refactored construction of URL * plugin/icedteanp/java/sun/applet/PluginAppletViewer.java: (requestPluginProxyInfo) extracted proxy URI logic. (processProxyUri) new method for finding proxy URIs, handles absolute resource paths correctly * tests/netx/unit/net/sourceforge/jnlp/cache/ResourceUrlCreatorTest.java: added tests for ResourceUrlCreator#getVersionedUrl * tests/netx/unit/sun/applet/PluginAppletViewerTest.java: added tests for PluginAppletViewer.processProxyUri * tests/reproducers/simple/AbsolutePathsAndQueryStrings/resources/AbsolutePathsAndQueryStrings.html: new reproducer checks that absolute paths and query strings in resource URLs are properly handled, and caching still works * tests/reproducers/simple/AbsolutePathsAndQueryStrings/resources/AbsolutePathsAndQueryStrings.jnlp: same * tests/reproducers/simple/AbsolutePathsAndQueryStrings/testcases/AbsolutePathsAndQueryStrings.java: same | |||||
* | Introduced logging bottleneck | Jiri Vanek | 2013-09-25 | 96 | -1001/+1583 | |
| | ||||||
* | PR1474: Can't get javaws to use SOCKS proxy | Omair Majid | 2013-09-24 | 2 | -12/+16 | |
| | | | | | | | | If there is a SOCKS proxy specified, use it for https, http, and ftp protocols too (as a fallback). 'sameProxy' now affects the https, http and ftp protocols, but not the socket protocol. | |||||
* | Unit tests for JNLPProxySelector | Omair Majid | 2013-09-23 | 4 | -14/+13 | |
| | | | | | | | | | | This contains one functional change: - String host = uri.getSchemeSpecificPart().split(":")[0]; + String host = uri.getHost(); Given the URI of "socket://example.org", the first line evaluates to "//example.org", while the second one (correctly) evaluates to "example.org". | |||||
* | Unit test for InformationDesc | Omair Majid | 2013-09-20 | 3 | -14/+5 | |
| | | | | | | Also remove the references to JNLPFile from InformationDesc. This makes it much easier to instantiate InformationDesc for tests. | |||||
* | Removed java 1.3 comaptible (redundant) code from ParseException | Jiri Vanek | 2013-09-18 | 1 | -42/+3 | |
| | | | | netx/net/sourceforge/jnlp/ParseException.java: (ParseException) modified to support super call only, (getCause) and both (printStackTrace) removed | |||||
* | Made temporary files location JFileChooser open at the currently specified ↵ | Jacob Wisor | 2013-09-11 | 5 | -5/+16 | |
| | | | | | | | | | location Made temporary files location JFileChooser display a helpful title Removed misleading "All Files" file filter from JFileChooser Added new message to resources for JFileChooser's choose button Fixed a few inconsistent messages in resource files | |||||
* | PR1533: Inherit jnlp.packEnabled and jnlp.versionEnabled like other properties | Omair Majid | 2013-09-09 | 3 | -27/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | Treat jnlp.packEnabled and jnlp.versionEnabled just like other properties that can be set in one resource element and inherited/filtered in others. 2013-09-09 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/JNLPFile.java (getDownloadOptionsForJar): Rename to ... (getDownloadOptions): New method. Look up jnlp.packEnabled and jnlp.versionEnabled in any resources element. * netx/net/sourceforge/jnlp/PluginBridge.java (getDownloadOptionsForJar): Rename to ... (getDownloadOptions): New method. * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (initializeResources): Invoke file.getDownloadResources. (getDownloadOptionsForJar): Remove. * tests/netx/unit/net/sourceforge/jnlp/JNLPFileTest.java (testDownloadOptionsAppliedEverywhere): New method. (testDownloadOptionsFilteredOut): New method. | |||||
* | Fixed "could not clear cache" message and cache location in CacheReproducer | Andrew Azores | 2013-09-04 | 1 | -1/+1 | |
| | ||||||
* | merging | Andrew Azores | 2013-09-04 | 2 | -5/+8 | |
|\ | ||||||
| * | netx/net/sourceforge/jnlp/Launcher.java - Fix applet context being null ↵ | Jiri Vanek | 2013-09-04 | 1 | -0/+2 | |
| | | | | | | | | during applet init & start, by Adam Domurad <[email protected]> | |||||
| * | PR1058: XFileOpenService openMultiFileDialog ClassCastException | Omair Majid | 2013-08-30 | 1 | -5/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of trying to create a privileged proxy for the FileContents[] array, simply create a privileged proxy for each FileContents instance and return an array of them. 2013-08-29 Omair Majid <[email protected]> PR1058 * netx/net/sourceforge/jnlp/services/XFileOpenService.java (openMultiFileDialog): Create a privileged proxy for each FileContents instance and return an array of them. | |||||
* | | Extracted integer response casting/handling logic in SecurityDialogs to new ↵ | Andrew Azores | 2013-09-04 | 1 | -39/+22 | |
|/ | | | | method, added test for this method | |||||
* | Fix and tests for PR974, extension JNLPs unavailable when embedded in HTML ↵ | Andrew Azores | 2013-08-15 | 3 | -17/+47 | |
| | | | | applet tags | |||||
* | Cleaned up "throws IOException" from HTMLPanel constructor and try/catches ↵ | Andrew Azores | 2013-07-25 | 5 | -29/+13 | |
| | | | | elsewhere which handled this | |||||
* | Added java.vm.name read permission to fix Rhino evaluation of proxy PAC ↵ | Andrew Azores | 2013-07-22 | 1 | -0/+7 | |
| | | | | (RH982558) | |||||
* | IcedTea-Web is now following XDG .config and .cache specification(RH947647) | Jiri Vanek | 2013-07-18 | 8 | -30/+253 | |
| | ||||||
* | About dialogue made accessible from plugin | Jiri Vanek | 2013-07-17 | 5 | -11/+88 | |
| | ||||||
* | about dialogue now available from itw-settings | Jiri Vanek | 2013-07-17 | 2 | -3/+27 | |
| | ||||||
* | added some missing de and pl strings | Jiri Vanek | 2013-07-17 | 4 | -2/+15 | |
| | ||||||
* | Added entry in NEWS about new About dialog. Fixed localization of News tab ↵ | Andrew Azores | 2013-07-12 | 1 | -1/+1 | |
| | | | | in AboutDialog.java | |||||
* | Implemented new about dialogue (by Andrew Azores). Andrew added to authors | Jiri Vanek | 2013-07-10 | 8 | -61/+360 | |
| | ||||||
* | JNLP file is now re-downloading only if is local and have href. Real couse ↵ | Jiri Vanek | 2013-06-24 | 2 | -104/+20 | |
| | | | | of PR1473 | |||||
* | Added tagsup (optional dependence) as sanitizer for (possibly) invalid xml files | Jiri Vanek | 2013-06-21 | 11 | -174/+427 | |
| | ||||||
* | Removed out-of date Boot13 class | Jiri Vanek | 2013-06-20 | 2 | -101/+0 | |
| | ||||||
* | Made it work with OpenJDK build 25 by creating application as soon as possible | Jiri Vanek | 2013-06-20 | 2 | -1/+6 | |
| | ||||||
* | Silenced deployment.properties and zero size applet exceptions with tests | Jiri Vanek | 2013-06-06 | 1 | -1/+6 | |
| | ||||||
* | Fix PR1465 - java.io.FileNotFoundException while trying to download a JAR file | Adam Domurad | 2013-06-05 | 1 | -1/+14 | |
| | ||||||
* | more detailed hint for CCannotClearCache | Jiri Vanek | 2013-06-04 | 1 | -1/+1 | |
| | ||||||
* | Add NativeLibraryStorageTEst | Adam Domurad | 2013-06-03 | 2 | -7/+23 | |
| | ||||||
* | Extract NativeLibraryStorage class from JNLPClassLoader | Adam Domurad | 2013-06-03 | 2 | -126/+175 | |
| | ||||||
* | Remove 'serious' from error message in splash screen. | Adam Domurad | 2013-05-29 | 1 | -2/+2 | |
| | ||||||
* | netx/net/sourceforge/jnlp/resources/Messages.properties: (CPJVMitwExec)fixed ↵ | Jiri Vanek | 2013-05-14 | 1 | -1/+1 | |
| | | | | invalid unicode character | |||||
* | Fixed indentation | Jiri Vanek | 2013-05-03 | 1 | -2/+2 | |
| | ||||||
* | Minor cleanup, fixed output from ResourceTracker and whitelist | Jiri Vanek | 2013-05-02 | 1 | -1/+1 | |
| | ||||||
* | Added default, DE and PL localization's tweeks | Jiri Vanek | 2013-05-02 | 3 | -44/+116 | |
| | ||||||
* | Fix for portalbank.no (trying get after failed head requests) and tests | Jiri Vanek | 2013-05-02 | 5 | -85/+113 | |
| | ||||||
* | Renamed cz locales to be more general | Jiri Vanek | 2013-05-02 | 1 | -0/+0 | |
| | | | | | netx/net/sourceforge/jnlp/resources/Messages_cs_CZ.properties renamed to netx/net/sourceforge/jnlp/resources/Messages_cs.properties tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java and tests/reproducers/simple/LocalesTest/testcases/LocalesTestTest.java adapted to new cz locales filename. | |||||
* | Decode local-file URLs leniently | Adam Domurad | 2013-04-26 | 2 | -4/+6 | |
| | ||||||
* | Added polish transaltion and tests to it | Jiri Vanek | 2013-04-26 | 3 | -38/+576 | |
| | | | | Also minor changes to En and De files | |||||
* | Improved and completed CZ localisation | Jiri Vanek | 2013-04-26 | 1 | -43/+140 | |
| | ||||||
* | Fixed regressed unittest and "cause", Fixed compilation under jdk6, Silenced ↵ | Jiri Vanek | 2013-04-26 | 4 | -11/+44 | |
| | | | | unittests | |||||
* | Fix a dead-lock bug that can cause Firefox to hang. | Adam Domurad | 2013-04-25 | 1 | -9/+6 | |
| | ||||||
* | Locking disabled on windows machines | Jiri Vanek | 2013-04-25 | 1 | -0/+7 | |
| | ||||||
* | Splashscreen now strip commit id from released versions | Jiri Vanek | 2013-04-25 | 1 | -2/+14 | |
| | ||||||
* | Introduce more UrlUtils functions. | Adam Domurad | 2013-04-23 | 4 | -52/+98 | |
| | ||||||
* | Ensure document-base is properly encoded | Adam Domurad | 2013-04-23 | 1 | -1/+4 | |
| | ||||||
* | Clean-up of dead & outdated parts of NetxPanel | Adam Domurad | 2013-04-23 | 1 | -28/+5 | |
| | ||||||
* | Ensure JarFile handles do not leak. | Adam Domurad | 2013-04-23 | 1 | -1/+10 | |
| | ||||||
* | JNLPClassLoader unit tests for file leaks | Adam Domurad | 2013-04-23 | 1 | -3/+3 | |
| |