aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Save the default terrain texture UUIDs for a new region instead of leaving ↵Justin Clark-Casey (justincc)2011-09-091-3/+2
| | | | | | | | | | | them as UUID.Zero. Leaving them at UUID.Zero meant that when a viewer 2 logged into a region that had been freshly created, it received UUID.Zero for these textures, and hence display the land as plain white. On a simulator restart, the problem would go away since when the database adapators loaded the new region settings, RegionSettings itself has code to use default textures instead of UUID.Zero. This commit resolves the problem by saving the default texture UUIDs instead of Zero. However, we currently have to do this in a roundabout way by resaving once the RegionSettings have been created by the database for the first time. This needless complexity should be addressed. This change will also have the effect of replacing any existing UUID.Zero terrain textures with the default ones. However, this shouldn't have any effect since the UUID.Zeros were already being replaced in memory with those same UUIDs.
* Don't need to try both AssetService.Get and GetCached in GetMesh since Get ↵Justin Clark-Casey (justincc)2011-08-181-36/+9
| | | | always calls GetCached and code paths were identical
* Comment verbose debug message in GetTextureDiva Canto2011-05-081-1/+1
|
* remove further mono compiler warningsJustin Clark-Casey (justincc)2011-05-061-2/+2
|
* Squish a warningMelanie2011-05-051-1/+0
|
* Fix the GetTexture path to /CAPS/GetTexture for now until we have real ↵Diva Canto2011-05-021-1/+1
| | | | capabilities.
* WebFetchInventoryDescendents working. Tested with robust.Diva Canto2011-05-023-0/+379
|
* Refactored the GetMesh module into a handler and a module, to be the same as ↵Diva Canto2011-05-024-0/+222
| | | | GetTexture.
* Works!Diva Canto2011-05-022-9/+6
|
* Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto2011-05-011-1235/+26
| | | | | | | 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.
* How this might look like from a configuration perspective. Changes ↵Diva Canto2011-05-011-0/+13
| | | | OpenSimDefaults.ini.
* Added OpenSim.Capabilities.Handlers. For the moment it has only the ↵Diva Canto2011-05-012-0/+429
| | | | GetTexture handler. The region module in Linden space uses it. WARNING: nothing of this works yet, it just compiles.
* Renamed OpenSim.Framework.Capabilities.dll to OpenSim.Capabilities.dllDiva Canto2011-04-3027-0/+3490