summaryrefslogtreecommitdiff
path: root/indra/llmessage/llavatarnamecache.h
AgeCommit message (Collapse)Author
2013-11-06MAINT-3374 FIXED Don't show username after display name if this setting is ↵Mnikolenko ProductEngine
disabled.
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
2012-12-07CHUI-580 : Fixed : Clean up the use of display name. Allow the use of the ↵Merov Linden
legacy protocol in settings.xml
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-11-12MAINT-1897 Poor performance viewing large group member listsKelly Washington
* Split avatar name requests up among multiple frames to prevent overloading the nameserver and having requests time out.
2012-08-13PATH-849: CRASHFIX This should fix the crash caused by ↵Todd Stinson
LLPathfindingObject::handleAvatarNameFetch being called after the corresponding LLPathfindingObject has been deleted.
2011-01-16DN-202: Make avatar name caching more aggressive and error handling more uniformOz Linden
Add logging (mostly at DEBUG level)
2010-09-13DEV-52931 Toggling "View Display Names" doesn't take effect right away in ↵Leyla Farazha
the Friends list
2010-09-04Correct license on newly exported files to LGPL.Aimee Linden
2010-05-06DEV-49633 fixed, use Cache-Control max-age for display name expirationJames Cook
We have no C++ libraries for parsing RFC 1123 dates, so parsing "Expires" headers is risky. max-age delta-seconds is easier to parse and equivalent for this use. Also added unit tests for max-age parsing. Pair-programmed with Huseby.
2010-04-27Menu item to disable display names for testing works againJames Cook
Start up cache in not-running state on viewer. Set cache running when idle() is called. Explicitly refresh name tags when toggled. Reviewed with Simon
2010-04-22DEV-47529 Turn off display names if no capability from simulator, andJames Cook
Display name update broadcasts entire new name record to nearby viewers Display name update directly inserts new name into sim cache indra.xml has display_names_enabled setting to control cap Synchronized viewer and server versions of avatar name cache Reviewed with Ambroff
2010-04-22Starting to implement running switch and 503 error handlingJames Cook
2010-04-19Viewer asks login.cgi if the grid supports display namesJames Cook
If not, turns off display names. Cleaned up name cache reset code. Alphabetized login auth param requests for easier merges going forward.
2010-04-15DEV-47529 Viewer looks up display names via a sim capJames Cook
Squire asked me to route display name lookups via a simulator capability using HTTP GET. This buys us authentication until the data services team can implement a public-facing authenticating web service for People API.
2010-04-08DEV-47529 Add expiration to display name cache for viewerJames Cook
Also synchronize LLAvatarNameCache with server version TODO: Get expiration time from web service
2010-03-23Part DEV-47695 route display name changes via sim for rebroadcast toJames Cook
nearby avatars for name tag updates and to update cached display name for LSL nonblocking functions
2010-03-18Partial support for Set Name returning error msg from serviceJames Cook
2010-02-24Hack to refresh name tags when I change my display name.James Cook
Also fixes a crash when turning on display names.
2010-02-24Add asynchronous display name lookup with callbackJames Cook
2010-02-22Simple button to change your display nameJames Cook
Talks to web service so other people can see the change, but for now they need to relog or toggle display names on/off to clear their cache.
2010-02-18Preference to set what fields name tags display, andJames Cook
first attempt at "use display names" menu item which doesn't work yet
2010-02-17Look up display names via a web serviceJames Cook
Also removed unused LLComboBox globals to reduce llappviewer.cpp include file burden. Review pending
2010-02-11Created stub LLAvatarNameCache for display name lookup, asJames Cook
well as LLAvatarName base data object. Reviewed with Kelly.