aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Minor formatting cleanup.Jeff Ames2008-08-072-3/+3
|
* Thanks, zaki, for a patch that embeds plugin manifest files into plugin ↵Mike Mazur2008-08-061-0/+23
| | | | dlls. Fix issue 1876.
* Estate series, patch 9 (#9157)Melanie Thielker2008-08-011-0/+6
| | | | | | | | | Adds the new access semantics and the new flag (allow only age verified) Plumbs in the abuse email address from sim to viewer. The other way around, libomv appears to be lacking support for the data field in the packet. Includes a migration, run prebuild!
* Add the missing migration files :/Melanie Thielker2008-08-011-0/+8
|
* Patch #8 in the estate series. Introduces the concept of an estateMelanie Thielker2008-08-011-0/+7
| | | | | | | | owner (alongside the master avatar) and provides storage fo the abuse email address. No user functionality yet. This patch includes a migration.
* Apply updated patch from issue 1871. Thanks sempuki.Mike Mazur2008-07-311-2/+2
|
* Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur2008-07-314-16/+31
| | | | | | PluginLoader. Fix issue 1871.
* The hazards if unclean sourc trees. Yours truly got bitten this time.Melanie Thielker2008-07-261-2/+4
| | | | | | | Re-fix the re-fix from a clean build. This makes the region based settings work as advertised
* Re-Fix the fixMelanie Thielker2008-07-261-1/+1
|
* Fix Mantis #1830Melanie Thielker2008-07-261-0/+1
| | | | | | | Makes region settings save on second and subsequent sim restarts after upgrading.
* Patch #9155 (Mantis #1793)Melanie Thielker2008-07-251-0/+1
| | | | | | | Fix a regression that caused the region settings not to save. Still no SQLite support for region settings. MySQL now functional.
* refactor TaskInventoryItem Mask -> Permissions to be consistant with how thingsSean Dague2008-07-231-10/+10
| | | | | | are stored in the db.
* refactored LandData to use properties, and cleaned up the naming onSean Dague2008-07-231-70/+70
| | | | | | | the properties a bit to be more consistant with other objects (having things like .Name .Description, etc).
* Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2008-07-231-12/+14
|
* Thanks, sempuki, for a patch that moves control of Mono.Addins from source ↵Mike Mazur2008-07-232-11/+0
| | | | attributes to external XML files. Fix issues 1682 and 1786.
* Update svn properties. Fix some inconsistent newlines.Jeff Ames2008-07-191-23/+23
|
* Introduce a separate connection string for estates, which defaults to the one giMelanie Thielker2008-07-181-22/+1
| | | | | | ven for the region datastore. Removes the flag to store prim inventories, which are now always stored.
* Patch to fix saving of estate managers list loaded during migration.Melanie Thielker2008-07-181-0/+3
| | | | | | | No longer teleports an agent home unless their root agent is being banned. Visual blocking is still in effect.
* squashing further warnings.Dr Scofield2008-07-181-19/+19
|
* Thanks, sempuki, for a patch that moves all grid plugins to new PluginLoader ↵Mike Mazur2008-07-184-12/+39
| | | | (issue 1763).
* masks MySQL password from console startup messagesDahlia Trimble2008-07-182-3/+47
|
* Patch #9151Melanie Thielker2008-07-183-140/+492
| | | | | | Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.
* added index to ParentID on prims, as this is sorted on for prim loading.Sean Dague2008-07-161-0/+5
| | | | | | This should speed up initial load of prims, especially on primy regions.
* add migration for SceneGroupID to char(36) plus add an index. ThisSean Dague2008-07-151-0/+9
| | | | | | | should actually speed up deletes substantially, especially for large regions, as this was a table scan before.
* Patch #9148Melanie Thielker2008-07-141-0/+9
| | | | | | | | Patch 5 in the region settings series. Adds a migration to ensure corrupted data is purged and re-read from defaults. Some changes. Still no full functionality
* change SitTarget calls from functions to propertiesSean Dague2008-07-071-14/+15
|
* * remove unused CommitAssets() hook for nowJustin Clarke Casey2008-07-071-7/+0
|
* Copyright notices and formatting cleanup.Jeff Ames2008-07-061-2/+2
|
* Mantis#1661. Thank you kindly, CMickeyb for a patch that:Charles Krinke2008-07-033-36/+107
| | | | | | | patch attached to check for timeouts on mysql connections *before* operations occur that are likely to timeout. if timeout occurs or the connections is down, it is reconnected before the operation fails.
* add 3 migrations, 1 each for prims, primshapes, and primitemsSean Dague2008-07-033-0/+65
| | | | | | | to move all their UUID stores from varchar(255) -> char(36). Based on past evidence, this should help with performance.
* migrate the myisam mysql regions to innodbSean Dague2008-07-031-0/+12
|
* Update svn properties.Jeff Ames2008-07-031-5/+5
|
* * Drop InvType from the assets table since it is no longer usedJustin Clarke Casey2008-07-022-5/+8
| | | | | | | | * Migration should be automatic on sqlite and mysql * Migration is not automatic on mssql, you will need to drop the invType column manually * Migration should be fine, but as for any db change, I would recommend making sure you have backups before moving past this revision
* Mantis#1639. Thank you, Melanie for a patch that:Charles Krinke2008-07-011-1/+8
| | | | | | Reads estate_settings.xml and populates the database from it. If there is no record, just passes the defaults to the application.
* Mantis#1637. Thank you kindly, Melanie for a patch that:Charles Krinke2008-06-301-0/+6
| | | | | | Make each region load it's settings from the database on startup. No user functionality yet.
* * Fix for http://opensimulator.org/mantis/view.php?id=1512Justin Clarke Casey2008-06-292-19/+95
| | | | | | | * Introduce experimental wait timeout checking to mysql region datastore code * This should mean that if the mysql connection has timed out, we should automatically reconnect and not fail or drop queries on region database manipulations
* patch and files from mantis #1630, Thanks MelanieMW2008-06-292-0/+223
|
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-274-173/+185
|
* Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2008-06-271-1/+3
| | | | | | | | | | Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
* Apply patch from bug #1601 -- more documentation for Data/MySQL. Thanks ↵Jeff Ames2008-06-264-78/+315
| | | | kerunix_Flan!
* Mantis#1595. Thank you, Melanie for a patch that:Charles Krinke2008-06-261-0/+3
| | | | | Adds pipes for the prim item flags field
* Add patch from bug #1596 - adds Doxygen documentation in OpenSim.Data.MySQL ↵Jeff Ames2008-06-267-17/+224
| | | | files. Thanks kerunix_Flan!
* add migrations to mysql and sqlite for flags on embedded inventorySean Dague2008-06-251-0/+5
|
* based on positive feedback on performance of making keys fixed lengthSean Dague2008-06-241-0/+31
| | | | | | | for assets, make all the indexed columns in the inventory fixed length via migration.
* add migration to go from varchar -> char for uuid. TestedSean Dague2008-06-231-0/+9
| | | | | | | on my machine, and works, but backing up before migrations is always a good idea.
* * Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares2008-06-212-0/+122
| | | | | | | | World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
* * Handle parcel telehub location corruption gracefully. DBNullTeravus Ovares2008-06-201-7/+16
| | | | | * mySQL this time.
* oops, build break. needed to include another reference.Sean Dague2008-06-191-0/+1
|
* add migrations support for mysql log store. This should completeSean Dague2008-06-193-1/+41
| | | | | | all the mysql bits for migration.
* fix an edge case with migrations in the region store.Sean Dague2008-06-193-2/+54
| | | | | | Add migration support to gridstore.