aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-25* Upped version number to 0.6.5lbsa711-3/+3
2009-05-25dropping attendee list keeping from Concierge, relying onDr Scofield1-87/+26
Scene.GetAvatars() instead now. [test #487]
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby2-2/+3
needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient)
2009-05-22converting Chat module and Concierge module to new style region modulesDr Scofield2-23/+56
2009-05-22changing IRCBridgeModule to new region module schemeDr Scofield2-75/+49
2009-05-16Send the owner name, not the client name on SendDialog.Homer Horwitz1-1/+1
This modifies IClientAPI.SendDialog slightly. Fixes Mantis #3661.
2009-05-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva1-2/+2
-- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
2009-05-14Remove all messages from the groups module that would be output when it isMelanie Thielker2-11/+4
NOT enabled.
2009-05-14Remove a misleading event that was only used internallyMelanie Thielker1-1/+0
2009-05-12* Adds additional check to MRM rezzing - the host object must be created by ↵Adam Frisby1-1/+3
the sim owner, not just owned by it.
2009-05-12* Adds ScenePresence.TeleportWithMomentum - same as .Teleport, but preserves ↵Adam Frisby1-1/+1
velocity.
2009-05-12Add more group notify glueMelanie Thielker1-0/+7
2009-05-12Paving the way for syncing group permissions across a gridMelanie Thielker2-0/+5
2009-05-12* Applies Mantis #3630 - Adds support for outside MRM initialisation, makes ↵Adam Frisby13-18/+32
MRMModule compatible with the Visual Studio MRMLoader ( http://forge.opensimulator.org/gf/project/mrmloader/ )
2009-05-09* Code to make MRM debugging easier.Adam Frisby2-1/+6
2009-05-09Prevent normal (Text) IM from being logged by the group message module in Melanie Thielker1-1/+2
debug mode. Fixes Mantis #3609
2009-05-08* break out 'xml2' deserialization from sogJustin Clarke Casey4-43/+9
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker2-0/+2
2009-05-04* minor: remove some mono compiler warnings, minor cleanupJustin Clarke Casey1-5/+2
2009-05-04Add a method to flush the prim update buffers once a frame, since the timerMelanie Thielker1-0/+4
appear to be too slow to be useful, or fail too fire. I may remove the timers as a consequence if this.
2009-05-02Thank you kindly, MCortez for a patch that solves:Charles Krinke1-1/+18
Different people using Hippo 0.5.1 report that trying to send group instant messages crashes the viewer (Hippo 0.5.1). This is the case even for empty groups or if all group members are online.
2009-04-30Thank you, mpallari, for a patch that increses efficiency by combiningMelanie Thielker1-1/+1
avatar updates into a single packet. Applied with changes. Fixes Mantis #3136
2009-04-29Thank you kindly, MCortez for a patch that:Charles Krinke3-156/+280
The attached patch provides the necessary infrastructure to support security and authentication features of the xmlrpc server. * Read/Write keys for accessing a Group's xmlrpc service. * Requiring user session verification for write operations.
2009-04-29* Correct log message formatJustin Clarke Casey3-95/+95
* Fix XmlRpcGroupData.XmlRpcCall() to correctly handle response
2009-04-29* Add test to check temp profile creation on iar loadJustin Clarke Casey1-4/+1
2009-04-29* Apply further groups xmlrpc to stop an exception in the exception handlerJustin Clarke Casey1-30/+17
* Thanks mcortez
2009-04-29* Apply http://opensimulator.org/mantis/view.php?id=3557Justin Clarke Casey1-1/+19
* Stops XmlRpcGroups crashing client sessions if there is an XMLRPC failure * Thanks mcortez
2009-04-29* Apply http://opensimulator.org/mantis/view.php?id=3554Justin Clarke Casey1-1/+1
* Stop converting serviceURL to all lower case. * Thanks mcortez
2009-04-29* minor: remove some mono compiler warningsJustin Clarke Casey2-4/+4
2009-04-27Add copyright headers. Formatting cleanup.Jeff Ames6-127/+149
2009-04-27Update svn properties.Jeff Ames3-90/+90
2009-04-26- Setting groups-messaging module to by disabled by default (groups module ↵Homer Horwitz1-3/+3
already is). - Make sure it really is Close()d when the configuration isn't sane.
2009-04-26Thank you, mcortez, for a patch to fix group notice deliveryMelanie Thielker1-3/+3
2009-04-25Thank you kindly, MCortez for a patch that:Charles Krinke3-505/+795
The attached patch fixes a few problems that people were having with the Messaging provided by the XmlRpcGroups optional module, namely: * Fixes 2x echo in group messaging * Fixes problems with cross instance, non-neighbor, messaging
2009-04-25* More debug warning message removal in the FreeSwitchVoiceModuleTeravus Ovares1-21/+275
2009-04-24* Implements Microthreading for MRM scripting.Adam Frisby7-2/+162
* This is achieved through two new keywords "microthreaded" and "relax". example: public microthreaded void MyFunc(...) { ... relax; ... }
2009-04-24Update svn properties, add copyright headers, formatting cleanup.Jeff Ames2-17/+4
2009-04-23From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield1-14/+27
Some other IRC timing wrinkles showed up: [1] If connect processing blocked in socket activation, then the watch dog saw the session as connected, and eventually tried to ping, but because the socket create was still blocked, it barfed on a null reference. This then drove reconnect. Changed the watchdog handler so that it only tries to ping connections that are connected and not pending. [2] If the socket creation actually fails, then the connect and pending flags were reset. This resulted in the connection being retried at the earliest possible opportunity. The longer login-timeout is preferrable, so the status flags are not reset, and the failed login is eventually timed out. [3] The Inter-connection interval is primed so that the first session can connect without delay.
2009-04-23* Fix another crash bug in the FreeSwitchVoiceModuleTeravus Ovares2-1/+3
2009-04-23* Tweaking the dialstring so the sip_contact_user variable is set to the ↵Teravus Ovares2-6/+10
dialed user. This stops the client from complaining and might be useful later. Resolves the 'unable to parse id from mod_sofia@ip:port' message.
2009-04-22* minor: remove some compiler warningsJustin Clarke Casey1-31/+31
2009-04-22more cleanupDr Scofield3-66/+60
2009-04-22* Committing stub VW-over-HTTP ClientStack. (2/2)Adam Frisby1-1/+1
* Minor MRM tweak.
2009-04-22further cleanup (lower casing non-public vars and local vars)Dr Scofield1-179/+173
2009-04-22cleaning up, fixing warningsDr Scofield4-63/+48
2009-04-22* Some tweaks to the FreeSwitchModule to allow a well known hostname and ↵Teravus Ovares2-9/+26
avoid a double // in a path which causes account verification to fail * The change shouldn't affect anyone who has it working currently and makes it a ton easier for everyone else to get it working. * Handle a case when there's no Event-Calling-Function but it's obviously a REGISTER method
2009-04-22Add copyright headers. Formatting cleanup.Jeff Ames10-84/+218
2009-04-21Thank you kindly, MCortez, for a patch that:Charles Krinke3-330/+217
* Refactors the xmlrpc calls to a single location to make it easier to debug and include alternative xmlrpc call mechanisms * Includes an alternative xmlrpc call mechanism that sets HTTP Keep-Alive to false which solves nearly all System.Net exceptions on some windows environments
2009-04-21culling AsteriskVoiceModule and SIPVoiceModule, now that we haveDr Scofield2-526/+0
working FreeSwitchVoiceModule and soon will have a fully working VivoxVoiceModule.
2009-04-21Update svn properties.Jeff Ames9-2702/+2702