summaryrefslogtreecommitdiff
path: root/indra/llmessage/llcachename.cpp
AgeCommit message (Collapse)Author
2016-04-04merge with 4.0.3-releaseOz Linden
2015-11-10remove execute permission from many files that should not have itOz 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().
2014-10-17Update to build on Xcode 6.0: removed unised const variables ↵callum_linden
[-Wunused-const-variable]
2014-03-12merge with releaseRichard Linden
2014-02-14More memory cleanup of containers after DeletePairedPointer() usage.simon
2014-02-14[MAINT-3555] Crash in LLPanel::~LLPanel() on shutdownBaker Linden
- Added clear() after DeletePointer() call to hopfully fix this...
2013-08-09second phase summer cleaningRichard Linden
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc.
2013-04-19merge changes for DRTVWR-294Oz Linden
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
2013-03-11Viewer-chui mergeprep
2013-03-05Fixing issues with not detecting when LLSD XML parsing fails. Changing most ↵Don Kjer
http error handlers to understand LLSD error responses. Fleshing out most http error handler message spam.
2013-01-30Pull merge from lindenlab/viewer-developementMerov Linden
2012-12-05CHUI-580 : WIP : Change the display name cache system, deprecating the old ↵Merov Linden
protocol and using the cap (People API) whenever available. Still has occurence of Resident as last name to clean up.
2012-07-20MAINT-570 Remove unused memory tracking system LLMemTypeDave Parks
2010-11-30DN-217 Changing between View Display Names on and off during a conference ↵Leyla Farazha
call session put viewer in a state where last name resident was shown in viewer everywhere for user in conference call with last name resident.
2010-11-23DN-212 [crashhunters] LLCacheName::buildLegacyNameLeyla Farazha
2010-11-04DN-188 Fixed users with lastname residents not having inspectors in chat historyLeyla Farazha
2010-10-29DN-154 Display Names only shown in Nearby Chat History when a user logs back ↵Leyla Farazha
in even if Usernames were shown in Chat during previous session
2010-10-27DN-188 Inspectors and Profile images not available in IM history or local ↵Leyla Farazha
chat history
2010-10-22DN-181 Chat & IM logs saved in unreadable .llsd instead of .txtLeyla Farazha
2010-09-03Post-convert merge by convert_monolith.py from ↵Aimee Linden
/Users/Aimee/Documents/Work/Linden-Lab/Development/viewer/convert/viewer-identity-evolution
2010-08-13Change license from GPL to LGPL (version 2.1)Oz Linden
2010-05-27DEV-50013 Region debug top scripts/colliders display namesJames Cook
2010-05-27added function for building a username from a legacy name and fixed group ↵Leyla Farazha
notice panel reviewed by James
2010-05-25DEV-50013 WIP gCacheName->getGroup() to distinguish from av lookupsJames Cook
Helps with global finds looking for remaining calls to patch. Reviewed with Leyla.
2010-05-11merge from dessie/viewer-public right before SLE code landedJames Cook
2010-04-13Fixed bug EXT-5415 (Edit floater and object profile show group as ↵Vadim Savchuk
"loading..." when set to "none"). Made LLCacheName getGroupName() and getName() methods return TRUE if the given group/avatar name is NULL, so that LLNameBox doesn't display "Loading..." indefinitely. There's nothing to wait for in case of NULL id: the name cache returns a predefined name that won't change (i.e. it's the final result). Reviewed by Mike: https://codereview.productengine.com/secondlife/r/223/ --HG-- branch : product-engine
2010-03-03Work around bad usernames occasionally sent from server.James Cook
2010-03-02Don't load cached names with blank last names, avoids data corruptionJames Cook
2010-02-19Added clear() method for debuggingJames Cook
2010-02-17Added function LLCacheName::cleanFullName() to strip " Resident" from stringsJames Cook
2010-02-16Store last name Resident in cache for now, but don't use for reverse lookupsJames Cook
2010-02-16Fix server to use updated LLCacheName API.James Cook
Fixed callback signatures. Added LLCacheName::getDefaultLastName() to return "Resident" Reviewed with Huseby
2010-02-12Per-avatar customizable icons next to name links in textJames Cook
Changed LLUrlEntryAgent callbacks to handle both link label and icon Eliminated legacy LLNameCache file loading Reviewed with Kelly
2010-02-11Removed temporary LLCacheName::getDisplayName codeJames Cook
2010-02-10Added Jose Sanchez as display name for bobsmith123James Cook
2010-02-08Converted names build from avatar object LLNameValue pairs to SLIDJames Cook
Added temporary getDisplayName() to LLCacheName Moved temporary placeholder display names into LLCacheName Eliminated rarely used LLAgentUI::buildName in favor of buildFullName Standardized buildFullName capitalization
2010-02-03mergeJames Cook
2010-02-01Support returning full_name (and SLID) for LLCacheName::get() callsJames Cook
Changed callback signature to full_name instead of first_name,last_name Eliminated all calls to legacy (non-signal/non-boost-bind) lookup mechanism Change Pay dialog names to SLURL links Tweaked layout of Pay Resident and Pay via Object floaters to make SLURLs fit Consolidate name first + " " + last concatenation in LLCacheName::buildFullName() Reviewed with Kelly
2010-01-29CID-317Tofu Linden
Checker: UNINIT_CTOR Function: LLCacheNameEntry::LLCacheNameEntry() File: /indra/llmessage/llcachename.cpp
2010-01-27CID-254Tofu Linden
Checker: UNINIT Function: LLCacheName::Impl::processUUIDRequest(LLMessageSystem *, bool) File: /indra/llmessage/llcachename.cpp
2010-01-22LLCacheName and LLUrlEntryAgent now understand SLIDs - accountsJames Cook
with "Resident" as last name should not display that name. Also added test display names.
2009-11-23Added reverse LLCacheName lookup.Steve Bennetts
2009-09-01Trivial commit for hg import purposesBryan O'Sullivan
2009-06-22QAR-1383: convert new uses of Boost.Signals (arriving from other branches) toNat Goodspeed
Boost.Signals2 like the rest of the event-system-n code.
2009-06-21merge -r 122421-124917 viewer-2.0.0-2 -> viewer-2.0.0-3Steven Bennetts
ignore-dead-branch
2009-04-16svn merge -r117314:117337Adam Moss
svn+ssh://svn.lindenlab.com/svn/linden/branches/moss/mv13a-merge-1 QAR-1343 maint-viewer-13a+libcurlexploitfix-3-3 combo merge
2009-03-20svn merge -r113004:115000 ↵Dave Simmons
svn+ssh://svn.lindenlab.com/svn/linden/branches/server/server-1.26 Merge latest 1.26 into trunk
2009-01-19Merging from the server/server-1.25 branchRobert Knop
svn merge -r107352:108210 svn+ssh://svn.lindenlab.com/svn/linden/branches/server/server-1.25 Merge conflicts were resolved: scripts/start-server : one conflict, kept the "working" version indra/llcommon/llversionserver.h : reverted indra/newview/Info-SecondLife.plist : reverted indra/newview/res/viewerRes.rc : reverted indra/newsim/llagentinfo.cpp : kept *both*... "working" had is_agent_online, which nothing else had, and the merge had isGodAllowed(), part of SEC resolution indra/backbone/agent_router.py : kartic & rdw merged and reviewed using brains and things indra/newsim/llsimhttpresponder.cpp : doesn't exist in trunk, and that's OK (even though there was a change for it)