aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cleaning up RegionReadyModule:dr scofield (aka dirk husemann)2009-08-312-24/+45
| | | | | - wrong namespace - converted to "new" region module
* Add copyright header. Formatting cleanup.Jeff Ames2009-08-212-4/+9
|
* * oops. Mistake with value return.Adam Frisby2009-08-211-0/+6
|
* * Moves NPC Creation across AppDomains to prevent a major perfomance issue.Adam Frisby2009-08-211-18/+68
|
* * Make cache, actually cache.Adam Frisby2009-08-211-1/+5
|
* * Implements a cache in NPCModule for Appearance.Adam Frisby2009-08-211-1/+11
|
* * Fixing an issue with NPC's and Circuit Codes.Adam Frisby2009-08-211-0/+3
|
* * Fleshes more of NPCModule out.Adam Frisby2009-08-211-13/+19
| | | | | | | | | * Implements some OSSL commands: key osNpcCreate(string user, string name, vector position, key cloneFrom); void osNpcMoveTo(key npc, vector position); void osNpcSay(key npc, string message); void osNpcRemove(key npc); * Untested. Requires ThreatLevel.High.
* * Implements a bunch of stuff in NPCModuleAdam Frisby2009-08-211-8/+56
|
* Apply http://opensimulator.org/mantis/view.php?id=3538Justin Clark-Casey (justincc)2009-08-172-4/+18
| | | | | | Add ability to silence IRC relay of region joins and quits from certain users This is useful for admins who wish to remain hidden, or service bots. Thanks RemedyTomm
* Added additional configuration options for MRM Security. See ↵Adam Frisby2009-08-181-8/+22
| | | | OpenSim.ini.example under the [MRM] section.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimAdam Frisby2009-08-182-2/+29
|\
| * Add copyright header. Formatting cleanup.Jeff Ames2009-08-172-2/+29
| |
* | * Implementing a bunch of Unimplemented MRM stubs.Adam Frisby2009-08-182-10/+27
|/
* * Implements AppDomain Security for MRM Scripts.Adam Frisby2009-08-171-2/+101
| | | | * Added permissionLevel attribute to [MRM] section in OpenSim.ini. Default is 'Internet', however may be any of the following (case sensitive), FullTrust, SkipVerification, Execution, Nothing, LocalIntranet, Internet, Everything. For previous functionality, set to FullTrust or Execution.
* * Implements ISecurityCredential member on SPAvatar, SPAvatarAttachmentAdam Frisby2009-08-165-9/+17
| | | | * Disables 'event not used' warning for IRCClientView; cuts OpenSim total warnings back.
* * Refactor: Moves IAvatarAttachment into IAvatarAttachment.cs instead of ↵Adam Frisby2009-08-162-13/+15
| | | | IAvatar.cs
* * Implements ISecurityCredential on all uses of SOPObject.cs except Avatar ↵Adam Frisby2009-08-162-2/+2
| | | | Attachments.
* * [MRM] Added permission checks to MRM Events (ie, requires edit permission ↵Adam Frisby2009-08-161-6/+9
| | | | to bind to OnTouch)
* * Fixes potential NulRef in MRM Security Checks.Adam Frisby2009-08-162-3/+4
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimAdam Frisby2009-08-165-2/+58
|\
| * Add copyright headers. Formatting cleanup.Jeff Ames2009-08-162-1/+55
| |
| * Misc cleanup.Jeff Ames2009-08-161-1/+1
| |
| * Thanks dmiles for a patch that adds PacketType.RequestMultipleObjects Packet ↵Adam Johnson2009-08-162-0/+2
| | | | | | | | Handler - ref mantis #4010
* | * [MRM] Implements permission checks on IObject implementations in ↵Adam Frisby2009-08-163-9/+92
|/ | | | SOPObject.cs. Does not implement security on IObjectInventory yet.
* * Beginnings of a Security Credential system in MRM. This will eventually ↵Adam Frisby2009-08-166-13/+62
| | | | lead to trusted execution of untrusted MRMs.
* Replace the Replaceable modules nameMelanie2009-08-108-8/+8
|
* Formatting cleanup.Jeff Ames2009-08-094-6/+6
|
* Patch from otakup0pe:Melanie2009-08-083-34/+51
| | | | | A better solution for making the FreeSwitch module cooperate with existing installations
* This is the second part of the 'not crash on regionsize changes'. This ↵Teravus Ovares (Dan Olivares)2009-08-075-7/+7
| | | | lets you configure region sizes to be smaller without crashing the region. I remind you that regions are still square, must be a multiple of 4, and the Linden client doesn't like anything other then 256. If you set it bigger or smaller, the terrain doesn't load in the client, the map has issues, and god forbid you connect it to a grid that expects 256m regions.
* From: Snowcrash <Snowcrash.short@gmail.com>Melanie2009-08-073-4/+13
| | | | | | | | | | | | | Date: Wed, 5 Aug 2009 12:45:56 +0200 Subject: [PATCH] A few minor tweaks to the MRM API's in order to make it possible for MRM's to run in a separate AppDomain without poluting the primary appdomain of OpenSim Specifically: Added an explicit method for getting the "globals" of the MRM, removing the need to have the MRM script code loaded into the primary domain, in order to set up proxies Added a [Serializable] attribute to TouchEventArgs, again in order to remove the need to have MRM script code loaded into the primary domain. --------- Applied with whitespace changes
* Merge branch 'groups-core-contrib' of git://github.com/mcortez/opensim into ↵Sean Dague2009-08-075-134/+235
|\ | | | | | | incoming
| * Fixing comments re: INI file.Michael Cortez2009-08-061-3/+3
| |
| * Continue with renaming of Groups module componentsMichael Cortez2009-08-053-27/+29
| |
| * Fixes mono Add-In references for the OptionalModules add-in so that groups ↵Michael Cortez2009-08-055-5/+6
| | | | | | | | doesn't throw errors, and so that the add-in is correctly reported as "OptionalModules" rather then as "SampleMoney"
| * Begin refactoring XmlRpcGroups to a more generic Groups module that allows ↵Michael Cortez2009-08-054-106/+201
| | | | | | | | for replaceable Groups Service Connectors.
* | * Implements MRM's Stop() interface member.Adam Frisby2009-08-072-0/+10
| | | | | | | | * MRM Scripts should do appropriate cleanup within this event, to allow for clean shutdowns and script updates. This means unbinding from events you are listening to, and releasing any resources.
* | Remove bad assembly identification tagMelanie2009-08-051-3/+0
|/
* Revert the #3899 patch and it's two follow upsMelanie2009-08-043-49/+32
|
* Update a misspelled nameMelanie2009-08-041-1/+1
|
* Change the freeswitch out connector (which is pointless) to an in connectorMelanie2009-08-041-59/+44
|
* Add the region module shell for the new freeswitch serviceMelanie2009-08-041-0/+128
|
* If the FreeSwitch context is unset or "public", then accept any context.Melanie2009-08-041-1/+1
| | | | This restores the "out of the box" functionality.
* Output the Freeswitch context received and the context set up in theMelanie2009-08-041-1/+1
| | | | debugging message so a mismatch can be corrected more easily
* * Tweak the caps manager so that the NPCAvatar works again.Teravus Ovares2009-08-012-3/+4
|
* * Updates libOMV to version 0.7.0Teravus Ovares2009-07-254-6/+8
| | | | | | | | * Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
* * Apply http://opensimulator.org/mantis/view.php?id=3855Justin Clarke Casey2009-07-241-24/+40
| | | | | | | * Prevent session crashes when something goes wrong with group invite. * Thanks mcortez.
* Formatting cleanup.Jeff Ames2009-07-235-150/+147
|
* Thank you, MarcelEdward, for a patch to add paying group join fees.Melanie Thielker2009-07-211-1/+12
| | | | | | | | Applied with changes (original patch would not compile) Whitespace changes removed Fixes Mantis #3926
* * Created a way that the OpenSimulator scene can ask the physics scene to do ↵Teravus Ovares2009-07-192-0/+8
| | | | | | | | | a raycast test safely. * Test for prim obstructions between the avatar and camera. If there are obstructions, inform the client to move the camera closer. This makes it so that walls and objects don't obstruct your view while you're moving around. Try walking inside a hollowed tori. You'll see how much easier it is now because your camera automatically moves closer so you can still see. * Created a way to know if the user's camera is alt + cammed or just following the avatar. * Changes IClientAPI interface by adding SendCameraConstraint(Vector4 CameraConstraint)