aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-06-04Warnings--onefang1-1/+1
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang3-337/+2025
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2-28/+151
2013-02-08* the root prim was being given an OffsetPosition in addition to setting the ↵teravus1-1/+1
position when creating the root prim. The offset position caused the positioning code to re-move the root prim when you selected it and released it.
2013-02-08Try to fix uploaded mesh rotations - code from Avination code base.Melanie1-12/+27
2013-01-25Add the new UpdateAgentInformation cap to make maturity on more recent viewersMelanie1-2/+20
work.
2012-11-12Cleanup on region modules: gave short node id's to all of them.Diva Canto1-1/+1
2012-10-16minor: comment out "Registered seed capability" message for "Received SEED ↵Justin Clark-Casey (justincc)1-4/+5
caps request" message for now. I think this is more useful right now since it tells us if the viewer requested a seed caps at all in various scenarios (such as when teleporting to a new region).
2012-08-03Consolidate PersistBakedTextures, DelayBeforeAppearanceSend and ↵Justin Clark-Casey (justincc)1-1/+6
DelayBeforeAppearanceSave into [Appearance] section from [Startup] config section so that all appearance settings are in the same place and not in the startup bucket. All these settings are in OpenSimDefaults.ini only. If you are using them then please adjust your OpenSim.ini
2012-05-09Improve logging on the prim inventory script asset request path for future use.Justin Clark-Casey (justincc)1-1/+1
This adds name and description of the request handler to http request logging when DebugLevel >= 1
2012-05-03Implement optional name and description on http stream handlers so that we ↵Justin Clark-Casey (justincc)1-10/+37
can relate a slow request to what the handler actually does and the agent it serves, if applicable. This is most useful for capabilities where the url is not self-describing.
2012-04-26minor: Add more detail to unauthorized caps client messageJustin Clark-Casey (justincc)1-1/+4
2012-03-27User level based restrictions for HyperGrid teleports, asset uploads, group ↵Snoopy Pfeffer1-7/+27
creations and getting contacted from other grids. Incoming HyperGrid teleports can also be restricted to local users.
2012-03-20minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-1/+1
2012-03-02comment out "[CAPS]: ScriptTaskInventory Request" log spamJustin Clark-Casey (justincc)1-1/+1
2012-02-10When an asset is uploaded (e.g. a mesh) set individual copy/move/transfer ↵Justin Clark-Casey (justincc)1-2/+7
permissions, not PermissionMask.All Setting PermissionMask.All will cause next permissions to replace current permissions when the object is rezzed, since bit 4 will be set. This is not correct behaviour for a freshly uploaded mesh. Freshly rezzed in-world prims also do not have bit 4 set (don't yet know exactly what this is). Should resolve http://opensimulator.org/mantis/view.php?id=5651
2012-01-29Fix:Get embedded objects in notecard ↵PixelTomsen1-0/+71
http://opensimulator.org/mantis/view.php?id=2607 Signed-off-by: nebadon <michael@osgrid.org>
2012-01-28Remove IClientAPI from the money module. It was only used to pass in theMelanie1-2/+2
agent id anyway
2011-12-05Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)1-3/+3
of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
2011-12-01refactor: Separate the upload baked texture handler out from BunchOfCapsJustin Clark-Casey (justincc)1-122/+1
2011-11-29On "show caps", stop excluding the seed cap but do exclude it elsewhereJustin Clark-Casey (justincc)1-1/+2
2011-11-26Rip out unused Scene.HandleFetchInventoryDescendentsCAPS().Justin Clark-Casey (justincc)1-1/+0
This has been handled by WebFetchInvDescHandler.Fetch() for some time.
2011-11-01Removed redundant SceneContents property from Scene. It's the same as ↵Dan Lake1-1/+1
SceneGraph property.
2011-08-30Fix bug in persisting saved appearances for npcsJustin Clark-Casey (justincc)1-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
2011-08-11comment out some of the currently less useful debug log messagesJustin Clark-Casey (justincc)1-1/+1
2011-08-04minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-2/+2
2011-07-15minor: method doc for baked texture uploadingJustin Clark-Casey (justincc)1-2/+15
2011-07-11Fix permissions problem where newly uploaded meshes rezzed from inventory ↵Justin Clark-Casey (justincc)1-1/+1
could not be copied by owner.
2011-07-07add MeshUploadFlag capability fixed mesh upload with latest mesh viewer ↵Michael Cerquoni aka Nebadon Izumi1-18/+22
thank you dahlia and lkalif for helping to make this happen!
2011-06-24Implement the latest mesh mechanism so that rezzing the uploaded mesh now ↵Justin Clark-Casey (justincc)1-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!).
2011-06-24minor: method documentationJustin Clark-Casey (justincc)1-6/+8
2011-05-02Fixed: EventQueueGet and other caps were being wrongly deregistered. Also ↵Diva Canto1-2/+0
CapabilitiesModule was being instantiated twice (damn Mono.Addins).
2011-05-02WebFetchInventoryDescendents working. Tested with robust.Diva Canto1-279/+6
2011-05-02Works!Diva Canto2-4/+11
2011-05-01Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto2-0/+1297
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.