aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Fixes a bug in the ScenePresence test itself.diva2009-02-121-1/+1
|
* Makes region crossings asynchronous. Moved the bulk of the original code out ↵diva2009-02-124-134/+219
| | | | | | | | of ScenePresence and into SceneCommunicationService, where it should be (next to RequestTeleportToLocation). No changes in the crossing mechanism itself, yet. But this change opens the way to doing crossings as slowly as it needs to be, outside the simulator Update loop. Note: weirdnesses may occur!
* * Make it possible to load and save inventory archives while a user is not ↵Justin Clarke Casey2009-02-123-33/+58
| | | | | | | | logged in on standalone mode but not on grid mode * No user functionality yet
* large scale fix for svn props after "the great refactor"Sean Dague2009-02-12107-1192/+1192
|
* * Lock remaining m_rpcHandlers use since these accesses are not guaranteed ↵Justin Clarke Casey2009-02-121-2/+8
| | | | to be thread safe
* Commented a couple of not very useful log messages that are cluttering the ↵diva2009-02-122-8/+8
| | | | log in sims that have objects belonging to foreign users.
* * Remove a change which shouldn't have made it into the last commitJustin Clarke Casey2009-02-121-2/+0
| | | | | | * Rogue change affected grid only
* * Add missing OpenSIm.Framework.Communications ref for Wdinwos buildsJustin Clarke Casey2009-02-122-1/+4
|
* * Forgot to fix bamboo.build for the new ScriptEngine TestsSean Dague2009-02-121-3/+1
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * Apply http://opensimulator.org/mantis/view.php?id=3138Justin Clarke Casey2009-02-121-0/+20
| | | | | | | * Adds a GetXmlRPCHandler() to the BaseHttpServer * Thanks mpallari
* * move userinfo for inventory archiving up to module class so that it only ↵Justin Clarke Casey2009-02-123-90/+85
| | | | has to be done once
* * Remove some pointless CachedUserInfo != null tests since these are already ↵Justin Clarke Casey2009-02-121-134/+133
| | | | made in earlier code
* * refactor: Move RequestInventoryForUser() from service to CachedUserInfoJustin Clarke Casey2009-02-126-40/+37
| | | | | | * This simplifies callers in most cases - CachedUserInfo is already handling the rest of the fetch inventory work anyway
* * Added XEngine tests and gathered other ScriptEngineSean Dague2009-02-124-31/+90
| | | | | | | Tests together From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * Some more CCClbsa712009-02-122-13/+13
|
* * Renamed RegionProfileService to RegionProfileServiceProxy to better ↵lbsa712009-02-124-4/+48
| | | | | | | reflect actual use. * Added IRegionProfileService
* * Turned RegionProfileService non-staticlbsa712009-02-123-10/+13
|
* * Applied some CCC (Code Convention Conformance)lbsa712009-02-121-17/+17
|
* * Added RegionProfileService and moved RequestSimData to it.lbsa712009-02-123-85/+98
|
* * optimized usings.lbsa712009-02-12383-2150/+1314
|
* Thanks Kitto Flora for a patch that adds automatic min fly height to ODE - ↵Dahlia Trimble2009-02-123-9/+22
| | | | Mantis #3134
* Sending this to Justin, so that he can see what's wrong with the ↵diva2009-02-122-12/+22
| | | | StandaloneTeleportTests when we add RESTInterregionComms module to the ScenePresenceTests.
* Makes ban of HG users exactly the same as ban of local users, that is upon ↵diva2009-02-121-75/+44
| | | | AddClient and not before.
* Fixes mantis #3121.diva2009-02-121-0/+1
|
* Enforce estate bans on Teleports.diva2009-02-115-253/+293
|
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-02-113-3/+5
|
* * When an inventory archive is loaded, immediately update the client's ↵Justin Clarke Casey2009-02-112-21/+62
| | | | | | | | inventory if that client is online at that region server * Not useable yet
* * Change SendBulkUpdateInventory from two methods to one which accepts an ↵Justin Clarke Casey2009-02-115-35/+27
| | | | InventoryNode
* * Establish a common InventoryNodeBase class from InventoryItemBase and ↵Justin Clarke Casey2009-02-114-66/+81
| | | | InventoryFolderBase
* * Refactor inventory archive code to allow direct invocation in order to ↵Justin Clarke Casey2009-02-115-54/+328
| | | | | | | | support future unit tests * Add a file I missed out from the last commit (the build was probably fine without it)
* * More inventory archive invocation to a proper region moduleJustin Clarke Casey2009-02-115-72/+5
| | | | | | * Not ready for use yet
* Thank you kindly, FrankNichols for a patch that:Charles Krinke2009-02-111-1/+1
| | | | | | | The following patch fixes http://opensimulator.org/mantis/view.php?id=3107 [^] by changing call from setRot to llSetRot, the later handles child prim being rotated relative to root prim in linked set.
* From: Christopher Yeoh <yeohc@au1.ibm.com>Dr Scofield2009-02-112-0/+157
| | | | | | | | | | | | | | | This changeset add the RegionReady module code. The module sends a message on a configurable channel when an oar file has finished loading or if the script engine has emptied its queue for the first time (eg server startup). Config is something like this: [RegionReady] enabled = true channel_notify = -800 The module also knows if there was an error with startup.
* If an instance contains only one region, select it in the console by defaultMelanie Thielker2009-02-101-1/+4
|
* fix a typo where the High Southwest height was getting set to the LowSean Dague2009-02-101-1/+1
| | | | | Southwest height
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-1013-93/+126
| | | | | | | | interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
* Fixes the problem of attachment offset after crossings/TPs. Hopefully it ↵diva2009-02-105-42/+43
| | | | fixes mantis #3126, as well as other random displacements. The problem was that the new object at the receiving region was being marked as attachment before AttachObject was called. That made its AbsolutePosition be the position of the avie, and that was what was being given to AttachObject.
* * Remove load and save inventory commands from the console since these are ↵Justin Clarke Casey2009-02-101-0/+2
| | | | | | | | actually experimental and the storage format may soon undergo incompatible changes * If you were using these please uncomment the code before rebuilding, but be aware that old files may become incompatible soon
* * minor: Remove SOG XML2 serialization log messages for nowJustin Clarke Casey2009-02-101-3/+2
|
* * Stop OpenSim crashing if an exception from a command makes it right up to ↵Justin Clarke Casey2009-02-101-2/+8
| | | | the top of the stack
* * Implement merging of oars in codeJustin Clarke Casey2009-02-104-27/+145
| | | | | | * Not fully tested yet and not yet available as an option from the user console
* * extend load oar test to check that an object was actually loadedJustin Clarke Casey2009-02-101-5/+37
|
* * Ignored some genslbsa712009-02-100-0/+0
|
* * Fix build break, parentheses in the wrong placeJustin Clarke Casey2009-02-101-1/+1
|
* * Overwrite the old saved OpenSim.ini file saved in response to a crash if ↵Justin Clarke Casey2009-02-101-1/+1
| | | | one already exists
* Change the command parser and resolver to be able to disambiguate commandsMelanie Thielker2009-02-101-0/+12
| | | | | | | that are a prefix of another command. Fixes "terrain load" Fixes Mantis #3123
* dropping obsolete XIRC section from OpenSim.ini.exampleDr Scofield2009-02-101-10/+0
|
* fix region_limit example in OpenSim.ini.exampleDr Scofield2009-02-101-2/+2
|
* fixing ConciergeModule to follow coding conventionsDr Scofield2009-02-101-106/+106
|
* * Reinstate texture tests, eliminating duplicate ↵Justin Clarke Casey2009-02-101-56/+1
| | | | OpenSim.Region.CoreModules.Tests