aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-05-27HG inventory transfers over the profile working.Diva Canto1-2/+9
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto1-0/+16
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-04-25Made things consistent between LocalInventoryServiceConnector and ↵Diva Canto2-11/+32
RemoteXInventoryServiceConnector on GetFolderContent.
2011-02-04Added an additional debug message, and removed a bunch of files that weren't ↵Diva Canto2-362/+5
being used anymore -- the old RemotsInventory connectors stuff.
2010-11-21Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2-3/+46
themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
2010-10-31Removed a couple of very verbose debug messages.Diva Canto1-2/+2
2010-09-12Formatting cleanup.Jeff Ames3-3/+3
2010-09-08Made the HG asset and inventory brokers use the Helo service in order to ↵Diva Canto1-6/+9
instantiate the right network connectors. Tested on Robust only.
2010-09-04Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)2-53/+1
folder up from connectors into Scene.Inventory.cs This fixes the problem for all architectures (hg as well as local and grid) and means we don't have to dupe code between connectors. Not ideal in that it becomes non-modular, but methods in Scene.Inventory.cs should eventually be modularized anyway.
2010-09-04Create Scene.Inventory.cs.AddInventoryItem(InventoryItemBase item)Justin Clark-Casey (justincc)1-3/+3
The agentID in AddInventoryItem(UUID agentID, InventoryItemBase item) is redundant since it's contained in item.Owner, and it doesn't make sense for agentID != item.Owner, hence the method is deprecated.
2010-09-03minor: remove mono compiler warningsJustin Clark-Casey (justincc)1-1/+1
2010-08-24Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)2-3/+21
goes to the correct directory Also removes some mono compiler warnings
2010-08-23Add system lookup folder fix to the RemoveXInventoryServiceConnector as well ↵Justin Clark-Casey (justincc)1-0/+17
since this presumably suffers from the same problem.
2010-08-23Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2-9/+18
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
2010-08-23Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)4-5/+11
2010-08-13minor: remove mono compiler warningsJustin Clark-Casey (justincc)2-6/+4
2010-07-14Removed some more debug messages.Diva Canto1-18/+16
2010-07-05Fixes additional bug reported in mantis #4841.Diva Canto1-6/+6
2010-06-11Revert "Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)5-33/+11
GetFolder(InventoryFolderBase folder)" This reverts commit 3525195bc9b5fdfd9799411edd452981ef1f4ebd.
2010-06-11Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)5-11/+33
GetFolder(InventoryFolderBase folder) This involves no wire changes since the methods often just construct an InventoryFolderBase under the hood. This is in line with other methods that alraedy allow requests via uuid
2010-05-02Renamed HGInventoryBroker2 to HGInventoryBroker.Diva Canto1-2/+2
2010-05-02Deleted HGInventoryBroker, so that the new one can take its name.Diva Canto1-540/+0
2010-05-02Switched everything to XInventory by default. The old Inventory is still ↵Diva Canto1-83/+28
there for now, in case bugs pop up with XInventory.
2010-04-30* XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto2-142/+78
* Removed a few buglets and added better exception handling.
2010-04-30Fix a null ref from trying to access a dictionary that was never initialized.Melanie1-1/+2
2010-04-29Simplified RemoteXInventoryServiceConnector and HGBroker (2) by a lot.Diva Canto2-279/+282
2010-04-29Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto3-0/+645
mind. Unfinished.
2010-04-27XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto1-0/+2
testing.
2010-04-26RemoteXInventoryServiceConnector, the plugin region module. Not active in ↵Diva Canto1-0/+324
default configs yet.
2010-04-16minor: correctly print out missing item id when it can't be found rather ↵Justin Clark-Casey (justincc)1-1/+4
than a NullReferenceException
2010-03-19Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2-3/+3
Scene and SceneGraph. This was the only change in this patch to keep it isolated from other recent changes to the same set of files.
2010-02-21* Added SQlite connector for AvatarData. Tested -- works.Diva Canto1-1/+1
* Small bug fix in debug message * Set default standalone configs to use SQLite across the board
2010-02-17minor: fix error inserting field in log messageJustin Clark-Casey (justincc)1-1/+1
2010-02-12Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)1-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.
2010-01-30Bug fix: change HGBroker to a INonSharedRegionModuleDiva Canto2-69/+77
2010-01-29On the way to making HG inventory work. Inventory can now be accessed again. ↵Diva Canto1-110/+66
Assets are still broken.
2010-01-12Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto1-8/+0
Appearance is now being passed with AgentCircuitData, as it should be.
2010-01-11OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2-2/+2
2010-01-10NetworkServersInfo removed from CommsManager.Diva Canto1-3/+5
2010-01-10* OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto3-59/+47
* HG is seriously broken here * Compiles. Untested.
2010-01-08Inching ahead... This compiles, but very likely does not run.Diva Canto3-3/+0
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