aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLSimulationData.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [possible still very broken] mess around keyframes. timer eventsUbitUmarov2012-08-281-1/+1
| | | | threads overlaps, some null objects exceptions, region crossing...
* Fix and finish the extra parameters storage system for MySQLMelanie2012-08-151-1/+57
|
* Add a skeleton for a name value storage associated with regionsMelanie2012-08-151-0/+13
|
* Merge branch 'avination' into careminsterMelanie2012-07-111-2/+17
|\ | | | | | | | | Conflicts: OpenSim/Data/MySQL/MySQLSimulationData.cs
| * Fix storing vehicle dataMelanie2012-07-071-2/+2
| |
| * Add saving vehicle physics data to the databaseMelanie2012-07-071-2/+17
| |
* | Merge branch 'avination' into careminsterMelanie2012-06-291-26/+34
|\ \ | |/ | | | | | | Conflicts: OpenSim/Framework/Servers/HttpServer/PollServiceWorkerThread.cs
| * Prevent bad prim in the database from crashing the sim, list affectedMelanie2012-06-261-26/+34
| | | | | | | | ids and skip them.
* | Merge branch 'avination' into careminsterMelanie2012-06-111-2/+35
|\ \ | |/ | | | | | | | | | | Conflicts: OpenSim/Region/Framework/Interfaces/ISimulationDataService.cs OpenSim/Services/Connectors/Simulation/SimulationDataService.cs OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs
| * Typo fixMelanie2012-06-071-3/+5
| |
| * Add the ability to query the MYSQL databse for a list of the stored prim UUIDsMelanie2012-06-071-0/+31
| |
* | Merge branch 'master' into careminsterMelanie2012-05-271-0/+62
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenSim/Data/MySQL/MySQLSimulationData.cs OpenSim/Data/MySQL/Resources/RegionStore.migrations OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs OpenSim/Region/Framework/Scenes/Scene.cs OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
| * | Environment Module - allows Environment settings for Viewer3 warning: ↵PixelTomsen2012-05-231-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | includes database region store migrations for mssql, mysql, sqlite enable/disable this module: Cap_EnvironmentSettings = "localhost" (for enable) Cap_EnvironmentSettings = "" (for disable) at ClientStack.LindenCaps section (OpenSimDefaults.ini file) or owerwrite in OpenSim.ini mantis: http://opensimulator.org/mantis/view.php?id=5860 Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* | | Merge branch 'avination' into careminsterMelanie2012-05-151-1/+8
|\ \ \ | | |/ | |/| | | | | | | | | | Conflicts: OpenSim/Data/MySQL/MySQLSimulationData.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
| * | Port the mel/dahlia fixMelanie2012-05-151-1/+8
| | |
* | | Merge branch 'master' into careminsterMelanie2012-04-301-134/+133
|\ \ \ | |/ / |/| / | |/ | | | | | | Conflicts: OpenSim/Data/MySQL/MySQLAssetData.cs OpenSim/Data/MySQL/MySQLSimulationData.cs OpenSim/Data/MySQL/MySQLUserAccountData.cs
| * If there are no new prim items to store then don't bother opening the ↵Justin Clark-Casey (justincc)2012-04-301-3/+3
| | | | | | | | MySqlConnection only to do nothing with it.
| * Consistently use using() to make sure we dispose of used MySqlCommands where ↵Justin Clark-Casey (justincc)2012-04-301-134/+133
| | | | | | | | this is not already being done.
* | Fix an invalid cast that only showed at runtimeMelanie2012-03-201-1/+1
| |
* | Store and reload extra physics from databaseMelanie2012-03-201-2/+20
| |
* | Merge branch 'master' of ssh://melanie@3dhosting.de/var/git/careminster into ↵Melanie2012-03-041-2/+23
|\ \ | | | | | | | | | careminster
| * | Move KeyframeMotion from SOG to SOP because we can't persist it anyMelanie2012-02-261-2/+23
| | | | | | | | | | | | other way because SOG doesn't technically exist in the DB
* | | Merge branch 'master' into careminsterMelanie2012-03-031-1/+1
|\ \ \ | |/ / |/| / | |/ | | | | | | Conflicts: OpenSim/Framework/Servers/VersionInfo.cs OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs OpenSim/Region/Framework/Scenes/ScenePresence.cs
| * Use correct casing of RegionSettings.Sandbox in the various database modules.Justin Clark-Casey (justincc)2012-02-291-1/+1
| | | | | | | | | | | | MySQL and MSSQL have it as Sandbox, sqlite as sandbox. In various different places in every plugin the wrong casing is used... Consistency, who needs it? Or one day sqlite can change to Sandbox.
* | Merge branch 'master' into careminsterMelanie2012-02-041-3/+4
|\ \ | |/ | | | | | | | | Conflicts: OpenSim/Data/MySQL/Resources/RegionStore.migrations OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
| * Fix: Covenant changed time not set ↵PixelTomsen2012-02-031-3/+4
| | | | | | | | | | | | http://opensimulator.org/mantis/view.php?id=5869 Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
| * Replace ParcelAccessEntry with a new struct, LandAccessEntry, which moreMelanie2012-02-021-8/+9
| | | | | | | | | | | | accurately reflects the data sent by the viewer. Add times bans and the expiration of timed bans. Warning: Contains a Migration (and nuts)
* | Make ban, eject, freeze and the scripted versions of those work.Melanie2012-02-021-8/+9
| |
* | Merge branch 'master' into careminsterMelanie2012-01-301-2/+4
|\ \ | |/ | | | | | | Conflicts: OpenSim/Data/MySQL/MySQLSimulationData.cs
| * Add ParcelImageID to RegionSettings so we can have that overlay.Melanie2012-01-301-2/+4
| | | | | | | | | | Warning: Contains a Migration. Warning: May contain nuts.
| * Add a forgotten parameterMelanie2012-01-241-1/+1
| |
* | Correct some SQL syntaxMelanie2012-01-241-1/+1
| |
* | Fix merge artefacts and build breakMelanie2012-01-241-1/+1
| |
* | Merge branch 'master' into careminsterMelanie2012-01-241-39/+13
|\ \ | |/ | | | | | | | | Conflicts: OpenSim/Data/MySQL/MySQLSimulationData.cs OpenSim/Framework/RegionSettings.cs
| * Change Telehubs to store only the data that is really needed and notMelanie2012-01-241-40/+13
| | | | | | | | additional redundant information.
* | Merge branch 'master' into careminsterMelanie2012-01-231-4/+35
|\ \ | |/ | | | | | | Conflicts: OpenSim/Data/MySQL/MySQLSimulationData.cs
| * Fix up some parameter namingMelanie2012-01-221-2/+2
| |
| * Finish connecting Telehub to databaseBlueWall2012-01-221-3/+19
| |
| * Hooking up new telehub data to the databaseBlueWall2012-01-221-0/+14
| |
* | Merge branch 'master' into careminsterMelanie2012-01-221-0/+70
|\ \ | |/ | | | | | | Conflicts: OpenSim/Framework/RegionSettings.cs
| * Move Telehub tables and data from EstateSettings to RegionSettings.Melanie2012-01-221-0/+70
| | | | | | | | | | | | | | | | | | | | This is damage control es EstateSettings is not the place this can be put. EstateSettings is nt unique to a region and therefore would introduce a hard limit of one telehub per estate, completely shutting off the option of having SL style telehubs, e.g. one per region. Whole estate teleport routing can still be implemented id desiresd, this way all options are open while the other way most options get closed off.
* | Spin off terrain save into a new thread and make it so that it uses the oldMelanie2011-12-131-29/+34
| | | | | | | | values for places where NaN are found.
* | Don't allow deletion of a terrain from the database unless we have one to ↵Melanie2011-12-051-7/+21
| | | | | | | | replace it with
* | Bring us up to date.Tom2011-09-141-1/+0
|\ \ | |/
| * Save the default terrain texture UUIDs for a new region instead of leaving ↵Justin Clark-Casey (justincc)2011-09-091-1/+0
| | | | | | | | | | | | | | | | | | | | | | them as UUID.Zero. Leaving them at UUID.Zero meant that when a viewer 2 logged into a region that had been freshly created, it received UUID.Zero for these textures, and hence display the land as plain white. On a simulator restart, the problem would go away since when the database adapators loaded the new region settings, RegionSettings itself has code to use default textures instead of UUID.Zero. This commit resolves the problem by saving the default texture UUIDs instead of Zero. However, we currently have to do this in a roundabout way by resaving once the RegionSettings have been created by the database for the first time. This needless complexity should be addressed. This change will also have the effect of replacing any existing UUID.Zero terrain textures with the default ones. However, this shouldn't have any effect since the UUID.Zeros were already being replaced in memory with those same UUIDs.
* | Resolve merge commits, stage 1Tom2011-09-041-17/+0
|\ \ | |/
| * Remove code which was automatically deleting non-root prims from scene ↵Justin Clark-Casey (justincc)2011-09-011-17/+0
| | | | | | | | | | | | | | objects that had previous been attachments. Looks like this code was accidentally uncommented in e1b5c612 from feb 2010. Appears to resolve the rest of http://opensimulator.org/mantis/view.php?id=5664
* | Don't store the default WL profile. This will prevent "valid" from beingMelanie2011-07-051-1/+1
| | | | | | | | set on the default profile and hopefully finally fix day and night
* | Add some flags to control content in search betterMelanie2011-06-201-2/+7
| |
* | Add a missing virtual keywordMelanie2011-05-201-1/+1
| |