aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-194-53/+64
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-034-109/+194
|
* Last 27 modules' directives (service connectors out).Diva Canto2012-11-133-0/+6
|
* Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)2012-07-251-1/+1
| | | | This better reflects the long-term purpose of that project and matches Monitoring modules.
* Finish the implementation of GetUserInventory, even though it's still not used.Diva Canto2012-04-063-12/+97
|
* Let grided simulators retrieve the user's inventory skeletonDiva Canto2012-03-271-1/+1
|
* More on inventory transfer hold ups:Diva Canto2012-03-092-2/+77
| | | | | | - Added an inventory cache for caching root and system folders - Synchronized the remote inventory connector, so that all the remote inventory calls are serialized This will not make much difference in the hold ups. We'd have to move the FireAndForget high up to AddInventoryItem, but that opens up a can of worms regarding the notification of the recipient... the recipient would be notified of the offer before the items are effectively in his inventory, which could lead to surprises.
* Added UserManagementModule.IsLocalGridUser(UUID) to be used throughout ↵Diva Canto2011-12-291-2/+2
| | | | region Scenes and Modules. Changed existing modules to use it instead of assuming that foreign = null account.
* Deleted two obsolete files in Inventory modules.Diva Canto2011-12-292-460/+0
|
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-11-141-2/+1
|
* Shuffle order of code in invnetory connector GetFolderContent() calls to ↵Justin Clark-Casey (justincc)2011-09-152-12/+18
| | | | avoid a possible race condition
* Use a copy of the inventory items list to register users in the thread ↵Justin Clark-Casey (justincc)2011-09-092-2/+8
| | | | | | started by GetFolderContent(), to protect ourselves against callers modifying lists Hopefully this addresses http://opensimulator.org/mantis/view.php?id=5681
* When a region is added to the HG Inventory Broker, also pass this through to ↵Justin Clark-Casey (justincc)2011-09-073-21/+41
| | | | | | | | the embedded local inventory connector to prevent an NRE when that connector tries to lookup the UserManager through the scene. This is to address http://opensimulator.org/mantis/view.php?id=5669 However, if this failure was happening I'm kind of surprised that local HG inventory was working at all..... We probably weren't seeing these exceptions previously because we weren't logging them when the reached the top of a FireAndForget thread.
* Add temporary debugging in HGInventoryBroker and ↵Justin Clark-Casey (justincc)2011-09-062-17/+33
| | | | | | | RemoveXInventoryServiceConnector This is for http://opensimulator.org/mantis/view.php?id=5669 If we can't retrieve an IUserManagement module we complain, and we also warn in the log when its manually set in XISC by HGInventoryBroker
* Allow the HGInventoryBroker to set the UserManager when it instantiates a ↵Justin Clark-Casey (justincc)2011-09-052-3/+15
| | | | | | | RemoteXInventoryServiceConnector for a visiting HG user. Not doing this causes NREs whenever that user tries to access inventory when Hypergrid is turned on since the Remote connector does not have a scene (which is only used to fetch the UserManager) Aims to address http://opensimulator.org/mantis/view.php?id=5669
* remove mono compiler warningsJustin Clark-Casey (justincc)2011-08-231-1/+1
|
* For now, supress 'OH NOES' warnings given by ↵Justin Clark-Casey (justincc)2011-08-171-5/+5
| | | | | | | HGInventoryBroker.CacheInventoryServiceURL when it tries to cache it for an NPC This concept is meaningless for NPCs. However, it might be better to make NPCism an actual property on ScenePresence and check. Addresses http://opensimulator.org/mantis/view.php?id=5643
* stop the local inventory services connector from logging an error when an ↵Justin Clark-Casey (justincc)2011-07-081-3/+3
| | | | | | item id isn't found. making this query is legitimate and so the log line can cause false positivies. It is up to callers to log an error if appropriate.
* HG inventory transfers over the profile working.Diva Canto2011-05-271-2/+9
|
* Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto2011-05-241-0/+16
| | | | window, but can't test because this mechanism doesn't seem to work without a profile service.
* Made things consistent between LocalInventoryServiceConnector and ↵Diva Canto2011-04-252-11/+32
| | | | RemoteXInventoryServiceConnector on GetFolderContent.
* Added an additional debug message, and removed a bunch of files that weren't ↵Diva Canto2011-02-042-362/+5
| | | | being used anymore -- the old RemotsInventory connectors stuff.
* Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2010-11-212-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).
* Removed a couple of very verbose debug messages.Diva Canto2010-10-311-2/+2
|
* 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
|\