aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLiteLegacy (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add the ability for gods to impersonate users. For this, bit 6 needs to beMelanie2010-11-251-0/+5
| | | | | | set in the target's UserFlags and the impersonator must have UserLevel 200 or above. The user can then log in using the target's name and their own password.
* Merge branch 'master' into careminster-presence-refactorMelanie2010-11-231-0/+3
|\
| * Fix joining land parcels not being stored correctly in SQLite. Thank you to ↵Marck2010-11-231-0/+3
| | | | | | | | goetz for the initial patch in Mantis #5230.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-222-6/+6
|\ \ | |/
| * Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2010-11-212-4/+4
| | | | | | | | | | | | themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
| * Updated SQLiteLegacy/SQLiteSimulationData with the same. Is this crap still ↵Diva Canto2010-11-211-2/+2
| | | | | | | | used?!?
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-11-031-0/+3
|\ \ | |/
| * Add lsClearWindlightScene() to the lightshare module to remove WL settingsMelanie2010-11-031-0/+3
| | | | | | | | from a region and allow normal day cycles to be reestablished
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-171-1/+1
|\ \ | |/ | | | | | | | | Integrate the next large patch. Don't use this version, it has a ghost avatar issue. Next push will fix it.
| * Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman2010-09-161-1/+1
| | | | | | | | MapAndArray collection
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-132-3/+19
|\ \ | |/ | | | | | | The modules will need to be updated for this to compile and run again. Please don't use until I do the companion commit to modules later on.
| * * Added ISimulationDataService and IEstateDataServiceJohn Hurliman2010-09-122-0/+18
| | | | | | | | | | * Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
| * Changed all string references of "IRegionDataStore" to "ISimulationDataStore"John Hurliman2010-09-111-2/+0
| |
| * Fixed the naming mess around data connectors for simulation dataJohn Hurliman2010-09-111-1/+1
| |
| * Remove "Dwell" support from core and replace it with calls to methodsMelanie Thielker2010-09-051-3/+0
| | | | | | | | on IDwellModule
| * Remove parts locking from data classes since these are using a copy of the ↵Justin Clark-Casey (justincc)2010-08-261-6/+3
| | | | | | | | scene object
| * Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)2010-08-261-3/+6
| | | | | | | | conditions in linking and unlinking
* | Remove "Dwell" support from core and replace it with calls to methodsMelanie Thielker2010-09-051-3/+0
| | | | | | | | on IDwellModule
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-181-2/+2
|\ \ | |/
| * refactor: Use SOP.Flags rather than SOP.ObjectFlagsJustin Clark-Casey (justincc)2010-08-131-2/+2
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-07-111-2/+2
|\ \ | |/
| * Hopefully fixes mantis #4852Diva Canto2010-07-081-2/+2
| |
* | Provide the interface for StoreAsset to report success or failureTom Grimshaw2010-06-281-1/+3
|/
* Implement the "delete" path for assets. Adds a new option to allow remote ↵Melanie2010-05-091-1/+5
| | | | asset deletion in robust handler.
* minor: eliminate more debug Console.WriteLines, convert one to logging insteadJustin Clark-Casey (justincc)2010-04-301-1/+5
|
* rename SQLiteNG to SQLite and SQLite to SQLiteLegacyJustin Clark-Casey (justincc)2010-04-3057-0/+6082
this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.