{
Arg a = av.getArg();
SubVals sv = av.getSubVals();
- String openFile = av.getValue();
+ String openFile0 = av.getValue();
+ String openFile = HttpUtils.equivalentJalviewUrl(openFile0);
+ if (openFile == null)
+ openFile = openFile0;
if (openFile == null)
continue;
{
af = fileLoader.LoadFileWaitTillLoaded(openFile, protocol,
format);
+ if (!openFile.equals(openFile0))
+ {
+ af.setTitle(openFile0);
+ }
} catch (Throwable thr)
{
xception = true;
}
String scheme = jalviewUri.getScheme();
String host = jalviewUri.getHost();
- if (host != null && host.length() > 0)
+ if (host != null && host.length() > 0
+ || scheme.substring(7).startsWith("http"))
{
URI newUri;
try