X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2FUrlLink.java;h=c0cf82132fc8665c6116bf82b4ce97ea6c98a561;hb=fd78187d73394a2a6358ba8666ba409ee51b59d5;hp=80a4380c43e81e376b583f4a570455570af42a42;hpb=865a855a4ca87eadb3e5ff284ed32ed307d9c34b;p=jalview.git diff --git a/src/jalview/util/UrlLink.java b/src/jalview/util/UrlLink.java index 80a4380..c0cf821 100644 --- a/src/jalview/util/UrlLink.java +++ b/src/jalview/util/UrlLink.java @@ -1,35 +1,38 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.util; import java.util.Vector; +import com.stevesoft.pat.Regex; + public class UrlLink { /** * helper class to parse URL Link strings taken from applet parameters or - * jalview properties file using the com.stevesoft.pat.Regex implementation. - * Jalview 2.4 extension allows regular expressions to be used to parse ID - * strings and replace the result in the URL. Regex's operate on the whole ID - * string given to the matchURL method, if no regex is supplied, then only - * text following the first pipe symbol will be susbstituted. Usage - * documentation todo. + * jalview properties file using the Regex implementation. Jalview 2.4 + * extension allows regular expressions to be used to parse ID strings and + * replace the result in the URL. Regex's operate on the whole ID string given + * to the matchURL method, if no regex is supplied, then only text following + * the first pipe symbol will be susbstituted. Usage documentation todo. */ private String url_suffix, url_prefix, target, label, regexReplace; @@ -83,7 +86,7 @@ public class UrlLink regexReplace = link.substring(psqid + 14, p); try { - com.stevesoft.pat.Regex rg = com.stevesoft.pat.Regex.perlCode("/" + Regex rg = Regex.perlCode("/" + regexReplace + "/"); if (rg == null) { @@ -198,8 +201,7 @@ public class UrlLink { if (regexReplace != null) { - com.stevesoft.pat.Regex rg = com.stevesoft.pat.Regex.perlCode("/" - + regexReplace + "/"); + Regex rg = Regex.perlCode("/" + regexReplace + "/"); if (rg.search(idstring)) { int ns = rg.numSubs();