aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/RemoteInventoryServiceConnector.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-0/+12
folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-0/+10
operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
2009-08-19Async purge so that the client thread doesn't wait.Diva Canto1-5/+5
2009-08-19A better purge of trash folder.Diva Canto1-4/+6
2009-08-18GetFolderItems implemented. It's not being called, but it might.Diva Canto1-1/+2
2009-08-14Returning UUID.Zero is scene and user profile service are null in ↵Diva Canto1-0/+8
GetSession. This doesn't fix the underlying problem of these things being null -- they shouldn't be.
2009-08-14Changed the way to get to the profile service. Changed GetSystemsFolder in ↵Diva Canto1-3/+5
HGBroker.
2009-08-14More debug messages.Diva Canto1-0/+7
2009-08-14Doing session lookup in the right way.Diva Canto1-4/+6
2009-08-14Additional debug messages, and bug fix in ↵Diva Canto1-1/+2
RemoteInventoryServiceConnector.cs, where the scene reference wasn't being set.
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-4/+6
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto1-2/+2
starting to get on my nerves.
2009-08-12* Added two new packet handler implementations for inventory ops. This is ↵Diva Canto1-23/+29
starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops. * Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service. * Added if (m_Enabled) upon RemoveRegion
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto1-20/+13
agents in and out of *sims* in order to fetch/drop their system folders from the cache. Also added region-side support for fetching the system folders from the inventory service. Nothing of this is called yet.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto1-0/+38
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto1-1/+1
2009-08-10Replace the Replaceable modules nameMelanie1-1/+1
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker1-0/+5
the ball rolling on replacable modules. No user functionality yet
2009-06-14Renamed Region/CoreModules/ServiceConnectors to ↵diva1-1/+1
Region/CoreModules/ServiceConnectorsOut. No functional changes.
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-1/+1
2009-06-10Heart surgery no.2: the inventory service hooks. diva1-4/+12
Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
2009-06-08Added more functions to IInventoryService. Unsure about whether all of these ↵diva1-0/+25
are really necessary.
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva1-0/+246
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files.