aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-05-09remove pointless region handle paramter from IClientAPI.SendKillObject()Justin Clark-Casey (justincc)2-2/+2
2013-05-08Adds an event and a method so that handling of the CachedTextureMic Bowman2-0/+12
packet can be pulled out of LLClientView and moved to AvatarFactory. The first pass at reusing textures (turned off by default) is included. When reusing textures, if the baked textures from a previous login are still in the asset service (which generally means that they are in the simulator's cache) then the avatar will not need to rebake. This is both a performance improvement (specifically that an avatars baked textures do not need to be sent to other users who have the old textures cached) and a resource improvement (don't have to deal with duplicate bakes in the asset service cache).
2013-04-27Unbreak the sample money moduleMelanie1-0/+2
2013-04-27Small oversight in EconomyDataRequest - this would have affected everyone ↵Melanie1-2/+0
NOT using a money module.
2013-04-25Change EconomyDataRequest signature to use an IClientAPI rather than UUID. ↵Melanie1-11/+6
This is needed because recent LL viewer codebases call this earlier in login when the client is not yet established in the sim and can't be found by UUID. Sending the reply requires having the IClientAPI.
2013-04-25Change copyright notice on DynamicMenuModule to proper BSDMelanie1-5/+26
2013-04-25Adding the dynamic menu module which allows registering new menu options in ↵Melanie1-0/+282
compliant viewers
2013-04-23Fix issue in ConciergeModule where UpdateBroker was sending malformed XML if ↵Justin Clark-Casey (justincc)1-2/+4
any number of avatars other than 1 was in the region. I don't know how well the rest of ConiergeModule works since I've practically never looked at this code. Addresses http://opensimulator.org/mantis/view.php?id=6605
2013-04-22Allow callers to set the invoice parameter for GenericMessageMelanie2-4/+4
2013-04-20Materials persistence via SceneObjectPart.dynAttrs. This appears to work ↵dahlia1-8/+154
across region restarts and taking objects into inventory, but probably will not work across archiving via OAR or IAR as materials texture assets may not be adequately referenced to trigger archiving.
2013-04-20handle PUT verb for RenderMaterials Capdahlia1-1/+5
2013-04-19RenderMaterials POST Cap now return material entries when invoked with an ↵dahlia1-61/+108
OSDArray of MaterialIDs
2013-04-18remove default parameter value that apparently mono cant handledahlia1-1/+1
2013-04-18Initial experimental support for materials-capable viewers. This is in a ↵dahlia1-0/+382
very early stage and this module is disabled by default and should only be used by developers for testing as this module could cause data corruption and/or viewer crashes. No materials are persisted yet.
2013-03-28Stop attempts to update/add existing attachments in user inventory when ↵Justin Clark-Casey (justincc)1-1/+1
teleporting between regions. This appears to resolve issues on teleport where attachments disappear or become labelled as invalid within user inventory.
2013-03-26Phase 1 of implementing a transfer permission. Overwrite libOMV's PermissionMaskMelanie2-1/+3
with our own and add export permissions as well as a new definition for "All" as meaning "all conventional permissions" rather than "all possible permissions"
2013-03-23Add "show borders" command to show the borders of a region.Justin Clark-Casey (justincc)1-0/+31
This is relevant to mega-regions where the borders are very different to a regular region. Also adds some method doc and other code comments.
2013-03-20Fix "show attachments" command probably broken in commit addab12 (Wed Jan 2 ↵Justin Clark-Casey (justincc)1-10/+7
21:38:00 2013) This break was not connected with the recent attachment code changes.
2013-03-18Multiattach, part 1Melanie1-1/+1
Conflicts: OpenSim/Framework/AvatarAppearance.cs OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs OpenSim/Region/Framework/Scenes/Scene.cs OpenSim/Region/OptionalModules/Avatar/Attachments/TempAttachmentsModule.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
2013-03-15Fix server statistics always reporting zero for total network bytes in/out.Robert Adams1-15/+26
Clean up some parameter code in Statistics.Binary.
2013-03-05Per discussions with justincc... split the JsonStore typeMic Bowman4-34/+130
functions into one for node type and one for value type. Define and export constants for both nodes and values.
2013-03-02Fixed typos in TempAttachmentsModule. No changes.Diva Canto1-1/+1
2013-03-02minor: Quieten down the parts of the WebSocketEcho module logging for now ↵Justin Clark-Casey (justincc)1-6/+7
where it tells us it is added/loaded/removed from regions
2013-03-01Moved permissions config vars out of [Startup] into [Permissions]. Backwards ↵Diva Canto1-2/+3
compatible ([Startup] still being looked up), but please update your configs sometime soon.
2013-03-01Add the Mono AddinDependency attribute to the example region modules.Justin Clark-Casey (justincc)2-2/+4
It turns out this is required to get Mono.Addins to pick up plugin DLLs
2013-02-27Add comment to example region modules about need to add Assembly annotation ↵Justin Clark-Casey (justincc)2-0/+10
if adding modules to a DLL which does not already have this
2013-02-27Make sure we dispose of WebResponse, StreamReader and Stream in various ↵Justin Clark-Casey (justincc)3-32/+47
places where we were not already.
2013-02-24Streamline stat registration code in ServerStats. Remove most of theRobert Adams1-160/+50
usage of ProcessCounters which tend to fail oddly and are not supported everywhere.
2013-02-24Addition of ServerStats shared region module which collects and registersRobert Adams1-0/+438
server wide statistics (CPU%, network bytes sent, ...) with StatsManager.
2013-02-21minor: Change summary in "show appearance" console command to "incomplete" ↵Justin Clark-Casey (justincc)1-1/+1
rather than "corrupt" Corrupt is misleading - it implies textures were uploaded but are not j2k valid. The actual situation is that at least one required baked texture is not present.
2013-02-19Fix the JsonStore path set problem justincc found earlier today andMic Bowman3-95/+3
remove the deprecated TestPath functions.
2013-02-19Deleted all AssemblyFileVersion directivesDiva Canto1-1/+1
2013-02-19Convert JsonTestPath() use in json regression tests to JsonGetPathType() insteadJustin Clark-Casey (justincc)1-10/+10
2013-02-18minor: Rename regression test method TestGetArrayLength() -> ↵Justin Clark-Casey (justincc)1-1/+1
JsonTestGetArrayLength() to match others
2013-02-15Enable one sub-test in TestJsonSetValue() which now works (using identifier ↵Justin Clark-Casey (justincc)1-17/+13
with embedded .). Need to look further at other still commented tests. Still need to check coverage against some of Mic's scripts.
2013-02-15Rename JsonSetValueJson() -> JsonSetJson() and JsonGetValueJson() -> ↵Justin Clark-Casey (justincc)2-15/+15
JsonGetJson() This is because JsonGetJson() is getting json from anywhere in the structure, not just values. Equally, JsonSetJson() is setting any type of json, not just json which represents a value. Agreed with cmickeyb
2013-02-15Comment out regression TestJsonTestPath and TestJsonTestPathJson as these ↵Justin Clark-Casey (justincc)1-62/+62
will go away soon
2013-02-15Add regression TestJsonList2Path()Justin Clark-Casey (justincc)1-2/+27
2013-02-14Add regression TestGetArrayLength()Justin Clark-Casey (justincc)1-0/+33
2013-02-14Add regression TestJsonGetPathType()Justin Clark-Casey (justincc)1-0/+47
2013-02-14Rename new JsonScript functions JsonPathType() -> JsonGetPathType() and ↵Justin Clark-Casey (justincc)2-6/+6
JsonArrayLength() -> JsonGetArrayLength() This is for consistentency with the verb:noun naming approach existing json script functions and other script functions. Corresponding c# methods also changed since verb:noun is also the .net c# method naming guideline (as used by OpenSimulator) and for consistency with script functions. As agreed with cmickeyb
2013-02-14Make new JsonStore script constants separated with underscores, to be ↵Justin Clark-Casey (justincc)1-5/+5
consistent with existing LSL/OSSL, etc script constants. Agreed with cmickeyb
2013-02-13Adds a couple requested functions to the JsonStore scriptMic Bowman3-1/+147
interface. JsonPathType returns the type of node pointed to by the path and deprecates the functionality of both JsonTestPath functions. JsonArrayLength returns the length of an array node.
2013-02-12Make path parsing more robust in the JsonStore.Mic Bowman1-12/+6
2013-02-13Add more sub-tests to TestJsonSetValue for paths containing []{} without {} ↵Justin Clark-Casey (justincc)1-5/+86
delineation. As expected, values are not set and the set call returns FALSE (0). As a reminder, these tests are not currently running on jenkins continuous integration as the functionality is only available on .net 4 (mono 2.8 and later).
2013-02-13Extend JsonTestSetValue() with tests for escaping brackets, periods and ↵Justin Clark-Casey (justincc)1-2/+71
unbalanced braces from paths The sub-tests that are commented out are currently those which fail unexpectedly based on my understanding of the path syntax
2013-02-13Add test for array as root element in TestJsonCreateStore()Justin Clark-Casey (justincc)1-0/+9
2013-02-13Extend TestJsonRemoveValue() with tests for non-penultimate nodes and arraysJustin Clark-Casey (justincc)1-13/+57
2013-02-12Extend TestJsonCreateStore() with a one key input and an input with raw ↵Justin Clark-Casey (justincc)1-2/+20
number values
2013-02-12Re-enable subtest for single quoted token in TestJsonSetValueJson()Justin Clark-Casey (justincc)1-9/+9
This is in response to the resolution of http://opensimulator.org/mantis/view.php?id=6540