X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FHelp.java;fp=src%2Fjalview%2Fgui%2FHelp.java;h=658b34fbbad3ce98152659f054b59d1d947db972;hb=b06bbffef5e94fc208cf440590fb0333c40fe71e;hp=8bd01ea42916fa907c0249ae3426b932663588be;hpb=392bd8b22b29e49caab9d8053ac3cf0989f77fe4;p=jalview.git diff --git a/src/jalview/gui/Help.java b/src/jalview/gui/Help.java index 8bd01ea..658b34f 100644 --- a/src/jalview/gui/Help.java +++ b/src/jalview/gui/Help.java @@ -20,11 +20,7 @@ */ package jalview.gui; -import jalview.util.BrowserLauncher; -import jalview.util.Platform; - import java.awt.Point; -import java.io.IOException; import java.net.URL; import javax.help.BadIDException; @@ -32,6 +28,9 @@ import javax.help.HelpBroker; import javax.help.HelpSet; import javax.help.HelpSetException; +import jalview.util.BrowserLauncher; +import jalview.util.Platform; + /** * Utility class to show the help documentation window * @@ -42,18 +41,22 @@ public class Help private static final String HELP_PAGE_ROOT = "http://www.jalview.org/help/"; /** - * Defines selected help targets with links to inbuilt (Java) help page target, - * and externally hosted help page. Will need to be maintained manually if help - * pages are reorganised in future. + * Defines selected help targets with links to inbuilt (Java) help page + * target, and externally hosted help page. Will need to be maintained + * manually if help pages are reorganised in future. */ public enum HelpId { - Home("home", "help.html"), SequenceFeatureSettings("seqfeatures.settings", "html/features/featuresettings.html"), - StructureViewer("viewingpdbs", "html/features/viewingpdbs.html"), PdbFts("pdbfts", "html/features/pdbsequencefetcher.html#pdbfts"), - UniprotFts("uniprotfts", "html/features/uniprotsequencefetcher.html#uniprotfts"); + Home("home", "help.html"), + SequenceFeatureSettings("seqfeatures.settings", + "html/features/featuresettings.html"), + StructureViewer("viewingpdbs", "html/features/viewingpdbs.html"), + PdbFts("pdbfts", "html/features/pdbsequencefetcher.html#pdbfts"), + UniprotFts("uniprotfts", + "html/features/uniprotsequencefetcher.html#uniprotfts"); private String id; - + private String path; private HelpId(String hepLoc, String htmlPath) @@ -94,12 +97,16 @@ public class Help { if (Platform.isJS()) { + /* try { - BrowserLauncher.openURL(HELP_PAGE_ROOT + id.getPath()); + */ + BrowserLauncher.openURL(HELP_PAGE_ROOT + id.getPath()); + /* } catch (IOException e) { } + */ } else /**