OSDN Git Service

ADD Java Web Start deployment HTML file.
authorTakuya Ono <takuya-o@users.sourceforge.jp>
Mon, 9 Aug 2010 06:53:09 +0000 (15:53 +0900)
committerTakuya Ono <takuya-o@users.sourceforge.jp>
Mon, 9 Aug 2010 06:53:09 +0000 (15:53 +0900)
jws/index.html [new file with mode: 0644]

diff --git a/jws/index.html b/jws/index.html
new file mode 100644 (file)
index 0000000..fd78409
--- /dev/null
@@ -0,0 +1,41 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+         "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<title>Startup "Mail Destination Confirm Program"</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<body onload="launchMdc()" >
+メール送信先確認プログラム起動します。
+<script src="http://java.com/js/deployJava.js" type="text/javascript"></script>
+<script LANGUAGE="JavaScript" type="text/javascript">
+<!--
+  function launchMdc() {
+    var jnlp = 'mdc2.jnlp';
+    if (deployJava.returnPage == null) {
+      // if there is an install, come back and run the jnlp file
+      deployJava.returnPage = jnlp;
+    }
+    if (!deployJava.isWebStartInstalled('1.6')) {
+      if (deployJava.installLatestJRE()) {
+        if (deployJava.launch(jnlp)) {}
+      }
+    } else {
+        if (deployJava.launch(jnlp)) {}
+    }
+  }
+  var url = "mdc2.jnlp";
+  deployJava.createWebStartLaunchButton(url, '1.6');
+//-->
+</script>
+
+<noscript>
+<P>正しいJava環境がインストールされているか確認して、
+Java環境自動的にインストールするためには、
+JavaScriptをOnにする必要があります。</P>
+</noscript>
+
+<P>うまく起動しない場合には、
+正しいJava6の環境がインストールされている事を確認して
+<A HREF="mdc2.jnlp">こちら</A>を試してみてください。</P>
+
+</body>
+</html>