aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/Caps/CapabilitiesModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-46/+104
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-53/+366
2012-11-12Cleanup on region modules: gave short node id's to all of them.Diva Canto1-1/+1
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-2/+3
<category/module>" to display commands in a category. This is to deal with the hundred lines of command splurge when one previously typed "help" Modelled somewhat on the mysql console One can still type help <command> to get per command help at any point. Categories capitalized to avoid conflict with the all-lowercase commands (except for commander system, as of yet). Does not affect command parsing or any other aspects of the console apart from the help system. Backwards compatible with existing modules.
2011-11-29On "show caps", stop excluding the seed cap but do exclude it elsewhereJustin Clark-Casey (justincc)1-1/+1
2011-11-29tabulate "show caps" output for easier readabilityJustin Clark-Casey (justincc)1-5/+10
2011-10-25Make OpenSim.Framework.Servers.HttpServer rely on OpenSim.Framework instead ↵Justin Clark-Casey (justincc)1-0/+1
of the other way around. This is necessary so that code in HttpServer can use framework facilities such as the thread watchdog for monitoring purposes. Doing this shuffle meant that MainServer was moved into OpenSim/Framework/Servers Also had to make OpenSim.Framework.Console rely on OpenSim.Framework rather than the other way around since it in turn relies on HttpServer MainConsole and some new interfaces had to be moved into OpenSim/Framework to allow this. This can be reverted if parts of OpenSim.Framework stop relying on console presence (cheifly RegionInfo)
2011-05-06Change command help text for "show capabilities" to "show caps", as this is ↵Justin Clark-Casey (justincc)1-2/+2
the actual command that has to be typed on the console. Thanks to makopoppo for the patch - http://opensimulator.org/mantis/view.php?id=5467
2011-05-02Changed the defaults, so that it behaves exactly is it has been behaving (no ↵Diva Canto1-0/+2
WebFetch cap by default).
2011-05-01Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto1-30/+20
registers/unregisters capabilities and a specific bunch of capability implementations in Linden space called BunchOfCaps. Renamed a few methods that were misnomers. Compiles but doesn't work.
2011-05-01Move CapabilitiesModule back to CoreModules. This one belongs there.Diva Canto1-1/+1
2011-04-30Nope, that didn't feel right. Moving all those modules to Linden space.Diva Canto1-1/+3
2011-04-30Moved several cap-based-service-providing modules from where they were into ↵Diva Canto1-1/+1
a newly created CoreModules/Caps. Not all.
2011-02-05Fixed Caps handlers leakDiva Canto1-1/+0
2011-02-05One more diagnosis command:Diva Canto1-1/+27
show caps
2010-08-20Unit test breakage fix.Diva Canto1-3/+3
2010-05-15Finalized the client's TCP IP address verification process for HG1.5.Diva Canto1-1/+1
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie1-1/+1
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-23Updates all IRegionModules to the new style region modules.Revolution1-1/+1
Signed-off-by: Melanie <melanie@t-data.com>
2009-10-01Formatting cleanup.Jeff Ames1-5/+5
2009-08-11Fixes a race condition in EQ processing that was making EQs pop up again ↵Diva Canto1-1/+1
upon client close. Commented remote call on GetSystemFolders again, so that it's not live yet.
2009-08-10Replace the Replaceable modules nameMelanie1-1/+1
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker1-0/+5
the ball rolling on replacable modules. No user functionality yet
2009-07-10Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker1-2/+2
Change all uses of the HttpServer properties to use the new singleton
2009-06-18* Corrected CAPS namespacesArthur Valadares1-1/+1
* "luke, use the sed"
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-25converting CapabilitiesModule to new region module schemeDr Scofield1-5/+22
2009-05-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva1-1/+1
-- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-4/+4
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-16* refactor: remove AssetCache field hanging off SceneJustin Clarke Casey1-1/+1
* This is always available at Scene.CommsManager.AssetCache
2009-02-12* optimized usings.lbsa711-3/+1
2009-02-09starting phase 2 of the OpenSim.Region.Environment commit: relocatingDr Scofield1-1/+1
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