aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-09-02warnings safari.dr scofield (aka dirk husemann)1-1/+1
2009-08-28minor: formatting and commentsJustin Clark-Casey (justincc)1-1/+12
2009-08-26* Another attempt at fixing the random spurious test error.Teravus Ovares (Dan Olivares)2-0/+21
* This time it might be the listening socket thread from HttpServer aborting with a non blocking thread abort exception. Hopefully calling Stop() on MainServer.Instance will solve that.
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-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.
2009-08-22Moved AuthedSessionCache to where it is used -- Grid/InventoryServer.Diva Canto2-650/+0
2009-08-19Fixing a spot I missed in assets. Switching Grid to the new naming schema ↵Kunnis2-3/+3
with Store/Get
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-0/+5
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-19A better purge of trash folder.Diva Canto2-2/+4
2009-08-17Added one conditional missing on login, for creating inventory if it doesn't ↵Diva Canto1-1/+13
exist already. This hopefully fixes the master avatar problems on standalone.
2009-08-16uh. how about *really* removing it, and not just write a comment above, hey ↵Diva Canto1-1/+1
diva?
2009-08-16Remove the call to ResetAttachments upon login. The info in the DB should ↵Diva Canto1-1/+3
always have {itemID, assetID}.
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-0/+5
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto3-11/+11
starting to get on my nerves.
2009-08-11Re-adding a conditional in UserManager that was removed with arthusv's ↵Diva Canto1-1/+1
commit. Changing new inventory ops to POST.
2009-08-11Establish CachedUserInfo.OnInventoryReceived event so that region/test ↵Justin Clark-Casey (justincc)2-47/+68
inventory code can be written with the async inventory fetch
2009-08-11* Improves SceneSetupHelper to allow the tester to choose a real or mock, ↵Arthur Valadares3-128/+15
inventory and asset, service modules. The boolean startServices was replaced with realServices string. If the string contains the word asset, it will start a real asset module, if it contains inventory, it starts a real inventory. Otherwise, it use mock (NullPlugin-like) objects, for tests that don't really need functionality. * SetupScene is now actually sharing the asset and inventory modules if the tester wishes to have multiple regions connected. To link regions, just start SetupScene with the same CommunicationManager for all scenes. SceneSetupHelper will hold a static reference to the modules and won't initialize them again, just run the scenes through the modules AddRegion, RegionLoaded and PostInitialize. * With the recent changes, both asset and inventory (and in the future, user) services should always be asked from the scene, not instantiated alone. The tests should reflect this new behavior and always start a scene.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto1-0/+10
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto2-2/+2
2009-08-10Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto3-258/+2
ISecureInventoryService interfaces removed.
2009-08-10Conditional to prevent a null ref in tests. The tests may still not pass.Diva Canto1-1/+1
2009-08-10First pass at cleaning up old OGS1 and Local Inventory: removed ↵Diva Canto1-114/+0
everything-inventory in CommsManager, which wasn't actively used anymore.
2009-08-10AssetCache.addin.xml seems to be historical junk too. Removed.Diva Canto1-17/+0
2009-08-10More clean up from asset cache legacy. None of these classes are used anymore.Diva Canto4-1066/+0
2009-08-09Removed HGInventory out of core. This is part of HG2, which it now being ↵Diva Canto1-744/+0
developed outside.
2009-08-05* Remove some mono compiler warningsJustin Clark-Casey1-2/+2
2009-07-10* minor format changes and message additionsJustin Clarke Casey1-6/+20
2009-07-10* minor: standardize some logging messagesJustin Clarke Casey1-7/+10
2009-07-10* minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey1-9/+27
asset where appropriate * Send debug level notice to console if a user fails authentication
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-17/+3
Change all uses of the HttpServer properties to use the new singleton
2009-07-07* Allowing LLSD logins to do silent logout of last hung session on ↵Arthur Valadares1-8/+17
standalone only, following the already implemented XMLRPC behavior
2009-07-04Fix previous commitMelanie Thielker1-0/+1
2009-07-04Add the new field agent_access_max. Without it being set to "A", viewers fromMelanie Thielker1-0/+9
1.23 prevent the removal of underwear.
2009-06-27Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble2-3/+3
this.
2009-06-18* Corrected CAPS namespacesArthur Valadares2-3/+3
* "luke, use the sed"
2009-06-18Moved OpenSim/Framework/Communications/Capabilities up to ↵diva26-3286/+0
OpenSim/Framework/Capabilities. Didn't change the namespace because VC# is not helping, and this would imply manually changing more than 50 files. So the namespace is still OpenSim.Framework.Communications.Capabilities, to be cleaned up later by someone with more energy.
2009-06-17Implementation of a simple authentication service + in connector in route to ↵diva1-0/+2
making HGInventory (client access) work in standalone again. This is the refactoring of what was/is there, but done in the new model. Not complete yet, but key authentication works. It should be enough to make HGInventory work again soon.
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-1/+1
2009-06-11* Reinstating UserProfileCacheServiceTests. One test still fails ↵Arthur Valadares1-54/+98
(TestUpdateFolder)
2009-06-11InterServiceInventoryService references *almost* completely removed from the ↵diva3-8/+146
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
2009-06-10Bug fix for creating users in standalone: the newly-created root folder was ↵diva1-0/+3
not being set in the cached profile. I suspect this bug has been around for a while.
2009-06-10Attempt at disabling the inventory unit tests, so I can figure out how to ↵diva1-6/+6
fix them. The test setup is broken.
2009-06-10Heart surgery no.2: the inventory service hooks. diva5-86/+61
Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
2009-06-10Formatting cleanup.Jeff Ames2-2/+2
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva1-470/+0
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files.
2009-06-01* Making silent logoff of old hung sessions for new connections default forArthur Valadares2-3/+5
StandAlone users. Not touching grid.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames72-72/+72
LICENSE.txt.
2009-05-29* Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares1-4/+15
again" message and allow the region to kick the old user and log the new one without reporting any failure. Default is still to show message and fail login
2009-05-29* refactor: Remove redundent prim id attribute on Scene.AddSceneObject()Justin Clarke Casey1-2/+1
2009-05-26Catching weirdnesses on resolving External EndPoint in agent transfers. Will ↵diva1-5/+34
probably need to do more aggressively.
2009-05-26Addresses mantis #3718.diva1-1/+10