aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/UserDataBase.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-04-23* Allow interested user data plugins to store temporary user profilesJustin Clarke Casey1-0/+6
* Database and the OGS1 plugins are not interested and hence ignore these calls
2009-04-22* Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey1-0/+2
components * Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims
2009-02-12* optimized usings.lbsa711-2/+0
2008-11-27* Remove unused and largely unimplemented UpdateUserCurrentRegion()Justin Clarke Casey1-1/+0
* please say if this causes you a problem
2008-11-23Plumb in the presence notifications and region shutdown/restart messagesMelanie Thielker1-0/+2
from the presence module to the message server, through the user server and on into the database. This should fix the "Already logged in" issue that grids see after a sim crashes, or a user crashes out of a sim. Not yet a 100% solution for friends, but getting there.
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz1-0/+1
on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-18/+18
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-19Attachment persistence (Mantis #1711)Melanie Thielker1-3/+1
Change user server to handle attachment assets record properly. Ensure that attachments are not re-rezzed on region crossing. Persistence will NOT WORK with earliser UGAI!! Change region server to match.
2008-08-18Formatting cleanup.Jeff Ames1-1/+1
2008-07-31Apply updated patch from issue 1871. Thanks sempuki.Mike Mazur1-1/+1
2008-07-31Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur1-3/+6
PluginLoader. Fix issue 1871.
2008-06-27dr scofield's warning safari:Dr Scofield1-2/+2
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-1/+1
* User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
2008-05-21this removes use of the mapper for wearables, and I can confirm thingsSean Dague1-14/+16
get saved to the database. There are still issues on wearing things after a cleared cache that I'm looking at now.
2008-05-19make the super class conveniance appearance stuff virtualSean Dague1-2/+2
so they can be overrided correctly by subclasses
2008-05-19i can haz pantz?Sean Dague1-5/+2
You sure can. This change set restores pants (and the rest of the default appearance) in grid mode. The root issue had to do with serializing multi-faced textures to the grid server. This also restores the lookup path through the avatar factory module, as that seems the reasonable place to have it live. Some clean up patches are coming later as well, plus testing on standalone, but this should be in a good kicking around state for grid users.
2008-05-16Set svn:ignore. Minor formatting cleanup.Jeff Ames1-1/+1
2008-05-16Formatting cleanup.Jeff Ames1-2/+2
2008-05-16appearance now survives logout. Tommorrow will involve movingSean Dague1-3/+3
the MSSQL and MYSQL mappers back in under datastores and looking at doing gid bits for this
2008-05-15fixed the key issue that caused appearance to go wonkySean Dague1-2/+13
2008-05-15testing avatar appearance as a user serviceSean Dague1-2/+12
2008-05-15remove my UserAppearance object, switch all code to useSean Dague1-2/+2
AvatarAppearance instead.
2008-05-02plumb in connection string to the user database paths. mysql and mssqlSean Dague1-1/+1
just ignore this for now, but it lets us get connect strings to sqlite and nhibernate.
2008-05-02minor refactoring. Change getName and GetVersion methods (yes the had ↵Sean Dague1-2/+2
different casings) to Name and Version properties for the User stores.
2008-05-01added stubs for appearance bits to all the db layersSean Dague1-1/+6
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-1/+1
(this took a while to run).
2008-04-17Update svn properties. Add copyright info to some source files.Jeff Ames1-1/+28
2008-04-02fix ups to include OpenSim.Framework explicit includes (theySean Dague1-0/+1
were implicitly included before). Everything builds again. Now off to testing.
2008-04-02attempt to fix up all refernces to new directory structureSean Dague1-1/+1
2008-04-02reorganizing namespaces to put all the Data stuff into it's own namespaceSean Dague1-0/+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-03-29Set svn:eol-style.Jeff Ames1-29/+29
2008-03-28* Introduced common abstract UserDataBase providerlbsa711-4/+23
* Weeded out multiple AvatarPickerAvatar classes
2008-03-28* Introduced common abstract AssetDataBase implementing IAssetProviderlbsa711-0/+10
* changed the semantics of SQLiteBase to SQLiteUtils * Added abstract placeholder files for the other db providers