aboutsummaryrefslogtreecommitdiffstats
path: root/netx
Commit message (Collapse)AuthorAgeFilesLines
...
* added XrustAll optionJiri Vanek2011-09-224-0/+22
|
* RH734081: Javaws cannot use proxy settings from FirefoxDeepak Bhole2011-08-291-2/+2
| | | | | | | | | | Based on patch from Lukas Zachar <lzachar at redhat dot com> 2011-08-29 Deepak Bhole <[email protected]> * netx/net/sourceforge/jnlp/browser/FirefoxPreferencesFinder.java (find): Only process Profile sections. Do not throw an exception if a Default= line is not found since it is not guaranteed to exist.
* Fix PR769: IcedTea-Web does not work with some ssl sites with OpenJDK7Deepak Bhole2011-08-231-8/+12
|
* Checks and verifies a signed JNLP file at the launch of the application. A ↵Saad Mohammad2011-08-226-5/+346
| | | | signed JNLP warning is displayed if appropriate.
* Update UI for SecurityDialog.Danesh Dadachanji2011-08-173-5/+16
|
* PR742: IcedTea-Web checks certs only upto 1 level deep before declaring them ↵Danesh Dadachanji2011-08-111-1/+7
| | | | untrusted.
* MergeDeepak Bhole2011-08-091-5/+34
|\
| * PR771: IcedTea-Web certificate verification code does not use the right APIDeepak Bhole2011-08-091-5/+34
| |
* | PR765: JNLP file with all resource jars marked as 'lazy' fails to validate ↵Saad Mohammad2011-08-091-0/+4
|/ | | | signature and stops the launch of application
* PR768: Signed applets/Web Start apps don't work with OpenJDK7 and upDeepak Bhole2011-08-031-1/+1
|
* Minor changes in algorithm that compares signed JNLP application/templateSaad Mohammad2011-08-032-54/+56
|
* RH718170, CVE-2011-2514: Java Web Start security warning dialog manipulationDeepak Bhole2011-07-152-3/+6
|
* RH718164, CVE-2011-2513: Home directory path disclosure to untrusted ↵Deepak Bhole2011-07-154-11/+230
| | | | applications
* Added algorithm that compares signed JNLP application/template file with ↵Saad Mohammad2011-07-193-0/+318
| | | | launching JNLP file (with test case and its resources)
* Make itweb-settings resizableAndrew Su2011-06-143-17/+46
|
* Close the splashscreen in case of error (not just successful launch).Denis Lila2011-06-101-10/+21
|
* Fix undisposed window problem. It was causing AWT to never shut down.Denis Lila2011-06-101-25/+35
|
* Allows trusted application to access PersistenceService data from other hosts.Saad Mohammad2011-06-092-34/+56
|
* Enable passing applet parameters through JNLP files.Andrew Su2011-06-083-8/+52
|
* Change jar resource names to be stored in HashSet instead of String[].Andrew Su2011-06-081-7/+14
|
* make splash screen a JDialog instead of a JFrameOmair Majid2011-05-311-2/+2
| | | | | | | | | | We dont want the splash screen to be resized. Tiling window managers will resize JFrames but not JDialogs. 2011-05-31 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/JNLPSplashScreen.java: Subclass JDialog, not JFrame.
* Check if cache directory is writable from itweb-settingsAndrew Su2011-05-301-2/+21
|
* Fix cache to allow redownload on next run when javaws is killedAndrew Su2011-05-301-1/+3
|
* Remove non-standard option from itweb-settings.Andrew Su2011-05-302-6/+2
|
* Fix PR723: AccessControlException while downloading resourceDeepak Bhole2011-05-271-2/+16
|
* PR724: Possible NullPointerException in ↵Omair Majid2011-05-271-0/+3
| | | | | | | | | | JNLPClassLoader.getClassPathsFromManifest 2011-05-27 Omair Majid <[email protected]> * NEWS: Update. * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java (getClassPathsFromManifest): Check for possible nulls and empty strings.
* Fix PR727: Split conditional to removed duplicate entries in cache.Andrew Su2011-05-271-4/+6
|
* Fix PR726. Create recently_used on startup.Andrew Su2011-05-251-6/+13
|
* Fix sorting in itw-settings' cache viewerAndrew Su2011-05-101-1/+26
|
* Fix useless thread group creation.Denis Lila2011-05-031-5/+14
|
* Fix appcontext related plugin bugs.Denis Lila2011-04-294-122/+79
|
* Update recently_used when deleting cache entries with itw-settingsAndrew Su2011-04-201-0/+17
|
* Load classes from jars listed on the Class-Path in manifestOmair Majid2011-04-201-27/+97
| | | | | An applet the demonstrates the bug is located at http://jung.sourceforge.net/applet/showlayouts2.html
* PR687: BasicService.getCodeBase() returns null for IcedTea6 1.9.7 + OSGIOmair Majid2011-04-201-16/+40
| | | | | | | | The patch modifies how we try to find the JNLPClassLoader (from which we find the ApplicationInstance). We first search the Context ClassLoader (and it's parents) and then we search the ClassLoader for the classes on the stack (and their parents). The Launcher always sets the Context ClassLoader of the applications/applets it launches.
* Update itw-setting's cache viewer to display new directory structureAndrew Su2011-04-201-10/+12
|
* Allow delete only when plugin or javaws is not runningAndrew Su2011-04-201-0/+30
|
* Enforce cache size limitAndrew Su2011-04-201-17/+62
|
* Unhide components for setting cache size limit in itw-settingsAndrew Su2011-04-201-20/+18
|
* Store lru after modifying the entriesAndrew Su2011-04-201-0/+1
|
* Changed cache to prevent jar overwriting when update happens.Andrew Su2011-04-188-56/+573
|
* Fix concurrent classloading problem in JNLPClassLoader.loadClass.Denis Lila2011-04-182-3/+4
|
* Make CacheDirectory final and not instantiable.Andrew Su2011-04-131-1/+5
|
* Restrict port fields in itw-settings to accept only valid port numbers.Andrew Su2011-04-063-5/+46
|
* Fix concurrent access problem to downloadOptions.Denis Lila2011-04-051-4/+3
|
* Let launcher handle parsing exceptionsOmair Majid2011-03-314-97/+232
| | | | | | | | | | | | | | | | | | | | | | 2011-03-31 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/Launcher.java: Add parserSettings and extra. (setParserSettings): New method. (setInformationToMerge): New method. (launch(JNLPFile,Container)): Call mergeExtraInformation. (launch(URL,boolean)): New method. (mergeExtraInformation): New method. (addProperties, addParameters, addArguments): Moved here from Boot.java (fromUrl): New method. * netx/net/sourceforge/jnlp/ParserSettings.java: New file. * netx/net/sourceforge/jnlp/resources/Messages.properties: Remove BArgNA, BParamNA. * netx/net/sourceforge/jnlp/runtime/Boot.java (run): Do not parse JNLP file. Pass ParserSettings and other command line additions to launcher. (getFile): Rename to... (getFileLocation): New method. (addProperties, addParameters, addArguments): Move to Launcher.java.
* Fix typo in RCantRename in Messages.propertiesOmair Majid2011-03-301-1/+1
| | | | | | | 2011-03-30 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/resources/Messages.properties: Fix typo in RCantRename.
* Update location of settings file in javaws man pageOmair Majid2011-03-301-1/+1
| | | | | | | 2011-03-30 Omair Majid <[email protected]> * netx/javaws.1: Fix FILES section to point to ~/.icedtea/deployment.properties.
* Add a new LaunchHandler to show error messages when starting applicationsOmair Majid2011-03-308-24/+301
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This LaunchHandler is only used when not running in headless mode. This launchHandler is also responsible for showing the splash screen. 2011-03-30 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/LaunchHandler.java (launchInitialized, launchStarting): New methods. * netx/net/sourceforge/jnlp/DefaultLaunchHandler.java (launchInitialized, launchStarting): New methods. No-op implementation. (printMessage): Make it static. * netx/net/sourceforge/jnlp/GuiLaunchHandler.java: New file. (launchCompleted, launchError, launchStarting, launchInitialized), (launchWarning, validationError): New methods. * netx/net/sourceforge/jnlp/Launcher.java (launchApplication): Invoke handler.launchInitialized and handler.launchStarting instead of showing a splash screen directly. * netx/net/sourceforge/jnlp/resources/Messages.properties: Add ButShowDetails, ButHideDetails and Error. * netx/net/sourceforge/jnlp/runtime/Boot.java (run): Do not exit on error. * netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java (initialize): Set handler to GuiLaunchHandler if not running in headless mode. * netx/net/sourceforge/jnlp/util/BasicExceptionDialog.java: New file. (exceptionToString, show): New methods.
* Remove redundant if from JNLPFile.javaDenis Lila2011-03-291-2/+1
|
* Fixed classloader sharing rules for appletsDeepak Bhole2011-03-281-4/+27
|