aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix bugs in EventQueueGetModule.ClientClosed() and ↵Justin Clark-Casey (justincc)2011-10-242-4/+22
| | | | | | BaseHttpServer.RemovePollServerHTTPHandler() that stopped existing code in ClientClosed() from actually tearing down the poll handler Actually doing the tear down appear to have no ill effects with region crossing and teleport.
* separate out future common setup code from EventQueueTests.AddForClient()Justin Clark-Casey (justincc)2011-10-241-8/+14
|
* Add new EventQueueTests with basic test to check that adding a client ↵Justin Clark-Casey (justincc)2011-10-242-1/+72
| | | | registers an http poll
* Improve locking when access queue in EventQueueGetModuleJustin Clark-Casey (justincc)2011-09-241-14/+17
|
* Eliminate pointless checks of SOG.RootPart != nullJustin Clark-Casey (justincc)2011-09-011-2/+0
| | | | It's never possible for SOG to have no RootPart, except in the first few picosends of the big bang when it's pulled from region persistence or deserialized
* Fix bug in persisting saved appearances for npcsJustin Clark-Casey (justincc)2011-08-301-1/+0
| | | | | Assets have to be marked non-local as well as non-temporary to persist. This is now done. Hopefully addresses http://opensimulator.org/mantis/view.php?id=5660
* refactor: move SOP.IsAttachment and AttachmentPoint up into SOG to avoid ↵Justin Clark-Casey (justincc)2011-08-271-1/+1
| | | | pointless duplication of identical values
* Remove forcing of phantom on ground attached objects - attachments can be ↵Justin Clark-Casey (justincc)2011-08-241-2/+2
| | | | | | both non-phantom and flagged as physical. As per Melanie
* minor: comment out simulator features log lineJustin Clark-Casey (justincc)2011-08-221-1/+1
|
* Add ISimulatorFeaturesModule so that other modules can register features in ↵Justin Clark-Casey (justincc)2011-08-221-36/+86
| | | | addition to the hardcoded ones.
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-08-162-5/+6
|
* comment out some of the currently less useful debug log messagesJustin Clark-Casey (justincc)2011-08-113-5/+5
|
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-08-042-4/+4
|
* refactor: make SceneObjectGroup.GroupScale() a property rather than a mehodJustin Clark-Casey (justincc)2011-07-161-4/+6
|
* minor: method doc for baked texture uploadingJustin Clark-Casey (justincc)2011-07-151-2/+15
|
* Fix permissions problem where newly uploaded meshes rezzed from inventory ↵Justin Clark-Casey (justincc)2011-07-113-8/+4
| | | | could not be copied by owner.
* minor: code tidy and inserted log lines for future use.Justin Clark-Casey (justincc)2011-07-091-3/+1
| | | | | | | | Unable to get to the bottom of why resizing a mesh fails to properly reset the physics proxy, when toggling phantom does After a mesh is generated, the existing sculptdata is set to zero in PrimitiveBaseShape to save memory When phantom is toggled, the sculptdata is regenerated before remeshing. But on resize, the sculptdata is not regenerated. So clearly, resetting sculptdata is possible, but haven't quite been able to pin down how this is being done when phantom is toggled.
* Switch the MeshUploadFlag CAP module on and off with the existing config ↵Justin Clark-Casey (justincc)2011-07-071-14/+35
| | | | | | AllowMeshUpload flag in [Mesh] (in OpenSimDefaults.ini) Default is on.
* Make MeshUploadFlagModule non-shared rather than shared (since each scene ↵Justin Clark-Casey (justincc)2011-07-071-1/+1
| | | | needs its own cap)
* add MeshUploadFlag capability fixed mesh upload with latest mesh viewer ↵Michael Cerquoni aka Nebadon Izumi2011-07-072-18/+150
| | | | thank you dahlia and lkalif for helping to make this happen!
* Implement the latest mesh mechanism so that rezzing the uploaded mesh now ↵Justin Clark-Casey (justincc)2011-06-241-3/+189
| | | | | | | works again. Many thanks to the aurora project for pioneering this. This code is almost certainly not bug free, but it does at least appear to handle simple meshes (except when the viewer crashes - but it is beta!).
* minor: method documentationJustin Clark-Casey (justincc)2011-06-241-6/+8
|
* Added SimulatorFeatures capability. Thanks Aurora devs for the bootstrap on ↵Diva Canto2011-06-131-22/+49
| | | | | | the contents of the response. Changed the experimental capability introduced a couple of commits ago: now sending that extra information as part of the response in the SimulatorFeatures cap.
* Same processing of the "/" in the MapImageService Cap as the one in the ↵Diva Canto2011-06-131-0/+6
| | | | login service.
* Added experimental new capability URL called MapImageService meant to work ↵Diva Canto2011-06-131-0/+119
| | | | with Kokua viewer if devs are willing to do it.
* Test m_Enabled on RemoveRegion.Diva Canto2011-05-043-0/+9
|
* Fixed: EventQueueGet and other caps were being wrongly deregistered. Also ↵Diva Canto2011-05-022-5/+3
| | | | CapabilitiesModule was being instantiated twice (damn Mono.Addins).
* WebFetchInventoryDescendents working. Tested with robust.Diva Canto2011-05-022-279/+137
|
* Refactored the GetMesh module into a handler and a module, to be the same as ↵Diva Canto2011-05-022-113/+40
| | | | GetTexture.
* Works!Diva Canto2011-05-024-10/+34
|
* Start to drill down on GetTexture. Read the config and do different things.Diva Canto2011-05-011-4/+12
|
* Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto2011-05-014-3/+1300
| | | | | | | 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.
* Change GetTextureModule.cs to conform to the new IRegion module interface. ↵Diva Canto2011-05-011-6/+21
| | | | NOTHING OF THIS WORKS. Compiles.
* Move CapabilitiesModule back to CoreModules. This one belongs there.Diva Canto2011-05-011-257/+0
|
* Added OpenSim.Capabilities.Handlers. For the moment it has only the ↵Diva Canto2011-05-011-311/+4
| | | | GetTexture handler. The region module in Linden space uses it. WARNING: nothing of this works yet, it just compiles.
* Nope, that didn't feel right. Moving all those modules to Linden space.Diva Canto2011-04-307-0/+1893
|
* First stab at cleaning up Caps. Compiles. Untested.Diva Canto2011-04-302-0/+1128