aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Addons/Groups/Remote (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-02-20In core.groups GroupsServiceRemoveConnector, if GetGroupRecord() or ↵Justin Clark-Casey (justincc)1-4/+6
UpdateGroup() do not have a RESULT parameter in the result message, return null rather than fail with NullReferenceException This check was already done by other methods. Looks to resolve http://opensimulator.org/mantis/view.php?id=7012
2013-11-15refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)1-1/+1
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
2013-07-28Changing the visibility test in groups service to be UUID.Zero.ToString() ↵Diva Canto1-0/+1
instead of "all" because some paths in the code assume there's a UUI in the RequestingAgent string.
2013-07-28This makes group search work (Groups V2).Diva Canto3-1/+59
2013-07-27Several major improvements to group (V2) chat. Specifically: handle ↵Diva Canto1-22/+0
join/drop appropriately, invitechatboxes. The major departure from flotsam is to send only one message per destination region, as opposed to one message per group member. This reduces messaging considerably in large groups that have clusters of members in certain regions.
2013-07-08minor: remove some mono compiler warnings in new groups codeJustin Clark-Casey (justincc)1-4/+0
2013-07-08Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)1-1/+1
to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
2013-05-13Groups: Improve error handling on remote connector.Diva Canto1-4/+9
2013-02-25Mantis #6552 -- stricter error (crash) if server URL is malformed.Diva Canto1-5/+2
2013-02-25Fixes mantis #6551 -- misspelled key name. Also fixed an issue with the ↵Diva Canto2-2/+2
roles cache.
2013-02-19First commit of Diva Groups. The Data bits went to OpenSim.Data core, the ↵Diva Canto3-0/+1839
rest to Addons.Groups.dll.