aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteXInventoryServiceConnector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Finish the implementation of GetUserInventory, even though it's still not used.Diva Canto2012-04-061-7/+8
|
* Let grided simulators retrieve the user's inventory skeletonDiva Canto2012-03-271-1/+1
|
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-11-141-2/+1
|
* Shuffle order of code in invnetory connector GetFolderContent() calls to ↵Justin Clark-Casey (justincc)2011-09-151-6/+9
| | | | avoid a possible race condition
* Use a copy of the inventory items list to register users in the thread ↵Justin Clark-Casey (justincc)2011-09-091-1/+4
| | | | | | started by GetFolderContent(), to protect ourselves against callers modifying lists Hopefully this addresses http://opensimulator.org/mantis/view.php?id=5681
* When a region is added to the HG Inventory Broker, also pass this through to ↵Justin Clark-Casey (justincc)2011-09-071-13/+9
| | | | | | | | the embedded local inventory connector to prevent an NRE when that connector tries to lookup the UserManager through the scene. This is to address http://opensimulator.org/mantis/view.php?id=5669 However, if this failure was happening I'm kind of surprised that local HG inventory was working at all..... We probably weren't seeing these exceptions previously because we weren't logging them when the reached the top of a FireAndForget thread.
* Add temporary debugging in HGInventoryBroker and ↵Justin Clark-Casey (justincc)2011-09-061-3/+11
| | | | | | | RemoveXInventoryServiceConnector This is for http://opensimulator.org/mantis/view.php?id=5669 If we can't retrieve an IUserManagement module we complain, and we also warn in the log when its manually set in XISC by HGInventoryBroker
* Allow the HGInventoryBroker to set the UserManager when it instantiates a ↵Justin Clark-Casey (justincc)2011-09-051-1/+6
| | | | | | | RemoteXInventoryServiceConnector for a visiting HG user. Not doing this causes NREs whenever that user tries to access inventory when Hypergrid is turned on since the Remote connector does not have a scene (which is only used to fetch the UserManager) Aims to address http://opensimulator.org/mantis/view.php?id=5669
* Made things consistent between LocalInventoryServiceConnector and ↵Diva Canto2011-04-251-8/+26
| | | | RemoteXInventoryServiceConnector on GetFolderContent.
* Removed a couple of very verbose debug messages.Diva Canto2010-10-311-2/+2
|
* Formatting cleanup.Jeff Ames2010-09-121-1/+1
|
* Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)2010-09-041-25/+1
| | | | | | | folder up from connectors into Scene.Inventory.cs This fixes the problem for all architectures (hg as well as local and grid) and means we don't have to dupe code between connectors. Not ideal in that it becomes non-modular, but methods in Scene.Inventory.cs should eventually be modularized anyway.
* Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)2010-08-241-0/+7
| | | | | | goes to the correct directory Also removes some mono compiler warnings
* Add system lookup folder fix to the RemoveXInventoryServiceConnector as well ↵Justin Clark-Casey (justincc)2010-08-231-0/+17
| | | | since this presumably suffers from the same problem.
* Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2010-08-231-4/+1
| | | | | This was a regression - the code to look up the correct type folder was no longer being called if items were added without a parent folder set This may have been broken since commit bd49985a on 2010-05-02
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2010-08-131-3/+2
|
* * XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto2010-04-301-5/+3
| | | | * Removed a few buglets and added better exception handling.
* Simplified RemoteXInventoryServiceConnector and HGBroker (2) by a lot.Diva Canto2010-04-291-58/+32
|
* Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto2010-04-291-0/+5
| | | | mind. Unfinished.
* XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto2010-04-271-0/+2
| | | | testing.
* RemoteXInventoryServiceConnector, the plugin region module. Not active in ↵Diva Canto2010-04-261-0/+324
default configs yet.