aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* minor: correctly print out missing item id when it can't be found rather ↵Justin Clark-Casey (justincc)2010-04-161-1/+4
| | | | than a NullReferenceException
* * Added SQlite connector for AvatarData. Tested -- works.Diva Canto2010-02-211-1/+1
| | | | | * Small bug fix in debug message * Set default standalone configs to use SQLite across the board
* Merge branch 'master' into presence-refactorMelanie2010-02-151-9/+16
|\
| * Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)2010-02-121-9/+16
| | | | | | | | | | | | | | This resolves the problem where eyes and hair would turn white on standalone configurations When a client receives body part information, for some insane reason or other it always ends up uploading this back to the server and then immediately re-requesting it. This should have been okay since we stored that asset in cache. However, the standalone asset service connector was not checking this cache properly, so every time the client made the request for the asset it has just loaded it would get a big fat null back in the face, causing it to make clothes and hair white. This bug did not affect grids since they use a different service connector.
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-2/+0
| | | | | | | | | | * HG is seriously broken here * Compiles. Untested.
* | Inching ahead... This compiles, but very likely does not run.Diva Canto2010-01-081-1/+0
|/
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-0/+5
| | | | | | 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.
* Fixes GetItem and GetFolder for SQLite. Turns out some methods were no-op in ↵Diva Canto2009-08-191-3/+3
| | | | | | | SQlite. Fixes most grief in http://opensimulator.org/mantis/view.php?id=4035 http://opensimulator.org/mantis/view.php?id=4027
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-0/+6
| | | | 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-2/+2
|
* Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto2009-08-131-9/+11
|
* Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-131-4/+4
| | | | starting to get on my nerves.
* * Added two new packet handler implementations for inventory ops. This is ↵Diva Canto2009-08-121-24/+28
| | | | | | | 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
* Improved test for system folders. Removed log messages.Diva Canto2009-08-111-1/+2
|
* System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto2009-08-111-5/+30
| | | | 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.
* Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto2009-08-101-0/+11
| | | | GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-101-1/+1
|\
| * Replace the Replaceable modules nameMelanie2009-08-101-1/+1
| |
* | Changed RequestRootFolder to GetRootFolderDiva Canto2009-08-101-2/+2
|/
* Remove waiting in TestReplicateArchivePathToUserInventory() since local ↵Justin Clark-Casey (justincc)2009-08-051-1/+0
| | | | | | inventory loading is synchronous Insert a little more debugging info in case the occasional failure reoccurs
* Committing the interface change and the addition to the modules to getMelanie Thielker2009-07-101-0/+5
| | | | | | the ball rolling on replacable modules. No user functionality yet
* Renamed Region/CoreModules/ServiceConnectors to ↵diva2009-06-141-0/+286
Region/CoreModules/ServiceConnectorsOut. No functional changes.