aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Change AssetGatherer method access so that only methods which are worth ↵Justin Clarke Casey2009-02-181-1/+1
| | | | calling from the outside are public
* * Move asset gathering code from oar module to OpenSim.Region.Framework ↵Justin Clarke Casey2009-02-182-198/+5
| | | | | | | | since this is useful in a variety of situations * Comment out one oar test since I think somehow the two save tests are causing the occasional test failures
* * switch to pulsing monitors to perform test sync instead of events, since ↵Justin Clarke Casey2009-02-171-11/+17
| | | | this doesn't allow one to accidentally forget to reset the event
* * Get rid of a unit test race condition based on my misreading of the ↵Justin Clarke Casey2009-02-171-2/+4
| | | | | | | | AutoResetEvent docs * Hopefully this will reduce the spike in build failures seen in the past few days (since I introduced an addition oar test)
* * Apply http://opensimulator.org/mantis/view.php?id=3167Justin Clarke Casey2009-02-171-0/+9
| | | | | | | * Clamps textured map rgb values to 0-255 * Thanks DoranZemlja
* - remove the Metadata property from AssetBase and return all previousMike Mazur2009-02-175-24/+24
| | | | | | | | | properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit
* * refactor: remove AssetCache field hanging off SceneJustin Clarke Casey2009-02-164-5/+5
| | | | | | * This is always available at Scene.CommsManager.AssetCache
* Thank you, patnad, for a patch that removes the "Subdivision of" textMelanie Thielker2009-02-141-1/+1
| | | | | | | when dividing land. Fixes Mantis #3154
* * Change static field "initialized" in RestInterregionComms to an instance fieldJustin Clarke Casey2009-02-131-1/+1
| | | | | | * This was the cause of teleport tests interfering with each other
* * refactor: Move LazySaveGeneratedMapTile from scene to WorldMapModuleJustin Clarke Casey2009-02-131-1/+61
|
* * refactor: Move export map function to world map module from sceneJustin Clarke Casey2009-02-132-2/+92
|
* large scale fix for svn props after "the great refactor"Sean Dague2009-02-1267-427/+427
|
* Commented a couple of not very useful log messages that are cluttering the ↵diva2009-02-121-4/+4
| | | | log in sims that have objects belonging to foreign users.
* * optimized usings.lbsa712009-02-1267-526/+473
|
* * More inventory archive invocation to a proper region moduleJustin Clarke Casey2009-02-111-1/+1
| | | | | | * Not ready for use yet
* 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-101-3/+3
| | | | | | | | 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.
* * Implement merging of oars in codeJustin Clarke Casey2009-02-103-25/+117
| | | | | | * 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
|
* this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2009-02-1067-0/+15719
NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator