diff options
author | Jiri Vanek <[email protected]> | 2013-07-10 18:31:48 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-07-10 18:31:48 +0200 |
commit | 75ee86cad9f42b975194b9870aa1decadae88d9c (patch) | |
tree | 308c6379a5e0eddd66128cbce2a79d8113eb2312 /netx/net/sourceforge/jnlp/resources | |
parent | 871e40074835623e8c3bd5d5d94227834956b077 (diff) |
Implemented new about dialogue (by Andrew Azores). Andrew added to authors
Diffstat (limited to 'netx/net/sourceforge/jnlp/resources')
-rw-r--r-- | netx/net/sourceforge/jnlp/resources/Messages.properties | 12 | ||||
-rw-r--r-- | netx/net/sourceforge/jnlp/resources/about.html | 44 | ||||
-rw-r--r-- | netx/net/sourceforge/jnlp/resources/about.jnlp | 17 | ||||
-rw-r--r-- | netx/net/sourceforge/jnlp/resources/itw_logo.png | bin | 0 -> 2191 bytes | |||
-rw-r--r-- | netx/net/sourceforge/jnlp/resources/jamIcon.jpg | bin | 0 -> 10580 bytes |
5 files changed, 56 insertions, 17 deletions
diff --git a/netx/net/sourceforge/jnlp/resources/Messages.properties b/netx/net/sourceforge/jnlp/resources/Messages.properties index d0de783..232f7d0 100644 --- a/netx/net/sourceforge/jnlp/resources/Messages.properties +++ b/netx/net/sourceforge/jnlp/resources/Messages.properties @@ -33,6 +33,13 @@ Username=Username: Value=Value Version=Version +#about dialogue +AboutDialogueTabAbout=About +AboutDialogueTabAuthors=Authors +AboutDialogueTabChangelog=Changelog +AboutDialogueTabNews=News +AboutDialogueTabGPLv2=GPLv2 + # LS - Severity LSMinor=Minor LSFatal=Fatal @@ -138,6 +145,7 @@ PBadHeapSize=Invalid value for heap size ({0}) # Runtime BLaunchAbout=Launching about window... +BLaunchAboutFailure=Was not able to launch About window BNeedsFile=Must specify a .jnlp file RNoAboutJnlp=Unable to find about.jnlp BFileLoc=JNLP file location @@ -172,6 +180,10 @@ RProxyFirefoxOptionNotImplemented=Browser proxy option "{0}" ({1}) not supported RBrowserLocationPromptTitle=Browser Location RBrowserLocationPromptMessage=Specify Browser Location RBrowserLocationPromptMessageWithReason=Specify Browser Location (the browser command "{0}" is invalid). +BAboutITW=The IcedTea-Web project provides a Free Software web browser plugin running applets written in the Java programming language and an implementation of Java Web Start, originally based on the NetX project. Visit the IcedTea-Web homepage: http://icedtea.classpath.org/wiki/IcedTea-Web . Use "man javaws" or "javaws -help" for more information. +BFileInfoAuthors=Names and email addresses of contributors to this project can be found in the file AUTHORS in the IcedTea-Web root directory. +BFileInfoCopying=The full GPLv2 license of this project can be found in the file COPYING in the IcedTea-Web root directory. +BFileInfoNews=News about releases of this project can be found in the file NEWS in the IcedTea-Web root directory. # Boot options, message should be shorter than this ----------------> BOUsage=javaws [-run-options] <jnlp file> diff --git a/netx/net/sourceforge/jnlp/resources/about.html b/netx/net/sourceforge/jnlp/resources/about.html new file mode 100644 index 0000000..73674d2 --- /dev/null +++ b/netx/net/sourceforge/jnlp/resources/about.html @@ -0,0 +1,44 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> + <head> + <title> + </title> + </head> + <body> + <center><img src="itw_logo.png" alt="IcedTea-Web Logo" width="413" height="240"></center><br> + <b>IcedTea-Web</b> provides a Free Software web browser plugin running applets + written in the Java programming language and an implementation of Java Web Start, originally based on the NetX project. + <br><br>NetX allows Java applets and applications to be downloaded over the + network, cached, and (by default) run in a secure sandbox environment. Subsequent runs of the applet + download the latest version automatically. Update and security settings, among others, can be set using the itw-settings command. + <br>IcedTea-Web also includes a plugin to <a href="http://www.java.com/en/download/testjava.jsp">enable Java applets</a> + within web browsers. + <br><br> + <h2><b> + Features of NetX: + </b></h2> + <ul> + <li><b>Modular:</b> Easily add JNLP capabilities to an application.</li> + <li><b>Saves Memory:</b> Launch programs in a shared JVM.</li> + <li><b>Fast startup:</b> Runs applications from a cache for fast starting.</li> + <li><b>Security:</b> Run any application in a sandbox or log its activities.</li> + <li><b>Auto-Update:</b> Applications can auto-update without special code.</li> + <li><b>Network Deployment:</b> Deploy to the internet, not with installers.</li> + <li><b>Open Source:</b> GNU Lesser General Public License.</li> + </ul> + Visit the <a href="http://icedtea.classpath.org/wiki/Main_Page">IcedTea project wiki</a> + or specifically the <a href="http://icedtea.classpath.org/wiki/IcedTea-Web">IcedTea-Web home</a> pages for more information. + <br>Help with common issues with IcedTea-Web can be found <a href="http://icedtea.classpath.org/wiki/IcedTea-Web#Common_Issues">here</a>. + <br><br><h2><b> + Contributing: + </b></h2> + <br> + A <a href="http://icedtea.classpath.org/wiki/DeveloperQuickStart">QuickStart</a> guide for the IcedTea project is available on the wiki. + <a href="http://icedtea.classpath.org/wiki/IcedTea-Web#Code_style">Code style</a> guidelines and + <a href="http://icedtea.classpath.org/wiki/IcedTea-Web/DevelopingWithEclipse">Eclipse setup</a> instructions for IcedTea-Web + are available as well. Patches should be accompanied by unit tests and + <a href="http://icedtea.classpath.org/wiki/Reproducers">reproducers</a> before being sent to + <a href="http://mail.openjdk.java.net/mailman/listinfo/distro-pkg-dev">the mailing list</a>. + </body> +</html> + diff --git a/netx/net/sourceforge/jnlp/resources/about.jnlp b/netx/net/sourceforge/jnlp/resources/about.jnlp deleted file mode 100644 index 44763b6..0000000 --- a/netx/net/sourceforge/jnlp/resources/about.jnlp +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<jnlp spec="1.0" href="about.jnlp" codebase=".">
- <information>
- <title>About window for NetX</title>
- <vendor>NetX</vendor>
- <homepage href="http://jnlp.sourceforge.net/netx/"/>
- <description>Displays information about NetX</description>
- <offline/>
- </information>
- <resources>
- <j2se version="1.4+"/>
- <jar href="about.jar"/>
- </resources>
- <application-desc main-class="net.sourceforge.javaws.about.Main">
- </application-desc>
-</jnlp>
-
diff --git a/netx/net/sourceforge/jnlp/resources/itw_logo.png b/netx/net/sourceforge/jnlp/resources/itw_logo.png Binary files differnew file mode 100644 index 0000000..1886f0f --- /dev/null +++ b/netx/net/sourceforge/jnlp/resources/itw_logo.png diff --git a/netx/net/sourceforge/jnlp/resources/jamIcon.jpg b/netx/net/sourceforge/jnlp/resources/jamIcon.jpg Binary files differnew file mode 100644 index 0000000..6a827c7 --- /dev/null +++ b/netx/net/sourceforge/jnlp/resources/jamIcon.jpg |