aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Presence (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-192-2/+18
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-2/+3
|
* minor: Fix more compiler warnings in CoreModules tests by properly ↵Justin Clark-Casey (justincc)2012-12-051-1/+4
| | | | overriding OpenSimTestCase.SetUp()
* Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)2012-11-241-2/+1
| | | | automatically turns off any logging enabled between tests
* If GetAgents() is called with an empty userIDs array then don't bother with ↵Justin Clark-Casey (justincc)2012-11-201-0/+4
| | | | | | | a useless potentially network call on the scene presence service connector. This also eliminates the "[PRESENCE HANDLER]: GetAgents called without required uuids argument" which has started to pop up in the logs when a call is made with an empty uuid array as occasionally happens.
* refactor: Move common presence connector code into BasePresenceServiceConnectorJustin Clark-Casey (justincc)2012-11-204-193/+145
|
* Last 27 modules' directives (service connectors out).Diva Canto2012-11-132-0/+4
|
* OnConnectionClosed listeners, retrieve data from IClientAPI.SceneAgent ↵Justin Clark-Casey (justincc)2012-06-121-1/+1
| | | | | | | rather than scanning all scene for the presence with the right id Stop checking IsLoggingOut on these listeners, if called with a root agent then we always want to perform these actions. This covers cases where the client is closed due to manual kick, simulator shutdown, etc.
* In PresenceDetector.OnConnectionClose(), use the IsChildAgent check already ↵Justin Clark-Casey (justincc)2012-06-121-12/+1
| | | | available on IClientAPI.SceneAgent rather than retrieving it again by scanning all scenes.
* Add simple login test with online friends. Add IFriendsModule.GrantRights() ↵Justin Clark-Casey (justincc)2012-03-301-6/+3
| | | | | | | for granting rights via a module call. Rename IFriendsModule.GetFriendPerms() -> GetRightsGrantedByFriend() to be more self-documenting and consistent with friends module terminology. Add some method doc.
* remove mono compiler warningsJustin Clark-Casey (justincc)2011-08-231-1/+1
|
* comment out some of the currently less useful debug log messagesJustin Clark-Casey (justincc)2011-08-111-1/+1
|
* Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)2011-05-211-1/+0
| | | | OpenSim.Tests.Common instead
* Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)2011-03-091-1/+0
| | | | This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
* for now, comment out some older or redundant log debug lines to make ↵Justin Clark-Casey (justincc)2010-10-291-2/+2
| | | | diagnostics easier
* Fixed Presence unit test. Removed unnecessary packing/unpacking of obsolete ↵Diva Canto2010-05-071-3/+1
| | | | fields.
* GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto2010-05-074-29/+17
| | | | | | home and position info in the presence service. WARNING: I violated a taboo by deleting 2 migration files and simplifying the original table creation for Presence. This should not cause any problems to anyone, though. Things will work with the new simplified table, as well as with the previous contrived one. If there are any problems, solving them is as easy as dropping the presence table and deleting its row in the migrations table. The presence info only exists during a user's session anyway. BTW, the Meshing files want to be committed too -- EOFs.
* * XInventory fairly tested, including for HG. Almost ready to switch.Diva Canto2010-04-301-1/+1
| | | | * Removed a few buglets and added better exception handling.
* Renamed TryGetAvatar to TryGetScenePresence on SceneManager, SceneBase, ↵Dan Lake2010-03-191-1/+1
| | | | 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.
* Formatting cleanup. Add copyright notices.Jeff Ames2010-03-101-2/+2
|
* Bug fix: store correct position information upon logout. Fixes mantis #4608Diva Canto2010-03-061-12/+17
|
* Fix LocalPresenceServiceConnector test now that the hardcoded test data has ↵Justin Clark-Casey (justincc)2010-03-052-1/+18
| | | | | | | | been removed from Data.Null.NullPresenceData Unfortunately, this meant publicly exposing the underlying service for the connector. The other solution would be to create alternative initializers for services and connectors where objects could be given directly rather than loaded indirectly through config. Unfortunately, this would require a lot of work in this case but might be the better way forward.
* Small bug fixes for making tests work.Diva Canto2010-02-211-1/+1
|
* * Changed IPresenceService Logout, so that it takes a position and a lookatDiva Canto2010-01-104-6/+22
| | | | * CommsManager.AvatarService rerouted
* * Finished SimulationServiceConnectorDiva Canto2010-01-071-1/+1
| | | | | * Started rerouting calls to UserService. * Compiles. May run.
* Unit tests for presence. They helped fix a couple of wrongnesses.Diva Canto2009-12-302-2/+115
|
* Adding new fields and home location methid to presence. Adding cleanupMelanie2009-12-282-0/+10
| | | | (deleting all but one presence record) on logout so that they don't pile up.
* Added some more log messages. This is beginning to work.Diva Canto2009-12-281-0/+5
|
* Database and presence changes. UntestedMelanie2009-12-282-6/+6
|
* * Added the new modules to Resources, making them active.Diva Canto2009-12-282-3/+3
| | | | * Added their configs to standalone for testing. This crashes, because the DB is still not ready.
* * Deleted HGPresenceBroker, since it won't be neededDiva Canto2009-12-282-257/+2
| | | | * Linked the remote presence module to the corresponding remote connector
* Presence remote connector and handler. Presence HG Broker. Nothing tested, ↵Diva Canto2009-12-273-1/+414
| | | | just compiles.
* Changed GetAgents to take string[] instead of UUID[]Diva Canto2009-12-271-2/+2
|
* First pass at the local connector for presence. No cache yet. Just the ↵Diva Canto2009-12-272-0/+266
connector to the local service and a presence detector object.