aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-2/+2
|
* * refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey2009-03-191-2/+3
| | | | via CommunicationsManager directly
* * Made Seed CAP response respect the SSL setting.Teravus Ovares2008-09-141-1/+27
|
* Formatting cleanup.Jeff Ames2008-05-161-8/+8
|
* * Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2008-05-011-2/+2
| | | | with namespaces.
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-211-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | the attached patch set is centered around RemoteAdminPlugin and focuses mainly on making it more robust (i.e. more parameter checking and better error reporting) but also we've re-implemented the LoadTerrain stuff that got disabled during the terrain code reworking: * missing PostInitialize() calls on region modules that were loaded for regions created via RemoteAdmin's CreateRegion XmlRpc call * re-implements RemoteAdmin's LoadTerrain XmlRpc call (probably lost during the TerrainModule rework) * adds lots more parameter checking and error reporting to RemoteAdmin * adds a read-only property to RegionApplicationBase so that we can access the CommsManager * adds Exceptions to TerrainModule so that we get better error case feedback (and can report more meaningful errors in turn) * adds a CheckForTerrainUpdate() call to TerrainModule.LoadFromFile() to make terrain changes effective * adds TryGetCurrentScene(LLUUID) to SceneManager so that we can retrieve Scenes not only by name but also by LLUUID cheers, dr scofield
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-6/+0
| | | | (this took a while to run).
* * Re-Fixed caps Teravus Ovares2008-04-171-0/+2
| | | | | * This fixes chi11ken's/OpenViewer's libsl cap issue.
* Update svn properties.Jeff Ames2008-04-031-144/+144
|
* * From: Dr Scofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-031-0/+144
* This patch removes voice code into a region module. This required the implementation of events and other code to allow region modules to register their own caps handlers, and should allow different voice module implementations. * CAVEAT: This does not provide complete voice support, it merely provides the hooks so that it can be plugged in.