aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IInventoryService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-5/+5
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-19/+17
|
* minor: add a bit more method doc to IInventoryService.GetItem()Justin Clark-Casey (justincc)2011-04-111-1/+1
|
* Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2010-08-231-2/+5
| | | | | 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
* Mark GetUserInventory as obsolete. It is still used in the defaultMelanie2010-01-041-0/+2
| | | | | | | | avatars module and in the REST inventory service, but future inventory services and/or connector will not include this method anymore, because it is dangerous on large inventory servers. Marking as obsolete to give an incentive to rewrite these services to use the recursive fetching or more targeted retrieval.
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-0/+8
| | | | | | 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.
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-0/+2
| | | | 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).
* A better purge of trash folder.Diva Canto2009-08-191-1/+2
|
* Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto2009-08-131-0/+20
|
* Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-131-2/+2
| | | | starting to get on my nerves.
* Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto2009-08-101-7/+23
| | | | GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
* Changed RequestRootFolder to GetRootFolderDiva Canto2009-08-101-1/+1
|
* Fixes mantis #3803. Thanks jhurliman.diva2009-06-111-1/+2
|
* Added more functions to IInventoryService. Unsure about whether all of these ↵diva2009-06-081-0/+35
| | | | are really necessary.
* First draft of inventory service connectors, and service implementation. No ↵diva2009-06-071-0/+118
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.