Changeset 32141


Ignore:
Timestamp:
2018-02-13T20:53:31+13:00 (6 years ago)
Author:
ak19
Message:

More changes related to GLIapplet.jnlp being renamed to GLIappWebStart

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/action/PageAction.java

    r32138 r32141  
    430430        // When an applet doesn't work in the browser, set the default display text to provide a link to the JNLP file to run with Java Web Start
    431431        // The display text will be:
    432         //      Applets don't seem to work in your browser. In place of the GLI Applet, try running its alternative <a href="applet/GLIapplet.jnlp">Java Web Start (JNLP) version</a>
     432        //      Applets don't seem to work in your browser. In place of the GLI Applet, try running its alternative <a href="applet/GLIappWebStart.jnlp">Java Web Start (JNLP) version</a>
    433433        Node default_text = doc.createTextNode("Applets don't seem to work in your browser. In place of the GLI Applet, try running its alternative ");
    434434        Element link_to_jnlp = doc.createElement("a");
    435         link_to_jnlp.setAttribute("href", "applet/GLIapplet.jnlp");
     435        link_to_jnlp.setAttribute("href", "applet/GLIappWebStart.jnlp");
    436436        Node anchor_text = doc.createTextNode("Java Web Start (JNLP) version");
    437437        link_to_jnlp.appendChild(anchor_text);     
Note: See TracChangeset for help on using the changeset viewer.