aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-03-31Committing the LightShare code, which was developed by TomMeta of Meta7.Melanie1-0/+199
This allows scripts to set WindLight parameters for clients connecting to a region. Currently, this is only supported by the Meta7 viewer.
2010-03-26* Catch exceptions thrown when MySQLEstateData.LinkRegion() is called. This ↵John Hurliman1-8/+14
won't fix the bug I'm seeing with regions not realizing they are already part of an estate, but it will fix the OpenSim crash if that situation ever comes up
2010-03-23First stage of the new interactive region creation. This will allow creationMelanie1-45/+130
of a region and joining it to an existing estate or creating a new estate, as well as creating an estate owner if in standalone, and assigning estate owners. In Grid mode, existing users must be used. MySQL ONLY!!!! so far, as I can't develop or test for either SQLite or MSSQL.
2010-03-22Somehow the starting estate number in MySQL was lost. This adds a migrationMelanie1-0/+3
to start estates at 100. Existing databases having autcreated estates below 100 will see a gap in estate numbering. Other database implementors need to ensure that no estates with numbers less that 100 are autocreated, unless they are prepared to deal with the viewer's built-in notions of Linden Mainland
2010-03-22Remove the reading of estate_settings.xml and the associated processing ofMelanie1-13/+5
defaults. Adding code to facilitate estate creation / managemment as part of first time start up
2010-03-10Formatting cleanup. Add copyright notices.Jeff Ames3-3/+3
2010-03-05Justin, I must have been dyslexic when I wrote UserGridService as the name ↵Diva Canto1-5/+5
for it. GridUserService makes more sense; it's the user of the grid, "grid user". I changed it everywhere.
2010-03-05add initial UserGrid service classes as per diva's directionJustin Clark-Casey (justincc)2-2/+65
this will initially store home location data instead of the presence service compiles but not enough to actually test yet
2010-03-04remove test presence from NullPresenceData since this appears to stop ↵Justin Clark-Casey (justincc)1-2/+2
existing sessions with home locations from being picked up only tested for a single user so this may still fail for multiple users this may well be all academic anyway since standalone need to persistently store home location in presence data in some way
2010-03-01Fix a few compiler warnings.Jeff Ames2-7/+0
2010-03-01Change friends to handle offers as it was originally designed. This mayMelanie1-1/+1
need to be changed in SQLite & MSSQL as well
2010-02-22Changed asset CreatorID to a stringJohn Hurliman1-1/+1
2010-02-22* Adds CreatorID to asset metadata. This is just the plumbing to support ↵John Hurliman1-1/+1
CreatorID, it doesn't modify database backends or OAR files to support storing/loading it
2010-02-21Deleted obsolete files in the Data layer. Compiles.Diva Canto11-2889/+103
2010-02-12Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)1-5/+0
This resolves the problem where eyes and hair would turn white on standalone configurations When a client receives body part information, for some insane reason or other it always ends up uploading this back to the server and then immediately re-requesting it. This should have been okay since we stored that asset in cache. However, the standalone asset service connector was not checking this cache properly, so every time the client made the request for the asset it has just loaded it would get a big fat null back in the face, causing it to make clothes and hair white. This bug did not affect grids since they use a different service connector.
2010-02-09Add the friends service skel and correct some namespace issuesMelanie1-1/+1
2010-02-08Make an exception report more clear. Fix a database access in Presence toMelanie1-15/+22
conform to the changes in the generic table handler.
2010-02-07Finish the "Get friends" methodMelanie1-1/+6
2010-02-05Updated MySQL connection management to use the MySQL connection pooling. ↵Master ScienceSim15-2629/+2230
This should accommodate various timeout problems that exist with the current connection pool code in a more general and standard way.
2010-02-05Fixing an incorrect logging message in insertUserRowOpenSim Master1-1/+1
2010-02-05* Fixed the Cable Beach inventory server to save the CreatorID as well as ↵OpenSim Master1-2/+2
properly handling null item names and descriptions * Fixed the MySQL reader to safely handle null values in string columns that can be null
2010-02-05Fixing an incorrect logging message in insertUserRowOpenSim Master1-1/+1
2010-02-05* Fixed the Cable Beach inventory server to save the CreatorID as well as ↵OpenSim Master1-2/+2
properly handling null item names and descriptions * Fixed the MySQL reader to safely handle null values in string columns that can be null
2010-02-06Fixing an incorrect logging message in insertUserRowOpenSim Master1-1/+1
2010-02-06* Fixed the Cable Beach inventory server to save the CreatorID as well as ↵OpenSim Master1-2/+2
properly handling null item names and descriptions * Fixed the MySQL reader to safely handle null values in string columns that can be null
2010-02-05Implement the friends data adaptorMelanie3-6/+23
2010-02-01Beginning of friends.Diva Canto1-0/+56
2010-01-16Fixed a missing field in the last regions table migration.Diva Canto1-0/+1
2010-01-15Add a handful of new region flags and a small migrationMelanie1-0/+6
2010-01-10Add last_seen field to regions tableMelanie1-0/+5
2010-01-09Preliminary work on the new default region setting mechanismMelanie2-0/+32
2010-01-08Add migrations to add fields to user and auth tablesMelanie2-0/+13
2010-01-04Finish conversion if XInventoryServiceMelanie1-6/+49
2010-01-04First stage port of the XInventoryServiceMelanie2-0/+118
2010-01-04Add the data serviceMelanie1-0/+67
2010-01-04AvatarStore. Untested, but completeMelanie2-5/+10
2010-01-04Formatting cleanup. Add copyright headers.Jeff Ames1-3/+3
2010-01-01New LL login service is working! -- tested in standalone only. Things still ↵Diva Canto1-3/+3
missing from response, namely Library and Friends. Appearance service is also missing.
2010-01-01Prevent the creation of duplicate inventory folders in the case of a loginMelanie1-1/+1
database issue. Now the login will instaead fail later.
2010-01-01Auth data migration.Diva Canto1-0/+5
2009-12-31Implement avatar picker queriesMelanie1-2/+36
2009-12-31Implement saving user account dataMelanie1-1/+1
2009-12-30Some modifications to user service. Query by name is implemented nowMelanie1-0/+1
2009-12-29Fixed a couple of bugs that were bombing the data migration.Diva Canto2-2/+2
2009-12-29Polished the IUserService interface.Diva Canto1-4/+4
2009-12-29Change the interface a bit before someone depends on it's current formMelanie1-0/+4
2009-12-29Give the new user tables the once-over. Strip the current set of methodsMelanie4-139/+18
from IUserAccountService, we need to define what goes in there. Change the handler to the generic handler. Adjust migrations, add index
2009-12-29* Added useraccount tableDiva Canto1-0/+13
2009-12-28Add the indices to really make this table workMelanie1-0/+6
2009-12-28Add a migration to add the 3 new fieldsMelanie1-0/+7