aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-16* Apply http://opensimulator.org/mantis/view.php?id=3166Justin Clarke Casey12-62/+280
* Adds estate access list supports to NHibernate data module * Thanks Tommil
2009-02-16line ending fixes and set native eol propertySean Dague14-804/+804
2009-02-16- remove dependency on OpenSim.Grid.AssetServer.Plugins.Opensim inMike Mazur3-3/+0
OpenSim.Data.*.addin.xml, this is cruft left over from previous testing - fix example SQLite connection string in AssetInventoryServer.ini.example
2009-02-16AssetInventoryServer plugins can't be a dependency for the ↵Mike Mazur1-1/+0
OpenSim.Data.MySQL addin.
2009-02-16Rename NewAssetServer AssetInventoryServer and fully qualify withMike Mazur1-1/+1
OpenSim.Grid.AssetInventoryServer.
2009-02-16- add OpenSim.Grid.AssetServer.Plugins.OpenSim as a dependency for ↵Mike Mazur4-0/+4
OpenSim.Data.*.addin.xml - remove OpenSim.Grid.NewAssetServer.exe from bin/OpenSim.Data.addin.xml - add prebuild.xml section for OpenSim.Grid.AssetServer.Plugins.OpenSim.dll
2009-02-14Mantis 3164. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke3-88/+494
* Added tests for manager, user and group lists. * Added test for ban list. The test had to be left as ignored as native MySQL throws exception when ban is saved. * Added utility class to support parametrized unit tests for range checking.
2009-02-14Remove the "?" that I inadvertently got into the first line Charles Krinke1-1/+1
of EstateRegionLink.cs
2009-02-14Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke20-57/+803
* Created value object for EstateRegionLink for storing the estate region relationship. * Refactored slightly NHibernateManager and NHibernateXXXXData implementations for accesing nhibernate generated ID on insert. ** Changed NHibernateManager.Save method name to Insert as it does Insert. ** Changed NHibernateManager.Save return value object as ID can be both UUID and uint currently. ** Changed NHibernateManager.Load method Id parameter to object as it can be both UUID and uint. * Created NHibernateEstateData implementation. This is the actual estate storage. * Created NHibernate mapping files for both EstateSettings and EstateRegionLink * Created MigrationSyntaxDifferences.txt files to write notes about differences in migration scripts between different databases. * Created estate storage migration scripts for all four databases. * Created estate unit test classes for all four databases. * Updated one missing field to BasicEstateTest.cs * Tested NHibernate unit tests with NUnit GUI. Asset databases fail but that is not related to this patch. * Tested build with both Visual Studio and nant. * Executed build tests with nant succesfully.
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames2-2/+56
warnings. Fix some m_log declarations.
2009-02-13Remove extra ID field from asset DB mapping. Mantis #3122, fixes Mantis #3080.Mike Mazur5-5/+0
2009-02-12large scale fix for svn props after "the great refactor"Sean Dague2-138/+138
2009-02-12* Some more CCClbsa712-13/+13
2009-02-12* Renamed RegionProfileService to RegionProfileServiceProxy to better ↵lbsa712-1/+45
reflect actual use. * Added IRegionProfileService
2009-02-12* Turned RegionProfileService non-staticlbsa711-4/+4
2009-02-12* Applied some CCC (Code Convention Conformance)lbsa711-17/+17
2009-02-12* Added RegionProfileService and moved RequestSimData to it.lbsa712-81/+94
2009-02-12* optimized usings.lbsa7181-388/+120
2009-02-10this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield1-1/+1
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
2009-02-09Update svn properties, minor formatting cleanup.Jeff Ames3-318/+318
2009-02-09Thank you kindly, TLaukkan (Timmil) for a patch that:Charles Krinke3-0/+318
* Fixed and added athursv's BasicEstateTest * Added MySQLEstateTest * Added SQLiteEstateTest
2009-02-09Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke5-1/+6
* Updated migration scripts and hbm.xml so that nhibernate tests work.
2009-02-09* Apply http://opensimulator.org/mantis/view.php?id=3080Justin Clarke Casey1-5/+7
* Changes the NHibernate asset mapping and expose FullID on AssetBase for NHibernate * mikem has seen this patch :)
2009-02-09* Apply http://opensimulator.org/mantis/view.php?id=3094Justin Clarke Casey5-0/+409
* Add NHibernate PostgreSQL database tests. * Tests not yet being run as the PostgreSQL module is not yet fully functional
2009-02-09* Fixing refactoring +1 (Fixes Mantis #3113)Sean Dague1-1/+1
From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-02-09fixing refactoring artefact. (fixes mantis #3113)Dr Scofield1-1/+1
2009-02-09Remove unused OpenSim/Data/{DataStore,InventoryData}Base.cs.Mike Mazur2-67/+0
2009-02-09The DataPluginFactory is now a set of generic methods instead ofMike Mazur1-69/+82
multiple duplicates of the same code.
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield37-46/+46
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-02-04- add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur5-73/+73
- trim trailing whitespace
2009-02-03Embed OpenSim.Data.addin.xml as a resource into OpenSim.Data.dll.Mike Mazur1-0/+21
2009-02-03- moved data plugin loading code from various places toMike Mazur1-0/+141
OpenSim/Data/DataPluginFactory.cs - removed dependencies on a few executable assemblies in bin/OpenSim.Data.addin.xml - trim trailing whitespace
2009-02-03- move OpenSim/Framework/IUserData.cs to OpenSim/Data/IUserData.csMike Mazur1-0/+193
- trim trailing whitespace
2009-02-03- move OpenSim/Framework/IInventoryData.cs toMike Mazur2-10/+167
OpenSim/Data/IInventoryData.cs - trim trailing whitespace
2009-02-03- move IAssetDataPlugin from OpenSim/Framework/IAssetProvider.cs toMike Mazur2-2/+54
OpenSim/Data/IAssetData.cs - remove some trailing whitespace
2009-02-03Rename IAssetProviderPlugin to IAssetDataPlugin aligning with the other data ↵Mike Mazur3-3/+3
plugins.
2009-02-02* Removed the unused Data.Base Frameworklbsa7117-1883/+0
2009-01-29* If an orphaned group is found in the mysql or mssql databases (i.e. there ↵Justin Clarke Casey3-14/+40
is no prim where UUID = SceneGroupID), then force one prim to have UUID = SceneGroupID. * A warning is posted about this on startup giving the location of the object * This should allow one class of persistently undeletable prims to be removed * This change should not cause any issues, but I still suggest that you backup your database beforehand * If this doesn't work for previously linked objects, then you could also try the workaround in http://opensimulator.org/mantis/view.php?id=3059 * This change has been made to mysql and mssql, but sqlite appears to work in a different way
2009-01-28Slight cleanup of docs, removing trailing whitespace.Mike Mazur1-6/+5
2009-01-25Applied patch from #3012 Fixing a minor bug where nhibernate mappings from ↵Adam Johnson1-9/+9
outside OpenSim.Data.NHibernate assembly were not included in sessionFactory. Thanks mpallari!
2009-01-24Update svn properties.Jeff Ames5-357/+357
2009-01-23Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke7-0/+360
* Added Npgsql.dll and Mono.Security.dll which are NpgsqlDriver dlls. * Added missing field to schema creation scripts: PathTaperY. * Added schema creation scripts for PostgreSQL. * Added unit test classes for PostgreSQL. * Added schema creation script folder to NHibernate project in prebuild.xml * Added Npgsql.dll to NHibernate test project dependencies in prebuild.xml * Ensured that build works with both nant and Visual Studio. * Executed build unit tests with nant and NHibernate unit tests with NUnitGUI - Couple of region tests fail due to double precission float rounding errors need to sort out how these are handles in unit tests and if higher precission numeric field needs to be used in Postgresql.
2009-01-22Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2009-01-20* Apply http://opensimulator.org/mantis/view.php?id=3021Justin Clarke Casey5-0/+416
* Adds MSSQL 2005 unit tests * Thanks Tommil!
2009-01-20* Apply http://opensimulator.org/mantis/view.php?id=3020Justin Clarke Casey9-42/+460
* Adds a grid db implementation and unit tests to the NHibernate module
2009-01-20* Apply http://opensimulator.org/mantis/view.php?id=3012Justin Clarke Casey1-10/+49
* Allows different assemblies to be used in NHibernateManager, which makes it possible to use mapping and migration files in different assemblies. * Thanks mpallari!
2009-01-19* Remove unused prims.ParentID field from SQLite and MySQLJustin Clarke Casey4-6/+16
* Since this is a db change, as always I strongly recommend that you backup your database before updating to this revision * Haven't touched MSSQL in case I get it wrong - looking for some kind soul to take care of this.
2009-01-18Avoid an invalid cast on legacy dataMelanie Thielker1-1/+8
2009-01-16Minor formatting cleanup, add copyright header.Jeff Ames1-1/+1
2009-01-16Update svn properties.Jeff Ames2-67/+67