aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix another build error on MonoDevelopHomer Horwitz2009-01-021-2/+2
|
* Allow some values that are set in OpenSim.ini to be set from region configMelanie Thielker2009-01-025-10/+93
| | | | | | XML as well.
* Use only one (static) (de-)serializer for (de-)serializing SOPs.Homer Horwitz2009-01-022-6/+27
| | | | | | | | That improves performance drastically, at least for Mono, as the (de-)serializers can then be optimized (and won't use reflection anymore). On my system, before this change de-/serialization took ~9s/9s, whereas after the change it takes ~.5/.2s.
* Get build working on MonoDevelop again.Homer Horwitz2009-01-021-1/+1
|
* Small fix to prevent client thread crash in multi-region instances whenMelanie Thielker2009-01-021-0/+9
| | | | | | a scripted object is paid
* * Adding some recognizable and search-able test to some ↵Teravus Ovares2009-01-023-6/+6
| | | | WriteLine(e.ToString()) messages so that when they occur, we can figure out what threw them.
* Fixes Mantis #2945Melanie Thielker2009-01-021-13/+57
| | | | | | | | | Committing the above patch with changes. Thank you, Gerhard. Removed unneccessary verbosity in case of no error, added more output for errors. Added support for HTTP Uri fetching which I had added in my last commit. Converted the Console.WriteLines to log4net.
* Add the ability to read the ini file from a URI. If the -inifile optionMelanie Thielker2009-01-021-6/+33
| | | | | | is a http:// URI, it will be fetched and parsed as an XML config.
* Major changes in interregion communications. This breaks compatibility with ↵diva2009-01-019-75/+338
| | | | | | | | | older versions, and may result is all sorts of weirdnesses when interacting with sims in older versions. Changes: - Introducing synchronous Teleports. Now the receiving region calls back the sending region after the client has been made a root agent there, that is, after client sends CompleteMovement to the destination. - SendCloseAgent moved from OGS1 Remoting to RESTComms.
* Minor fix for HG request neighbors. Should not return hyperlink neighbors, ↵diva2009-01-012-4/+4
| | | | | | | only neighbors on the same grid. I'm still not sure if this is a bug or a feature, so this may change again. My first commit of 2009 -- Happy New Year!
* Beginning of true REST style for interregion comms, SendChildAgentUpdate ↵diva2008-12-311-7/+92
| | | | only. Agents are now resources accessed at http://<host>:<port>/agent/<uuid>/[action/]. PUT is SendChildAgentUpdate.
* Minor bug fix in HG home regions management, removing the use of ↵diva2008-12-311-8/+15
| | | | m_knownRegions.Count for creating the local handler. Local handlers are now created using a random number generator.
* Slight optimisation: Don't check for duplication if we won't use the result ↵Homer Horwitz2008-12-311-7/+7
| | | | anyway.
* - Added the fixed Ode.NET.dllHomer Horwitz2008-12-312-5/+5
| | | | | | | | | - Adapted code to match the corrected signatures - Fixes Mantis #2934. Hopefully. Note: Physics on linked objects still don't work correctly: It doesn't crash the region anymore, but the example object in the mentioned mantis now falls through the ground.
* Added a missing setMass for initializing the mass of primsHomer Horwitz2008-12-311-1/+2
|
* Added http-method to the hashtable that gets passed to GenericHTTPMethods.diva2008-12-311-1/+1
|
* Update svn properties.Jeff Ames2008-12-310-0/+0
|
* Folded HG regionhandle lookup into the normal RESTInterregionComms, to avoid ↵diva2008-12-313-88/+4
| | | | proliferation of "modes".
* Added a SendChildAgentDataUpdate call on Teleports, so that the agent at the ↵diva2008-12-313-42/+110
| | | | destination will have all the necessary information.
* Removing unnecessary null checks on structs in AgentsData pack/unpack.diva2008-12-301-43/+21
|
* * Remove mono compiler warningsJustin Clarke Casey2008-12-304-13/+7
| | | | | | * Leaving the 23 warnings in ChildAgentDataUpdate.cs for Diva to look at
* * Implement saving of region settings in OAR filesJustin Clarke Casey2008-12-3011-30/+395
| | | | | | | | * This means that you can now save terrain textures, water height, etc. * Estate settings are not supported * Older OAR files without these settings can still be loaded
* OpenUser_Main is now public. Fixes Mantis #2940. Thanks SirKimbaHomer Horwitz2008-12-301-1/+1
|
* Making the default choice for InterregionComms work, and removing an ↵diva2008-12-303-4/+9
| | | | unnecessary console debug message.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-12-3022-1809/+1950
|
* Changing the default Comms module to be RESTComms, in case none is specified ↵diva2008-12-293-3/+3
| | | | in OpenSim.ini. RESTComms is a super-set of LocalComms. Calls to local regions do no use REST, they use internal function calls.
* Final part for implementing SendChildAgentDataUpdate with modules. This is ↵diva2008-12-294-32/+65
| | | | the part that uses the modules in Scene and related classes. This commit breaks compatibility of sim-sim SendChildAgentUpdates with older versions of OpenSim.
* This is a beefy commit containing the communication modules that implement ↵diva2008-12-293-0/+522
| | | | SendChildAgentUpdate. This commit has only the modules, but not their usage. It should be harmless.
* Minor change in HGSceneCommunicationService, making one field public ↵diva2008-12-291-1/+1
| | | | readonly. Totally harmless.
* Merged the InterregionData that Melanie had placed there onto the existing ↵diva2008-12-294-130/+360
| | | | ChildAgentDataUpdate. This commit involves a change in prebuild.xml, because ChildAgentDataUpdate uses OpenMetaverse.StructuredData. Still no use of this data structure, though. Crossing my fingers that this partial commit will compile ok...
* First commit in a series of commits for Interregion REST comms. This one ↵diva2008-12-291-111/+0
| | | | simply deletes the skeleton module that Melanie kindly placed for me to start working on this.
* * Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey2008-12-2912-42/+87
| | | | | | | | | * This allows configuration of the assetset and library control file paths to be other than ./inventory/Libraries.xml and ./assets/AssetSets.xml * This is controlled via the LibrariesXMLFile and AssetSetsXMLFile configuration settings in [StandAlone] in OpenSim.ini (in standalone) and via the user and asset config xml files for grid mode * Thanks to SirKimba for the patch
* Revamp the return logic to close a privilege escalation loophole.Melanie Thielker2008-12-281-46/+143
| | | | | | | | Estate owner / Master avatar returns would place the item in the returner's inventory rather than the owner's if the owner was not in sim.
* Thank you kindly, StrawberryFride for a patch that:Charles Krinke2008-12-281-1/+6
| | | | | Persists appearance with MSSQL more properly.
* Demonstration code for modular comms. No user functionalityMelanie Thielker2008-12-282-4/+37
|
* Insert a 15 seconds delay before the script engine starts loading scriptsMelanie Thielker2008-12-281-0/+7
|
* * More NINJA Joint physics fixes from nlin.Teravus Ovares2008-12-283-11/+11
| | | | | fixes mantis #2874
* * Eliminate a possible null reference from the LLSDLogin method.Teravus Ovares2008-12-271-0/+4
|
* * Fixes mantis #2922Teravus Ovares2008-12-273-11/+11
| | | | | * Converts some C# 3.0 syntax into it's 2.0 equivalent so that Visual Studio 2005 can compile it successfully.
* update README.txt to have current version requirements, also used as aSean Dague2008-12-261-1/+1
| | | | | mantis test for issue 2920
* * Fixes missing sculpt texture assets from oar files as detailed on mantis ↵Teravus Ovares2008-12-261-0/+2
| | | | 2971 by thomax
* * Applying Nlin's NINJA Joint patch. v2. Mantis# 2874Teravus Ovares2008-12-2610-56/+1188
| | | | | | | | | | * Thanks nlin! * To try it out, set ninja joints active in the ODEPhysicsSettings and use the example at: * http://forge.opensimulator.org/gf/download/frsrelease/142/304/demo-playground.tgz. * Don't forget to change the .tgz to .oar and load it with load-oar.
* Prevent exception in terrain module if just the word terrain is entered at ↵idb2008-12-261-0/+5
| | | | the console. Fixes Mantis #2915
* Substitutes the value of an environment variable if the value of a region ↵Dahlia Trimble2008-12-261-0/+5
| | | | configuration variable begins with a "$" character. Should be useful when moving region configs between hosts
* Add a few forgotten fields to interregion dataMelanie Thielker2008-12-251-0/+5
|
* Plumb the profile reply packets for picks, classifieds and notesMelanie Thielker2008-12-255-0/+120
|
* Plumb yet another groups packetMelanie Thielker2008-12-251-0/+13
|
* Better test on EQ shutdown. diva2008-12-241-1/+4
|
* Backing off from the accidental removal one of the most valued 'features' of ↵diva2008-12-241-2/+2
| | | | the HG: the ability to TP to regions on the grid that don't run HG. *smiles*
* Better error handling for expect_hg_user on the HG.diva2008-12-242-2/+12
|