aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2010-09-123-3/+3
|
* Made the HG asset and inventory brokers use the Helo service in order to ↵Diva Canto2010-09-081-6/+9
| | | | instantiate the right network connectors. Tested on Robust only.
* Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)2010-09-042-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.
* Create Scene.Inventory.cs.AddInventoryItem(InventoryItemBase item)Justin Clark-Casey (justincc)2010-09-041-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.
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2010-09-031-1/+1
|
* Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)2010-08-242-3/+21
| | | | | | goes to the correct directory Also removes some mono compiler warnings
* Add system lookup folder fix to the RemoveXInventoryServiceConnector as well ↵Justin Clark-Casey (justincc)2010-08-231-0/+17
| | | | since this presumably suffers from the same problem.
* Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2010-08-232-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
* Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)2010-08-234-5/+11
|
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2010-08-132-6/+4
|
* Removed some more debug messages.Diva Canto2010-07-141-18/+16
|
* Fixes additional bug reported in mantis #4841.Diva Canto2010-07-051-6/+6
|
* Renamed HGInventoryBroker2 to HGInventoryBroker.Diva Canto2010-05-021-2/+2
|
* Deleted HGInventoryBroker, so that the new one can take its name.Diva Canto2010-05-021-540/+0
|
* Switched everything to XInventory by default. The old Inventory is still ↵Diva Canto2010-05-021-83/+28
| | | | there for now, in case bugs pop up with XInventory.
* Merge branch 'master' of melanie@opensimulator.org:/var/git/opensimMelanie2010-04-302-142/+78
|\
| * * XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto2010-04-302-142/+78
| | | | | | | | * Removed a few buglets and added better exception handling.
* | Fix a null ref from trying to access a dictionary that was never initialized.Melanie2010-04-301-1/+2
|/
* Simplified RemoteXInventoryServiceConnector and HGBroker (2) by a lot.Diva Canto2010-04-292-279/+282
|
* Started redoing HGInventoryBroker for XInventory and with multi-protocol in ↵Diva Canto2010-04-293-0/+645
| | | | mind. Unfinished.
* XInventory connector/handler showing signs of life. Tested, but needs more ↵Diva Canto2010-04-271-0/+2
| | | | testing.
* RemoteXInventoryServiceConnector, the plugin region module. Not active in ↵Diva Canto2010-04-261-0/+324
| | | | default configs yet.
* 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
* Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2010-03-192-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.
* * 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.
* | Bug fix: change HGBroker to a INonSharedRegionModuleDiva Canto2010-01-302-69/+77
| |
* | On the way to making HG inventory work. Inventory can now be accessed again. ↵Diva Canto2010-01-291-110/+66
| | | | | | | | Assets are still broken.
* | Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto2010-01-121-8/+0
| | | | | | | | Appearance is now being passed with AgentCircuitData, as it should be.
* | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-112-2/+2
| |
* | NetworkServersInfo removed from CommsManager.Diva Canto2010-01-101-3/+5
| |
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-103-59/+47
| | | | | | | | | | * HG is seriously broken here * Compiles. Untested.
* | Inching ahead... This compiles, but very likely does not run.Diva Canto2010-01-083-3/+0
|/
* Bug fix: in standalone, HGInventoryBroker needs to get the local inventory ↵Diva Canto2009-12-211-2/+13
| | | | server URL from NetworkServersInfo.
* * Fixes http://opensimulator.org/mantis/view.php?id=4225Diva Canto2009-10-122-0/+5
| | | | | * Fixes http://opensimulator.org/mantis/view.php?id=3959 * Allows for viewing inventory textures outside home grid
* Minor bug fixes.Diva Canto2009-09-291-1/+1
|
* Moved all HG1 operations to HGGridConnector.cs and ↵Diva Canto2009-09-261-2/+7
| | | | | | HypergridServerConnector.cs/HypergridServiceConnector.cs, away from Region.Communications and HGNetworkServersInfo. Fixed small bugs with hyperlinked regions' map positions.
* Try to cache system folders if they aren't already there when one is requestedJustin Clark-Casey (justincc)2009-08-281-0/+13
| | | | This operation can be performed legitimately on standalones without a logged in user
* Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)2009-08-281-13/+34
|
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-224-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.
* 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-194-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).
* Async purge so that the client thread doesn't wait.Diva Canto2009-08-191-5/+5
|
* A better purge of trash folder.Diva Canto2009-08-194-14/+20
|
* GetFolderItems implemented. It's not being called, but it might.Diva Canto2009-08-182-3/+11
|
* jhurliman's patch in http://opensimulator.org/mantis/view.php?id=4024Diva Canto2009-08-181-2/+1
|
* Making attachments work again. Tons of debug more. This needs more testing ↵Diva Canto2009-08-161-1/+1
| | | | and a lot of cleaning.
* Returning UUID.Zero is scene and user profile service are null in ↵Diva Canto2009-08-141-0/+8
| | | | GetSession. This doesn't fix the underlying problem of these things being null -- they shouldn't be.
* Changed the way to get to the profile service. Changed GetSystemsFolder in ↵Diva Canto2009-08-142-5/+19
| | | | HGBroker.