aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/InventoryService (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-06-08Changed XInventoryData's CreatorID to a string.Diva Canto1-2/+2
2010-05-16Fixes mantis #4691Diva Canto1-1/+1
2010-04-29Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto1-3/+3
mind. Unfinished.
2010-04-28Removed unused var from InventoryService.cs (-1 warning)AlexRa1-1/+1
2010-04-27XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto1-4/+4
testing.
2010-02-14Added UserAccount, Avatar and Authentication to Data.Null, so that OpenSim ↵Diva Canto1-0/+1
can run out-of-the-box. #WaitingForSQLite
2010-02-08Create root inventory folder with proper type (9) instead of -1Melanie1-1/+1
2010-01-31* Simplified the configuration by having [DatabaseService] in itDiva Canto1-1/+1
* Fixed configuration issue for HGInventoryServerInConnector * Corrected typos in debug messages
2010-01-31* Bug fix in XInventoryData -- groupOwned is an int in the DBDiva Canto1-2/+8
* Bug fix in InventoryServerInConnector -- m_config
2010-01-31* Added a few files that were missing in the repo.Diva Canto2-25/+327
* New HGInventoryService which allows restricted access to inventory while outside
2010-01-12Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto1-0/+1
Appearance is now being passed with AgentCircuitData, as it should be.
2010-01-04Finish conversion if XInventoryServiceMelanie1-12/+46
2010-01-04First stage port of the XInventoryServiceMelanie1-0/+474
2010-01-01The Library Service is now working. UserProfileCacheService.LibraryRoot is ↵Diva Canto1-0/+283
obsolete. Didn't delete it yet to avoid merge conflicts later -- want to stay out of core as much as possible.
2010-01-01Prevent the creation of duplicate inventory folders in the case of a loginMelanie1-1/+12
database issue. Now the login will instaead fail later.
2009-11-22* Request from Adam to add InfoFormat logging to the InventoryService for ↵Teravus Ovares (Dan Olivares)1-0/+1
when deleting folders by folderID occurs
2009-10-01Formatting cleanup.Jeff Ames1-1/+1
2009-09-03Fixes seven leaky .BeginInvoke() callsJohn Hurliman1-1/+1
2009-08-28Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)1-0/+2
2009-08-22Moved a debug message.Diva Canto1-1/+1
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-2/+14
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-20Made HandleFetchInventoryDescendents async, so that the client thread ↵Diva Canto1-3/+1
doesn't wait for the download of the entire inventory.
2009-08-19Fixes GetItem and GetFolder for SQLite. Turns out some methods were no-op in ↵Diva Canto1-3/+3
SQlite. Fixes most grief in http://opensimulator.org/mantis/view.php?id=4035 http://opensimulator.org/mantis/view.php?id=4027
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-0/+18
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-19A better purge of trash folder.Diva Canto1-4/+8
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-0/+23
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto1-2/+2
starting to get on my nerves.
2009-08-11Improved test for system folders. Removed log messages.Diva Canto1-1/+2
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto1-0/+20
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/+40
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto1-3/+3
2009-08-06Disable all IAR tests for now due to possible failure-causing race conditionJustin Clark-Casey (justincc)1-1/+0
2009-06-15Moving these nice HG connectors to their homes.diva1-242/+0
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-5/+5
2009-06-11Changed the inventory service so that is uses exactly one DB plugin, not ↵diva2-115/+28
many. The composition of plugins can be done at the service and connector levels. This fixes the unit tests that were failing yesterday, but I'm not committing those yet, because I'm seeing 2 of those tests having pass and fail outcomes randomly which suggests that the tests are buggy.
2009-06-10Heart surgery no.2: the inventory service hooks. diva3-49/+132
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-08IInentoryDataPlugins were missing.diva1-2/+7
2009-06-08Added more functions to IInventoryService. Unsure about whether all of these ↵diva1-6/+67
are really necessary.
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva3-0/+820
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.