diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-04 15:11:23 -0800 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-04 15:11:23 -0800 | 
| commit | e8659e0e13c65308ad2f036dc7e7ccff0e665976 (patch) | |
| tree | 5e02e3fd563a832021065d458ba8be107b2756e4 | |
| parent | f3ba1f4442dd5bf3d26ab2c6403c16c24b252d60 (diff) | |
DEV-44732  avoidable false-positives on automatic URL finding in chat
| -rw-r--r-- | indra/llui/llurlentry.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index 983f0a2d49..99eb992ddd 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -201,8 +201,11 @@ std::string LLUrlEntryHTTPLabel::getUrl(const std::string &string)  //  LLUrlEntryHTTPNoProtocol::LLUrlEntryHTTPNoProtocol()  { -	mPattern = boost::regex("(\\bwww\\.\\S+\\.\\S+|\\b[^ \t\n\r\f\v:/]+.com\\S*|\\b[^ \t\n\r\f\v:/]+.net\\S*|\\b[^ \t\n\r\f\v:/]+.edu\\S*|\\b[^ \t\n\r\f\v:/]+.org\\S*)", -							boost::regex::perl|boost::regex::icase); +	mPattern = boost::regex("(" +				"\\bwww\\.\\S+\\.\\S+" // www.FOO.BAR +				"|\\b[^ \t\n\r\f\v:/]+.(?:com|net|edu|org)[^[:space:][:alnum:]]*$" // FOO.net +				")", +				boost::regex::perl|boost::regex::icase);  	mMenuName = "menu_url_http.xml";  	mTooltip = LLTrans::getString("TooltipHttpUrl");  } | 
