summaryrefslogtreecommitdiff
path: root/indra/llui
AgeCommit message (Collapse)Author
2015-10-21MAINT-5759 FIXED URL links in the UI with non-English characters, ↵Mnikolenko ProductEngine
diacritics, don't get parsed correctly.
2015-10-20Merge with tip of viewer-releasecallum_linden
2015-10-16MAINT-5756: Unicode characters in online notifications get strippedAnsariel
2015-10-15Merge downstream code, version 3.8.6AndreyL ProductEngine
2015-10-19Merge from viewer release.Rider Linden
2015-10-13merge changes for 3.8.5-releaseOz Linden
2015-09-10MAINT-5619 : Viewer seems to parse LSL syntax file three times, has warningssimon
2015-09-07MAINT-839 added double click 'support'andreykproductengine
2015-09-03Changes from code review with NatRider Linden
2015-09-01In Linux build skip url entry testRider Linden
2015-09-01One of the tests defined a namespace in order to fake out the libraries. ↵Rider Linden
Removed it.
2015-09-01MAINT-5575: Convert the Experience cache into a coro based singleton.Rider Linden
--HG-- branch : MAINT-5575
2015-08-31Merge with viewer-releasecallum_linden
2015-08-25MergeRider Linden
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-19Be sure the correct include is included.Rider Linden
2015-08-19Keep hunting these down.Rider Linden
2015-08-18MergeRider Linden
2015-08-18Move the CoreHTTP libraries downRider Linden
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-18merge changes for 3.8.3-releaseOz Linden
2015-08-17Adding llcorehttp to linksRider Linden
2015-08-18SL-173 FIXED Allow searching for an experience by SLurl.Mnikolenko ProductEngine
2015-08-11merge changes for 3.8.2-releaseOz Linden
2015-08-10MAINT-5463 FIXED Add hovertext to the official link badge in chat/IM, etc.Mnikolenko ProductEngine
2015-08-07MAINT-5451 FIXED A domain name without a top level domain should not be ↵Mnikolenko ProductEngine
decorated
2015-08-04Merge with viewer releasecallum_linden
2015-08-04Merge downstream code and become version 3.8.3andreykproductengine
2015-08-04Merge viewer-release and become version 3.8.3AndreyL ProductEngine
2015-07-31MAINT-5127 FIXED Maps URLs copied from gcal inherit special characters that ↵Mnikolenko ProductEngine
do odd things
2015-07-30merge changes for other open sourc contributionsOz Linden
2015-07-29MAINT-5428 FIXED Show tooltip for both parts of url.Mnikolenko ProductEngine
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-28MAINT-5432 MAINT-5440 FIXED CrashAndreyL ProductEngine
in LLUUID::operator==(LLUUID const &) and LLFolderView::removeSelectedItems()
2015-07-15MAINT-5019: Buildfix - added a tests for emails, improved handling of URLs ↵AndreyL ProductEngine
starting with www.
2015-07-14merge 3.8.0-release and correct xml errors caused by reformattingOz Linden
2015-07-14MAINT-5019 FIXED Additional casesAndreyL ProductEngine
2015-07-10Initial support for keyboard (in progress) but includes many viewer changes ↵callum_linden
to plumb in Key Up events
2015-07-08MAINT-5371 FIXED Undesired space added to SL and LL domains sent in chatAndreyL ProductEngine
2015-07-02MAINT-302 FIXED Login screen menus flicker when mouse hovers over themMnikolenko ProductEngine
2015-07-01Merge from viewer-relese and become version 3.8.1andreykproductengine
2015-06-30Automated merge with ssh://bitbucket.org/lindenlab/viewer-releaseNat Goodspeed
2015-06-24MAINT-176 FIXED IM windows don't keep their minimized state after mouselookMnikolenko ProductEngine
2015-06-22MAINT-5274 Missing folder arrowandreykproductengine
2015-06-11DD-410 : Do not extend inventory selections to items that are not visibleMerov Linden
2015-06-08merge changes for 3.7.29-releaseOz Linden
2015-06-05Merge from viewer-releaseandreykproductengine
2015-07-02Merge from viewer-relese and become version 3.8.1andreykproductengine
2015-05-29Pull merge from lindenlab/viewer-releaseMerov Linden
2015-05-27MAINT-5232: Extract LLInitClass, LLDestroyClass from llui/llui.hNat Goodspeed
to a new llcommon/llinitdestroyclass.h. This mechanism is so general -- but has so many related moving parts -- that (a) it deserves to be in a header file all its own, instead of conflated with llui.h, and (b) it should be in llcommon where anyone can use it. It has no dependencies whatsoever on llui or anything viewer-specific. In this very changeset we changed one #include "llui.h" whose comment admits that it was only dragged in for LLDestroyClass.