aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix scope support to get friends list names across co-hosted gridsMelanie2019-08-071-1/+1
|
* Massive tab and trailing space cleanupMelanie Thielker2017-01-051-2/+2
|
* add GetUsersNames(string[] ids) to UserManagement. Make GetDisplayNames cap ↵UbitUmarov2016-08-171-32/+26
| | | | use it so several IDs are handle on a single call. Since there is no grid side suport, no much gain still
* Fix a dumb mistakeMelanie Thielker2016-06-211-1/+1
|
* Make some more modules inheritableMelanie Thielker2016-06-211-3/+3
|
* send DisplayNames dates in UTC and not region local time. send a next ↵UbitUmarov2015-10-051-2/+5
| | | | update date that can be parsed and make it also in future so name edition is blocked since we don't suport them. (singu fails to display date, and seems to fail converting utc to local time
* comment a large debug messageUbitUmarov2015-09-041-1/+1
|
* As per advice from Singularity devs, set is_display_name_default = true in ↵Justin Clark-Casey (justincc)2015-01-311-1/+1
| | | | | | | GetDisplayName cap return data to make the single name appear. This is still always your avatar name - code to set a different display is not yet implemented. This works from my testing with current Firestorm and Singuarity releases.
* Revert "Stop currently unsettable display names from appearing when ↵Justin Clark-Casey (justincc)2015-01-311-1/+1
| | | | | | [ClientStack.LindenCaps] Cap_GetDisplayNames = "localhost" is set by never passing the username." This reverts commit 2d574c3036964d95dbf914d5f5858a3c39f0c16e.
* Revert "In GetDisplayNames, if user last name is Resident then only send ↵Justin Clark-Casey (justincc)2015-01-241-1/+1
| | | | | | | | | first name for display." Reverting at this point since it may not work well with all viewers. Requires further investigation. This reverts commit a29d53986aa3ca9bfd6759789c8a6f434b78d627.
* In GetDisplayNames, if user last name is Resident then only send first name ↵Justin Clark-Casey (justincc)2015-01-231-1/+1
| | | | | | | | for display. This is to match existing behaviour with UDP behaviour where this is masked out. And to make it consistent with other places where viewers mask this out themselves. Relates to http://opensimulator.org/mantis/view.php?id=7408
* Stop currently unsettable display names from appearing when ↵Justin Clark-Casey (justincc)2015-01-211-1/+1
| | | | | | | | [ClientStack.LindenCaps] Cap_GetDisplayNames = "localhost" is set by never passing the username. Unexpectedly, not setting user name achieves this whereas one might have expected it to be done by not setting display_name in the cap OSD. Emulates LL behaviour when no display name is set. Relates to http://opensimulator.org/mantis/view.php?id=7408
* Added GetDisplayNames capability. For now, we don't actually use display ↵Diva Canto2015-01-091-0/+120
names, and this cap returns the regular name. But this moves the server side into the newer, preferred, protocol used by the viewer for fetching the names of agents in the scene given their UUIDs. (the old protocol is via UDP). This works fine in my limited tests, but could use further testing by others.