aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-26Thank you kindly, Ewe Loon, for a patch that solves:Charles Krinke1-0/+39
PRIM_TEXGEN not in llSetPrimitiveParams. Patch has been included to implement it.
2009-04-25Thanks, Ewe Loon for a patch thatHomer Horwitz2-15/+278
provides persistent AvatarAppearance for SQLite. Fixes Mantis #3296.
2009-04-25Thank you kindly, RemedyTomm, for a patch that fixes:Charles Krinke1-1/+4
llSetPrimitiveParams in a large linkset can disrupt the entire region. However, when the script is in a large linkset, it appears to totally lag out the scene and stops updates from being sent.
2009-04-25Remove second timestamp in offline IM, the client already adds oneMelanie Thielker1-4/+0
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-25Thanks Bluewall for Mantis #3519: a patch that adds simulator uptime and ↵Dahlia Trimble6-17/+15
version to REST/json statistics reporting
2009-04-25* More debug warning message removal in the FreeSwitchVoiceModuleTeravus Ovares1-21/+275
2009-04-24- Moved WorldMapModule and HGWorldMapModule to the new region-module systemHomer Horwitz3-70/+125
- Cleaned up some whitespace
2009-04-24* Write separate unit test for replicating iar structure to a user inventoryJustin Clarke Casey2-8/+30
2009-04-24some code cleanupDahlia Trimble1-18/+0
sync with primmesher r35
2009-04-24Limit hollow size of physics proxy to 95%Dahlia Trimble2-2/+4
2009-04-24* minor: move user profile test utils to test/common/setup for future reuseJustin Clarke Casey3-1/+17
2009-04-24* Refactor: break out loading of archive paths into inventory into a ↵Justin Clarke Casey1-110/+139
separate method
2009-04-24* correct spelling mistake in item seiralizationJustin Clarke Casey2-3/+2
2009-04-24* minor: make inventory item deserialization code easier to readJustin Clarke Casey1-52/+26
2009-04-24* Write basic, incomplete load iar testJustin Clarke Casey3-64/+42
2009-04-24silly C# not letting me use a File.Exists test for a directory. Don'tSean Dague5-5/+5
you know a directory is just a special kind of file on Linux.
2009-04-24change power linux detection method, the previous method only workedSean Dague5-10/+10
with interactive logins, not under panda.
2009-04-24From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2-2/+450
This commit adds RestFileServices to the REST ApplicationPlugin service.
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 Ames4-23/+64
2009-04-23* refactor: move archive user inventory item serialization out to a separate ↵Justin Clarke Casey8-223/+295
file
2009-04-23* Allow interested user data plugins to store temporary user profilesJustin Clarke Casey9-8/+58
* Database and the OGS1 plugins are not interested and hence ignore these calls
2009-04-23* Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey10-34/+130
cached) * Plugin not yet used * Existing functionality should not be affected in any way
2009-04-23move the lock out a bit further in the ProccessAssetCache loop to reduceSean Dague1-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.
2009-04-23based on recent unit test output, put some extra checking in theSean Dague1-1/+9
RunAssetCache error code
2009-04-23From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2-70/+70
Cleanup tabs and spacing.
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-23* Adds missing IClientAPI member. (Plz be adding new members to IClientCore!)Adam Frisby1-0/+1
2009-04-23* Adds additional background layer for VWoHTTP ClientStackAdam Frisby2-13/+110
* Implements asset handling.
2009-04-22* Fix hypergrid standalone login by overriding AddNewUserAgent in HGUserServicesJustin Clarke Casey5-26/+38
2009-04-22* Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey14-98/+148
service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
2009-04-22* Resolve http://opensimulator.org/mantis/view.php?id=3509 by passing up the ↵Justin Clarke Casey2-11/+14
comms manager rather than null
2009-04-22* minor: remove some compiler warningsJustin Clarke Casey3-39/+39
2009-04-22Thank you kindly, TLaukkan, for a patch that:Charles Krinke2-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.
2009-04-22* Allow plugins to play nicely in UserManagerBaseJustin Clarke Casey2-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
2009-04-22add if exists to the drop tableSean Dague2-30/+30
2009-04-22add cleardb to estate testsSean Dague1-16/+24
2009-04-22ensure we've got a clean data environment prior to running the regionSean Dague1-17/+24
tests
2009-04-22* Fix the other windows build break. Hopefully that shoudl be the last oneJustin Clarke Casey1-0/+1
2009-04-22* Fix windows build from last commitJustin Clarke Casey1-0/+1
2009-04-22* Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey15-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
2009-04-22From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield5-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.
2009-04-22more cleanupDr Scofield4-72/+65
2009-04-22Thanks tlaukkan for a patch that Fixes asset cache url forming for MXP join ↵Dahlia Trimble1-1/+1
response message. Addresses Mantis #3505
2009-04-22Thank you kindly, Marcus Llewellyn, for a patch that:Charles Krinke1-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.
2009-04-22fix line endings on new filesSean Dague2-1107/+1107
2009-04-22fix the build break, thankes mikkopa for pointing out the quick changeSean Dague1-0/+2
to address this.