Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Introduced logging bottleneck | Jiri Vanek | 2013-09-25 | 119 | -1138/+2584 | |
| | ||||||
* | PR1474: Can't get javaws to use SOCKS proxy | Omair Majid | 2013-09-24 | 5 | -19/+51 | |
| | | | | | | | | 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 | 8 | -15/+363 | |
| | | | | | | | | | | 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 | 5 | -14/+225 | |
| | | | | | | Also remove the references to JNLPFile from InformationDesc. This makes it much easier to instantiate InformationDesc for tests. | |||||
* | adding xsl style for generating text summary after reproducers or unit tests run | Jana Fabrikova | 2013-09-19 | 3 | -0/+74 | |
| | ||||||
* | Removed java 1.3 comaptible (redundant) code from ParseException | Jiri Vanek | 2013-09-18 | 2 | -42/+10 | |
| | | | | netx/net/sourceforge/jnlp/ParseException.java: (ParseException) modified to support super call only, (getCause) and both (printStackTrace) removed | |||||
* | Fixed minor typo in JEditorPaneBasedExceptionDialogTest (mus -> must) ↵ | Jiri Vanek | 2013-09-18 | 1 | -4/+4 | |
| | | | | | | severla times "message from dialog mus be same as pattern" -> "message from dialog must be same as pattern" | |||||
* | Fix ResourcesTest to not assert the existence of ~/.mozilla/plugins/ directory | Andrew Azores | 2013-09-16 | 2 | -47/+39 | |
| | ||||||
* | Use Arrays.asList instead of custom implementation | Omair Majid | 2013-09-16 | 3 | -26/+21 | |
| | | | | | | | | | | | 2013-09-16 Omair Majid <[email protected]> * tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPClassLoaderTest.java (toList): Remove. (checkForMainFileLeakTest): Use Arrays.asList. * tests/netx/unit/net/sourceforge/jnlp/security/appletextendedsecurity/UnsignedAppletTrustConfirmationTest.java (toList): Remove. (testToRelativePaths): Use Arrays.asList. | |||||
* | Makefile.am: returned modified (EXTRA_DIST) variable. It is enriched for ↵ | Jiri Vanek | 2013-09-16 | 2 | -0/+9 | |
| | | | | netx-dist-tests-whitelist and NEW_LINE_IFS to enable reproducers tests in dist tarball | |||||
* | CVE-2012-4540, RH869040: Heap-based buffer overflow after triggering event ↵ | Jiri Vanek | 2013-09-16 | 3 | -15/+12 | |
| | | | | attached to applet | |||||
* | Added new utility class for retrieving localized messages for reproducers. | Andrew Azores | 2013-09-13 | 4 | -13/+191 | |
| | ||||||
* | Made temporary files location JFileChooser open at the currently specified ↵ | Jacob Wisor | 2013-09-11 | 6 | -5/+34 | |
| | | | | | | | | | 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 | 5 | -27/+94 | |
| | | | | | | | | | | | | | | | | | | | | | | 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 | 3 | -41/+64 | |
| | ||||||
* | merging | Andrew Azores | 2013-09-04 | 10 | -158/+436 | |
|\ | ||||||
| * | netx/net/sourceforge/jnlp/Launcher.java - Fix applet context being null ↵ | Jiri Vanek | 2013-09-04 | 2 | -0/+7 | |
| | | | | | | | | during applet init & start, by Adam Domurad <[email protected]> | |||||
| * | Test case for PR1533 | Omair Majid | 2013-08-30 | 2 | -0/+66 | |
| | | | | | | | | | | | | | | | | | | | | | | Add a unit test that checks the behaviour of JNLPFile when combining and filtering properties. 2013-08-29 Omair Majid <[email protected]> * tests/netx/unit/net/sourceforge/jnlp/JNLPFileTest.java (testPropertyRestrictions): New method. Check that properties in resources are are combined and filtered as approp | |||||
| * | PR1058: XFileOpenService openMultiFileDialog ClassCastException | Omair Majid | 2013-08-30 | 2 | -5/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
| * | Do not wait for applet initialization when binding Java applets for NPAPI. | Adam Domurad | 2013-08-27 | 7 | -153/+350 | |
| | | ||||||
* | | Extracted integer response casting/handling logic in SecurityDialogs to new ↵ | Andrew Azores | 2013-09-04 | 3 | -39/+100 | |
|/ | | | | method, added test for this method | |||||
* | Spawn Java side during C++ unit tests. Many new tests. | Adam Domurad | 2013-08-23 | 15 | -87/+835 | |
| | ||||||
* | Refactor plugin data creation. | Adam Domurad | 2013-08-23 | 3 | -80/+64 | |
| | ||||||
* | Fix PR1271: icedtea-web does not handle javascript:-protocol URLs | Adam Domurad | 2013-08-19 | 8 | -6/+205 | |
| | ||||||
* | Fix and tests for PR974, extension JNLPs unavailable when embedded in HTML ↵ | Andrew Azores | 2013-08-15 | 12 | -17/+515 | |
| | | | | applet tags | |||||
* | Removed HTTP 400 BAD REQUEST as it was unneeded (test server won't be ↵ | Andrew Azores | 2013-08-13 | 3 | -10/+6 | |
| | | | | checking anyway) | |||||
* | Refactored TinyHttpdImpl. Changed constructor, reflect this in ↵ | Andrew Azores | 2013-08-12 | 5 | -154/+338 | |
| | | | | ServerLauncher. Unit tests moved out of ServerAccessTest into new TinyHttpdImplTest. New unit tests added. | |||||
* | ignore generated HTML files (from AboutDialog) | Andrew Azores | 2013-08-01 | 2 | -0/+8 | |
| | ||||||
* | Fix many memory leaks due to utf8fromidentifier misuse | Adam Domurad | 2013-07-30 | 9 | -129/+163 | |
| | ||||||
* | tests/reproducers/simple/simpletest1/resources/favicon.ico: new file hould ↵ | Jiri Vanek | 2013-07-30 | 2 | -0/+8 | |
| | | | | | | be served by test server in reproducers run and so prevent FNF exception ChangeLog: fixed few entries below (added emty line between author and body) | |||||
* | Cleaned up "throws IOException" from HTMLPanel constructor and try/catches ↵ | Andrew Azores | 2013-07-25 | 6 | -29/+25 | |
| | | | | elsewhere which handled this | |||||
* | Added java.vm.name read permission to fix Rhino evaluation of proxy PAC ↵ | Andrew Azores | 2013-07-22 | 2 | -0/+12 | |
| | | | | (RH982558) | |||||
* | IcedTea-Web is now following XDG .config and .cache specification(RH947647) | Jiri Vanek | 2013-07-18 | 18 | -66/+1440 | |
| | ||||||
* | About dialogue made accessible from plugin | Jiri Vanek | 2013-07-17 | 7 | -14/+109 | |
| | ||||||
* | about dialogue now available from itw-settings | Jiri Vanek | 2013-07-17 | 3 | -3/+35 | |
| | ||||||
* | added some missing de and pl strings | Jiri Vanek | 2013-07-17 | 5 | -2/+29 | |
| | ||||||
* | Added entry in NEWS about new About dialog. Fixed localization of News tab ↵ | Andrew Azores | 2013-07-12 | 3 | -1/+8 | |
| | | | | in AboutDialog.java | |||||
* | Refactored HTML processing out of Makefile.am into html-gen.sh. | Andrew Azores | 2013-07-11 | 4 | -60/+154 | |
| | ||||||
* | Implemented new about dialogue (by Andrew Azores). Andrew added to authors | Jiri Vanek | 2013-07-10 | 15 | -393/+422 | |
| | ||||||
* | Fix potential NPE on GetValue message | Adam Domurad | 2013-06-28 | 2 | -1/+7 | |
| | ||||||
* | Fixed autogen permissions back to 775 | Jiri Vanek | 2013-06-27 | 1 | -0/+0 | |
| | ||||||
* | acinclude.m4 IT_CHECK_FOR_TAGSOUP is now correctly setting HAVE_TAGSOUP when ↵ | Jiri Vanek | 2013-06-25 | 2 | -1/+6 | |
| | | | | it is not found | |||||
* | JNLP file is now re-downloading only if is local and have href. Real couse ↵ | Jiri Vanek | 2013-06-24 | 10 | -107/+325 | |
| | | | | of PR1473 | |||||
* | IcedTeaScriptableJavaObject simplifications | Adam Domurad | 2013-06-21 | 3 | -170/+100 | |
| | ||||||
* | Move 'get_scriptable_java_package_object' and 'get_scriptable_java_object' ↵ | Adam Domurad | 2013-06-21 | 6 | -39/+50 | |
| | | | | into their correct respective classes. | |||||
* | Fix memory leak due to allocated NPClass | Adam Domurad | 2013-06-21 | 2 | -45/+59 | |
| | ||||||
* | More unit tests for scriptable object creation, destruction | Adam Domurad | 2013-06-21 | 8 | -21/+188 | |
| | ||||||
* | Added tagsup (optional dependence) as sanitizer for (possibly) invalid xml files | Jiri Vanek | 2013-06-21 | 23 | -332/+698 | |
| | ||||||
* | Removed out-of date Boot13 class | Jiri Vanek | 2013-06-20 | 4 | -101/+7 | |
| | ||||||
* | Made it work with OpenJDK build 25 by creating application as soon as possible | Jiri Vanek | 2013-06-20 | 4 | -1/+21 | |
| |