aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-02reorganizing namespaces to put all the Data stuff into it's own namespaceSean Dague16-1200/+0
/ dir structure. This is coming in over a few changesets so consider trunk broken for the next 30 minutes as these get pulled together.
2008-04-02refactor, make the file name the class nameSean Dague1-0/+0
2008-04-02* Reworked Data Framework so that MSSQL workslbsa711-3/+0
* Introduced uint as field type * Removed what should be superfluous Guid handling * Introduced stub MySQLDataReader if we need to fix the Guid handling anyway
2008-03-29Set svn:eol-style.Jeff Ames5-91/+91
2008-03-28* Introduced common abstract UserDataBase providerlbsa712-16/+24
* Weeded out multiple AvatarPickerAvatar classes
2008-03-28* Introduced base abstract provider class for GridDatalbsa711-1/+13
2008-03-28* Introduced common abstract AssetDataBase implementing IAssetProviderlbsa715-0/+60
* changed the semantics of SQLiteBase to SQLiteUtils * Added abstract placeholder files for the other db providers
2008-03-25* Refactored out circular reference in Region.Environment <-> ↵lbsa711-20/+0
Framework.Data.Base We REALLY need to get the db layer sorted soon...
2008-03-18Formatting cleanup.Jeff Ames1-2/+2
2008-03-18Formatting cleanup. Minor refactoring.Jeff Ames1-7/+2
2008-03-18* Added the ability to type the partial name of a region in the start ↵Teravus Ovares2-0/+49
location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
2008-03-18Formatting cleanup.Jeff Ames11-291/+284
2008-03-14Fix Mantis 636Sean Dague1-1/+1
2008-03-04Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson1-2/+8
support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
2008-03-03* Renamed the Data Framework namespaceslbsa715-5/+5
2008-03-02Thank you very much, Ahzzmandius for:Charles Krinke1-7/+1
converts Parse calls to TryParse Replaces string.empty and lluuid.zero calls on user load to use real values from DB (related to user profile save/load work. Finer grained patching)
2008-02-20Minor cleanup.Jeff Ames1-16/+10
2008-02-18* Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey1-1/+9
* Minor documentation bits
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby1-2/+2
* Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
2008-02-13* Split out MSSQLManager Test/Init into each provider.lbsa711-3/+0
* Made regions table name configurable (MSSQL only) * Added a note in ini.example pointing out that the sql resources have to change if you change table names * Removed duplicate picker method from GridData interface [Provided by openlifegrid.com]
2008-02-05Converted logging to use log4net.Jeff Ames1-1/+1
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-05Added copyright statements.Jeff Ames5-7/+140
2008-02-04First part of avatar persistence, currently only really works in standalone ↵MW5-11/+32
mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed. To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure). This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database. But the work to move the code to one of the grid servers shouldn't be too much.
2008-02-02Add last entry "owner_uuid" back into regions table definition.Charles Krinke1-1/+19
2008-01-21* Following on from sdague's r3144, commenting out other parts of TribalMediaJustin Clarke Casey5-1/+12
* This should resolve the current build problem
2008-01-16* More work on getting the database framework to actually worklbsa715-14/+14
2008-01-15Set svn:eol-style.Jeff Ames1-17/+17
2008-01-15* Renamed a bunch of Data baseclasses for clarity and readabilitylbsa714-7/+7
(Slowly getting there)
2008-01-15* Some morw work on specializing the database framework for OpenSimlbsa713-3/+21
2008-01-15* Mother of all commits:Adam Frisby3-19/+47
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2008-01-14Set svn:eol-style.Jeff Ames4-277/+277
2008-01-14* Added specialization of DatabaseMapper, DataReader and ObjectFieldMapper ↵lbsa714-0/+278
to support LLVector3, LLQuaternion and LLUUID * Added PrimitiveBaseShapeTableMapper to show how it's done NOTE: Nothing actually works yet - this code should be considered more of educational value until it's all wired together
2007-12-27* Optimized usingslbsa715-6/+9
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-19Misc. cleanup:Jeff Ames1-2/+2
* added Util.Clip(value, min, max) * modified asset cache's numPackets calculation to use max packet size (600) instead of 1000 * removed a few magic numbers
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames5-10/+10
notice of doom
2007-11-24* Removed references to "new LLUUID()", replaced with LLUUID.Zero.Adam Frisby1-1/+1
2007-11-13* Added AvatarPicker in Standalone mode. Works for finding avatar to ban, ↵Teravus Ovares1-0/+12
manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D. * Grid mode always returns 0 results until the Grid Communications portion is done.
2007-10-30* Optimized usingslbsa716-57/+73
* Shortened type references * Removed redundant 'this' qualifier
2007-10-17Renamed SimProfileData to RegionProfileDataTleiades Hax2-9/+9
2007-10-05== The "right name and place" commit ==lbsa713-548/+0
* Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-24/+9
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-9/+24
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-24* Renamed methods on IUserDatalbsa711-12/+12
2007-09-13Hiding evidence that I once was a VB coder (thanks to refactoring). Renamed ↵Tedd Hansen1-1/+0
member names to smallcapsy.
2007-09-12Fixed DNS resolve bug for Grid mode on multi-Homer systems.Tedd Hansen1-0/+1
2007-09-12debug for mysql issueSean Dague1-0/+1
2007-09-11Fix for setting region through property. This should allowSean Dague1-2/+2
mysql to work again in grid mode for user storage.
2007-09-10mass update of urls in source code to new websiteSean Dague8-8/+8
2007-08-28some changes which get us closer to Sqlite storage for usersSean Dague1-2/+8
2007-08-28Ensure that UserProfileData doesn't pass down null values. Sean Dague1-4/+7
These cause some issues with the ADO.NET mapping