aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Agent/Capabilities/CapabilitiesModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-09starting phase 2 of the OpenSim.Region.Environment commit: relocatingDr Scofield1-210/+0
OpenSim.Region.Environment.Modules.Agent en bloc to OpenSim.Region.CoreModules
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-3/+3
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-02-03OK, commenting the return again :-/diva1-2/+2
2009-02-01Putting the return back in AddCapsHandler upon attempt at adding CAPs twice. ↵diva1-2/+5
The return seems to have been commented in 8038, as an attempt at fixing multiple TP problems later identified to be deadlocks. CAPs should never be overwritten, or the viewer can get confused. Right now this method is erroneously being called twice because of legacy code. I'll fix that later, after further testing.
2009-01-22* Change the currently misleading log message when capabilities are added ↵Justin Clarke Casey1-15/+16
twice, and provide some more information * No functional change * It strikes me that there may be caps problems if double registration is presented if cleanup failed for a previous agent (so a caps handler will remain in memory for that agent but with a different seed). This needs investigation
2009-01-22* Caught 2 dictionary exceptions that were unhandledSean Dague1-1/+3
From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-01-21* refactor: Extract caps related code from scene and put into a region moduleJustin Clarke Casey1-0/+204
* No functional changes in this revision