Support PAC proxies.

What a horrible wart lingering from the early days of the Internet. Note to
future designers: please do not express configuration using a Turing complete
language.

Thanks jenriq for getting the ball rolling on this.

Closes #196.
This commit is contained in:
Michael Bayne
2019-05-28 15:56:23 -07:00
parent 490420852e
commit 6af6081648
5 changed files with 391 additions and 8 deletions
@@ -822,8 +822,7 @@ public class Application
* Returns a URL from which the specified path can be fetched. Our application base URL is
* properly versioned and combined with the supplied path.
*/
public URL getRemoteURL (String path)
throws MalformedURLException
public URL getRemoteURL (String path) throws MalformedURLException
{
return new URL(_vappbase, encodePath(path));
}