aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* * Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey2009-04-2310-34/+130
| | | | | | | | | cached) * Plugin not yet used * Existing functionality should not be affected in any way
* fix up contributors list to have 3 contributors sectionsSean Dague2009-04-231-19/+34
| | | | | | | | | | * current core * past core * additional contributors Also fix all the IBM entries, and make sure all IBM folks that gave me patches get listed individually in here.
* move the lock out a bit further in the ProccessAssetCache loop to reduceSean Dague2009-04-231-16/+18
| | | | | | | | the number of times we are going to take this lock in a row (which is just wasted resource), and to keep us from attempting to array access a list which might be changing right now. Extremely curious if this helps prevent some of our mono segfaults.
* based on recent unit test output, put some extra checking in theSean Dague2009-04-231-1/+9
| | | | | RunAssetCache error code
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-232-70/+70
| | | | | Cleanup tabs and spacing.
* From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-231-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.
* Update svn properties.Jeff Ames2009-04-230-0/+0
|
* * Fix another crash bug in the FreeSwitchVoiceModuleTeravus Ovares2009-04-232-1/+3
|
* * Tweaking the dialstring so the sip_contact_user variable is set to the ↵Teravus Ovares2009-04-232-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.
* * Adds missing IClientAPI member. (Plz be adding new members to IClientCore!)Adam Frisby2009-04-231-0/+1
|
* * Adds additional background layer for VWoHTTP ClientStackAdam Frisby2009-04-233-13/+111
| | | | | * Implements asset handling.
* * Fix hypergrid standalone login by overriding AddNewUserAgent in HGUserServicesJustin Clarke Casey2009-04-225-26/+38
|
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey2009-04-2214-98/+148
| | | | | | | | service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by passing up the ↵Justin Clarke Casey2009-04-222-11/+14
| | | | comms manager rather than null
* * minor: remove some compiler warningsJustin Clarke Casey2009-04-223-39/+39
|
* Thank you kindly, TLaukkan, for a patch that:Charles Krinke2009-04-222-73/+91
| | | | | | | | Adds connectivity to grid regions. * Fixed UserService cast. * Added exception handling to avoid mxp message handling thread to exit and hang the module on unhandled exception.
* * Allow plugins to play nicely in UserManagerBaseJustin Clarke Casey2009-04-222-24/+26
| | | | | | | * Some methods were returning the value of the first plugin queried, even if the return was null * Other methods are probably best off querying more than one plugin and aggregating results
* add if exists to the drop tableSean Dague2009-04-222-30/+30
|
* add cleardb to estate testsSean Dague2009-04-221-16/+24
|
* ensure we've got a clean data environment prior to running the regionSean Dague2009-04-221-17/+24
| | | | | tests
* * Fix the other windows build break. Hopefully that shoudl be the last oneJustin Clarke Casey2009-04-222-0/+2
|
* * Fix windows build from last commitJustin Clarke Casey2009-04-222-0/+2
|
* * Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey2009-04-2215-842/+886
| | | | | | | | | components * Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-225-71/+185
| | | | | | | | Changes to enable script state persistence across non-restart serialization situations (inventory/OAR/attachments) Also fixing test cases for OAR and IAR so they don't barf with the new code.
* more cleanupDr Scofield2009-04-224-72/+65
|
* Thanks tlaukkan for a patch that Fixes asset cache url forming for MXP join ↵Dahlia Trimble2009-04-221-1/+1
| | | | response message. Addresses Mantis #3505
* Thank you kindly, Marcus Llewellyn, for a patch that:Charles Krinke2009-04-221-4/+24
| | | | | | | | | | | An attachment with the physical checkbox checked will not allow the phantom checkbox to be cleared. This interfers with scripting functions such as llMoveToTarget(), which won't work while an object is phantom. If the prim containing the script is rezzed to the ground, it will then allow the phantom checlbox to be cleared, and the script works as expected.
* remove the bamboo build file, bamboo is dead, long live panda :)Sean Dague2009-04-221-62/+0
|
* fix line endings on new filesSean Dague2009-04-222-1107/+1107
|
* fix the build break, thankes mikkopa for pointing out the quick changeSean Dague2009-04-221-0/+2
| | | | | to address this.
* * Committing stub VW-over-HTTP ClientStack. (2/2)Adam Frisby2009-04-222-1/+29
| | | | | * Minor MRM tweak.
* * Committing stub VW-over-HTTP ClientStack. (1/2)Adam Frisby2009-04-222-0/+1105
| | | | | * Nonfunctional, but eventually form a AJAX-accessible client protocol - for clients written in environments which only allow HTTP (eg HTML, Silverlight, Flash, etc). Designed for super-lightweight clients.
* further cleanup (lower casing non-public vars and local vars)Dr Scofield2009-04-221-179/+173
|
* cleaning up, fixing warningsDr Scofield2009-04-229-85/+67
|
* * update example to reflect optional Well known hostname.Teravus Ovares2009-04-221-0/+6
|
* * Some tweaks to the FreeSwitchModule to allow a well known hostname and ↵Teravus Ovares2009-04-222-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
* Change the default for FreeSwitch Voice to disable. Most people don't haveMelanie Thielker2009-04-221-1/+1
| | | | | | the server, after all.
* Fix loading notecards from LSL. The first time a notecard was accessed, theMelanie Thielker2009-04-221-49/+21
| | | | | | | ID returned from the call would differ from the one later sent via dataserver(), causing AOs to fail.
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-2216-150/+283
|
* Thank you kindly, MCortez, for a patch that:Charles Krinke2009-04-214-330/+224
| | | | | | | | | | | * 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
* * Comment out user profile cache update method for nowJustin Clarke Casey2009-04-214-19/+30
|
* Thank you kindly, TLaukkan for a patch that:Charles Krinke2009-04-214-30/+95
| | | | | | | | | Added support for loading bare asset binaries (as opposed to xml encoded asset base) to both sandbox asset service and cable beach. * Added support for enabling region asset service when mxp is enabled. * Moved base http server content type defaulting before invocation of request handle method to allow for variable content type in the response.
* * extend user cache update test to check data backendJustin Clarke Casey2009-04-211-0/+3
|
* culling AsteriskVoiceModule and SIPVoiceModule, now that we haveDr Scofield2009-04-213-578/+23
| | | | | | working FreeSwitchVoiceModule and soon will have a fully working VivoxVoiceModule.
* Thank you kindly, MPallari for a patch that:Charles Krinke2009-04-211-2/+31
| | | | | | | | | This patch adds few properties to ScenePresence and thus allows region module or MRM script: 1. Force flying for avatar or, 2. Disable flying from avatar
* Update svn properties.Jeff Ames2009-04-219-2702/+2702
|
* * Add the ability to update profiles via the cache, so that cached profiles ↵Justin Clarke Casey2009-04-213-1/+53
| | | | | | | | don't become stale * Add corresponding unit test
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-211-6/+19
| | | | | | | | | | | | | | | | | | | | | | | Fixes IRC reconnect problem When a session fails to establish, the login attempt eventually times out and the login is retried. This should occur once every 25 seconds (to give the server plenty of time to respond). In fact the interval was typically only 10 seconds, this was being caused by a second reset that was being scheduled when the failed listener thread was terminated. Because the second reset occurred inside the ICC timeout, it eventually gets scheduled after only 10 seconds. In addition to this, the connector was being added to the monitoring twice. This was harmless, but entirely redundant. Both of these problems have been fixed and tested. Each connector now maintains a count of how often it has been reset. The listener thread records this value on entry and checks for a change on exit. If the counts are the same, then the listener is exiting and can potentially reschedule the connection.
* * Implements Extensions to MRM. This allows Region Modules to insert new ↵Adam Frisby2009-04-216-3/+81
| | | | | | | | | | | | classes into OpenSim MRM's. * Example in region module: Scene.GetModuleInterface<IMRMModule>.RegisterExtension<IMyInterface>(this); * In the MRM: //@DEPENDS:MyExtensionModule.dll ... Host.Extensions<IMyInterface>.DoStuff();
* Change a bad use of a type name as a variable. Thanks, Fly-ManMelanie Thielker2009-04-201-4/+4
| | | | | | Fixes Mantis #3497