From fa4039e4fc680920bc53528c4a76e09210f1dcd6 Mon Sep 17 00:00:00 2001 From: Patrick Scott Date: Tue, 16 Feb 2010 16:15:55 -0500 Subject: [PATCH] Do not include the fragement identifier in the path. Bug: 2435741 --- core/java/android/net/WebAddress.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/java/android/net/WebAddress.java b/core/java/android/net/WebAddress.java index 2d078c1829641..fa13894691af0 100644 --- a/core/java/android/net/WebAddress.java +++ b/core/java/android/net/WebAddress.java @@ -58,7 +58,8 @@ public class WebAddress { /* authority */ "(?:([-A-Za-z0-9$_.+!*'(),;?&=]+(?:\\:[-A-Za-z0-9$_.+!*'(),;?&=]+)?)@)?" + /* host */ "([-" + GOOD_IRI_CHAR + "%_]+(?:\\.[-" + GOOD_IRI_CHAR + "%_]+)*|\\[[0-9a-fA-F:\\.]+\\])?" + /* port */ "(?:\\:([0-9]+))?" + - /* path */ "(\\/?.*)?"); + /* path */ "(\\/?[^#]*)?" + + /* anchor */ ".*"); /** parses given uriString. */ public WebAddress(String address) throws ParseException {