summaryrefslogtreecommitdiff
path: root/indra/llui/llurlentry.cpp
AgeCommit message (Collapse)Author
2021-04-29Merge master (DRTVWR-515) into DRTVWR-516-maintAndrey Kleshchev
# Conflicts: # autobuild.xml # doc/contributions.txt # indra/llcommon/llcoros.cpp # indra/llmessage/llcoproceduremanager.cpp # indra/newview/llfloaterfixedenvironment.cpp # indra/newview/llfloaterimsessiontab.cpp
2021-04-10SL-15082 regexp fixMnikolenko Productengine
2021-04-08SL-15082 fix for app/region SLURLSMnikolenko Productengine
2021-02-01Merge branch 'master' of https://bitbucket.org/lindenlab/viewer/src/master ↵Andrey Kleshchev
into DRTVWR-515-maint # Conflicts: # autobuild.xml (llca) # indra/llwindow/llwindow.h (SL-13507 vs SL-5894) # indra/newview/llscenemonitor.cpp (SL-14422) # indra/newview/llvovolume.cpp (SL-12069)
2021-02-01Merge branch 'master' into DRTVWR-516-maintAndrey Lihatskiy
2021-01-04SL-14494 FIXED llRequestURL() generated URLs are no longer recognized by the ↵Mnikolenko Productengine
viewer as Second Life hosted URLs
2020-11-13Merge branch 'master' into DRTVWR-516-maintAndrey Lihatskiy
# Conflicts: # indra/llui/llfolderview.cpp # indra/llui/llfolderviewmodel.cpp # indra/newview/llenvironment.cpp
2020-11-13Merge branch 'master' into DRTVWR-515-maintAndrey Lihatskiy
# Conflicts: # indra/newview/llfloatereditextdaycycle.cpp # indra/newview/llfloaterfixedenvironment.cpp
2020-11-11Merge branch 'master' into DRTVWR-513-maintAndrey Lihatskiy
# Conflicts: # autobuild.xml # indra/llui/llfolderviewmodel.h # indra/newview/lltexturecache.cpp # indra/newview/llviewermenu.h # indra/newview/skins/default/xui/en/menu_wearable_list_item.xml
2020-09-17SL-13729 Performance of LLUI and LLRender2D #2Andrey Kleshchev
2020-08-10SL-13618 FIXED uri's stuck showing "Loading..." in chat or dialog if more ↵Mnikolenko Productengine
than one name is not cached.
2020-06-11SL-13433 Viewer should recognizes ipv6 linksMnikolenko Productengine
2020-04-16SL-13048 FIXED Status Blog URL does not show Official Second Life web page iconMnikolenko Productengine
2019-11-27Upstream merge from viewer-nekoAndreyL ProductEngine
2019-11-12Merged in lindenlab/viewer-releaseAndreyL ProductEngine
2019-08-10DRTVWR-493 LLUI to LLParamSingletonandreykproductengine
2019-07-05SL-11551 tilia-inc.com as an official Linden Lab URL should have SL iconmaxim_productengine
2018-04-19MAINT-8552 FIXED Secure map links do not parse in chat and SL icon is not ↵maxim_productengine
displayed
2017-11-24MAINT-8023 Viewer breaks URLs with internationalized domain namesMnikolenko Productengine
2017-05-05MAINT-7386 FIXED app/objectim slurl consumes the rest of the chat stringMnikolenko Productengine
2017-02-03MAINT-7103 New URI namespace /legacynameMnikolenko Productengine
2017-01-11MAINT-7031 /displayname & /completename should perform regardless of "View ↵Mnikolenko Productengine
Display Names" viewer setting.
2016-11-15MAINT-6929 [Contribution] E-mail links are not parsed correctly when top ↵Mnikolenko Productengine
level domain is over 6 characters.
2016-08-23MAINT-6648 FIXED [SECURITY] Link tags do not filter unicode and allow for ↵Mnikolenko Productengine
easy URL spoofing.
2016-08-10MAINT-6608 FIXED URI parser problem with links with username, passwordMnikolenko Productengine
2016-04-04merge with 4.0.3-releaseOz Linden
2016-03-17MergeRider Linden
2016-03-16merge changes for DRTVWR-417Oz Linden
2016-01-15merge changes for 4.0.1-releaseOz Linden
2016-01-15Merge VRRider Linden
2015-12-15MAINT-5498 LLUrlEntry regex refactoringAndreyL ProductEngine
Improved LLUrlEntryHTTP, extended a test
2015-11-10remove execute permission from many files that should not have itOz Linden
2015-10-23MAINT-5464 FIXED Do not add badge to links that have a port number specified.AndreyL ProductEngine
2015-10-19Merge from viewer release.Rider Linden
2015-09-03Changes from code review with NatRider Linden
2015-09-01MAINT-5575: Convert the Experience cache into a coro based singleton.Rider Linden
--HG-- branch : MAINT-5575
2015-08-24MAINT-4952: Removed a bit of debug code that got included accidentally and ↵Rider Linden
change host == LLHost() to host.isInvalid()
2015-08-18MAINT-5506: Fix ugly timing bug in llurlentry static initialization.Nat Goodspeed
The problem was that class-static LLUrlEntryParcel::sRegionHost was being initialized by copying class-static LLHost::invalid. Naturally, these two statics are initialized in different source files. Since C++ makes no promises about the relative order in which objects in different object files are initialized, it seems we hit a case in which we were trying to initialize sRegionHost by copying a completely uninitialized LLHost::invalid. In general we might attempt to address such cross-translation-unit issues by introducing an LLSingleton. But in this particular case, the punch line is that LLHost::invalid is explicitly constructed identically to a default-constructed LLHost! In other words, LLHost::invalid provides nothing we couldn't get from LLHost(). All it gives us is an opportunity for glitches such as the above. Remove LLHost::invalid and all references, replacing with LLHost().
2015-08-18SL-173 FIXED Allow searching for an experience by SLurl.Mnikolenko ProductEngine
2015-08-07MAINT-5451 FIXED A domain name without a top level domain should not be ↵Mnikolenko ProductEngine
decorated
2015-07-29MAINT-5019 FIXED Undesired "http://" added to domains sent in chatAndreyL ProductEngine
Completely removed matching of the URLs w/o a protocol + Some unit tests
2015-07-15MAINT-5019: Buildfix - added a tests for emails, improved handling of URLs ↵AndreyL ProductEngine
starting with www.
2015-07-14MAINT-5019 FIXED Additional casesAndreyL ProductEngine
2015-07-01Merge from viewer-relese and become version 3.8.1andreykproductengine
2015-06-08merge changes for 3.7.29-releaseOz Linden
2015-04-28Merge viewer-release, become version 3.7.29Mnikolenko ProductEngine
2015-04-15Merge viewer-releasesimon
2015-04-15MAINT-5058 FIXED Get the query string by simple extracting it from whole url.Mnikolenko ProductEngine
2015-04-14merge changes for STORM-2113Oz Linden
2015-04-13merge changes for 3.7.27-releaseOz Linden