aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-12-21Bug fix: in standalone, HGInventoryBroker needs to get the local inventory ↵Diva Canto1-2/+13
server URL from NetworkServersInfo.
2009-10-12* Fixes http://opensimulator.org/mantis/view.php?id=4225Diva Canto2-0/+5
* Fixes http://opensimulator.org/mantis/view.php?id=3959 * Allows for viewing inventory textures outside home grid
2009-09-29Minor bug fixes.Diva Canto1-1/+1
2009-09-26Moved all HG1 operations to HGGridConnector.cs and ↵Diva Canto1-2/+7
HypergridServerConnector.cs/HypergridServiceConnector.cs, away from Region.Communications and HGNetworkServersInfo. Fixed small bugs with hyperlinked regions' map positions.
2009-08-28Try to cache system folders if they aren't already there when one is requestedJustin Clark-Casey (justincc)1-0/+13
This operation can be performed legitimately on standalones without a logged in user
2009-08-28Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)1-13/+34
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto4-0/+39
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-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-19Fixes GetRootFolder for normal standalone, which was being incorrectly ↵Diva Canto1-3/+3
redirected to the wrong object. Probably 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 Canto4-0/+35
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 Canto4-14/+20
2009-08-18GetFolderItems implemented. It's not being called, but it might.Diva Canto2-3/+11
2009-08-18jhurliman's patch in http://opensimulator.org/mantis/view.php?id=4024Diva Canto1-2/+1
2009-08-16Making attachments work again. Tons of debug more. This needs more testing ↵Diva Canto1-1/+1
and a lot of cleaning.
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 Canto2-5/+19
HGBroker.
2009-08-14More debug messages.Diva Canto1-0/+7
2009-08-14Doing session lookup in the right way.Diva Canto2-8/+11
2009-08-14Additional debug messages, and bug fix in ↵Diva Canto2-2/+12
RemoteInventoryServiceConnector.cs, where the scene reference wasn't being set.
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto4-18/+36
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto4-12/+12
starting to get on my nerves.
2009-08-12Redirected all calls to CachedUserProfile methods to the inventory service. ↵Diva Canto1-0/+1
Redirection of the RootFolder property is still todo. This compiles but probably inventory will be inconsistent.
2009-08-13Formatting cleanup. Add copyright headers.Jeff Ames2-2/+56
2009-08-12* Added two new packet handler implementations for inventory ops. This is ↵Diva Canto5-74/+270
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-12Better test for dropping inventory cache and writing out debug messages.Diva Canto1-16/+21
2009-08-11Fixed test for detecting when user is no longer in sim.Diva Canto1-3/+5
2009-08-11Improved test for system folders. Removed log messages.Diva Canto2-4/+5
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto4-37/+207
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 Canto3-0/+75
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto3-4/+4
2009-08-10Replace the Replaceable modules nameMelanie3-3/+3
2009-08-05Remove waiting in TestReplicateArchivePathToUserInventory() since local ↵Justin Clark-Casey (justincc)1-1/+0
inventory loading is synchronous Insert a little more debugging info in case the occasional failure reoccurs
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker3-0/+15
the ball rolling on replacable modules. No user functionality yet
2009-06-14Renamed Region/CoreModules/ServiceConnectors to ↵diva3-0/+966
Region/CoreModules/ServiceConnectorsOut. No functional changes.