aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* refactor: move SOP.IsAttachment and AttachmentPoint up into SOG to avoid ↵Justin Clark-Casey (justincc)2011-08-271-4/+2
| | | | pointless duplication of identical values
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-08-182-2/+2
|
* In the asset service, check that an asset exists before attempting to store it.Justin Clark-Casey (justincc)2011-08-171-2/+7
|
* Remove un-needed ATTACH command in migration script.BlueWall2011-08-151-3/+1
| | | | | | This was causing issues when using specified paths to database files by using a hard-coded name.
* minor: a little bit of log message correction/commenting outJustin Clark-Casey (justincc)2011-08-111-1/+1
|
* rename TestHelper => TestHelpers for consistencyJustin Clark-Casey (justincc)2011-08-064-44/+44
|
* refactor: Pull up Assembly of the SQLite classes as a protected property, so ↵Marck2011-07-166-11/+32
| | | | that it can be overwritten in subclasses. That way extensions can decide in which assembly migration resources should be looked up. This is a refactor similar to commit 9923a2ff1002d722ccebea8bf4d71718ed4e2a03 for MySQL -- no functional changes.
* Switched order of SQL statements in Friends migration -- resulted in the ↵Diva Canto2011-06-111-1/+1
| | | | wrong key
* For MySQL, migrate region tables to the MyISAM storage engine rather than InnoDBJustin Clark-Casey (justincc)2011-06-101-0/+16
| | | | | | | | Using MyISAM proves vastly faster for persisting scene objects. For instance, a scene object that took 9 seconds to persist before now takes 1. This also improves the experience of loading large OARs. We don't use any of the transactional features of InnoDB. The only thing that may have an impact is that InnoDB does row locking on inserts while MyISAM does table locking. However, field reports say there is no noticeable difference.
* This is the better solution: make the combined key be only on the first 36 ↵Diva Canto2011-06-011-1/+2
| | | | characters of each field -- that's the UUIDs. Thanks coyled. WARNING: Again, people who have gone through this migration and failed need to run it manually.
* It looks like there's a better solution for that problem.Diva Canto2011-06-011-2/+1
| | | | | | Revert "Changed Friends table to have 165-sized varchars on PrincipalID and FriendID. The reason for this number is the following: there is a combined key of these 2 fields; apparently MySql can't handle keys larger than 1000 bytes; when the table is created with utf8 encoding, this combined key is bigger than 1000 bytes, and the migration fails. WARNING: this is not a new migration! People who have gone through this migration and failed should update the sizes of these fields manually." This reverts commit 3fa54a156a83e498a7d5d0949a5f848fe82fe86f.
* Changed Friends table to have 165-sized varchars on PrincipalID and ↵Diva Canto2011-06-011-1/+2
| | | | FriendID. The reason for this number is the following: there is a combined key of these 2 fields; apparently MySql can't handle keys larger than 1000 bytes; when the table is created with utf8 encoding, this combined key is bigger than 1000 bytes, and the migration fails. WARNING: this is not a new migration! People who have gone through this migration and failed should update the sizes of these fields manually.
* Updates to MSSQL to most recent compatibility, also included Windlight ↵Chris Hart2011-06-0110-48/+828
| | | | support. Needs plenty of testing but clean install and migration from 0.6.9 have been tested and work, a few indexes still need to be added for performance.
* Fix dumb sql mistake in MSSQLGenericTableHandler.Delete()Justin Clark-Casey (justincc)2011-05-311-1/+1
|
* fix bug where generic sqlite table delete wasn't working.Justin Clark-Casey (justincc)2011-05-271-1/+1
| | | | this would have caused dupe links bugs when using the sqlite adaptor
* More on HG Friends. Added Delete(string, string) across the board. Added ↵Diva Canto2011-05-225-5/+30
| | | | security to friendship identifiers so that they can safely be deleted across worlds. Had to change Get(string) to use LIKE because the secret in the identifier is not always known -- affects only HG visitors. BOTTOM LINE SO FAR: HG friendships established and deleted safely across grids, local rights working but not (yet?) being transmitted back.
* Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto2011-05-215-2/+24
| | | | FriendsData[] GetFriends(string principalID) to IFriendsData and FriendInfo[] GetFriends(string PrincipalID) to IFriendsService. Refactored some more in the FriendsModule. Made client get notification of local friends permissions upon HGLogin. HG Friends object permissions work.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2011-05-217-24/+125
|\
| * Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)2011-05-197-24/+125
| | | | | | | | | | | | | | If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
* | HG Friends working to some extent: friendships offered and accepted ↵Diva Canto2011-05-193-3/+9
|/ | | | correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
* Accidentally committed too earlyJustin Clark-Casey (justincc)2011-05-187-125/+24
| | | | | | Revert "Allow item links to be deleted even when other deletes and purges are disabled." This reverts commit 491279f99afc65860d44765ee7829c7dd5e4e38e.
* Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)2011-05-177-24/+125
| | | | | | | If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
* Mantis #5470 -- add forgotten MSSQL's GridUserStore. Thank you MrMonkEDiva Canto2011-05-071-0/+19
|
* remove further mono compiler warningsJustin Clark-Casey (justincc)2011-05-065-6/+6
|
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2011-05-062-4/+2
|
* Thank you MrMonkE for a patch that seems to bring the MSSQL data layer up to ↵Diva Canto2011-04-2811-32/+199
| | | | speed with 0.7.x.
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-04-121-3/+3
|
* Include code to return more information about the NullReferenceException seen inJustin Clark-Casey (justincc)2011-04-111-2/+13
| | | | http://opensimulator.org/mantis/view.php?id=5403 prior to doing something about it.
* Remove the SQLite legacy adaptor. This is no longer needed now that the ↵Justin Clark-Casey (justincc)2011-04-0757-6164/+0
| | | | | | main adaptor works on Mac OS X. The SQLite legacy adapator was also not at all well maintained, even worse than the mainline sqlite adapator.
* * Bugfix - Compile NullEstateData implement public List<int> ↵Teravus Ovares (Dan Olivares)2011-04-041-0/+10
| | | | IEstateDataStore.GetEstatesByOwner(UUID)
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimMic Bowman2011-04-044-1/+80
|\
| * Make the "All Estates" option work from the client (this makes chosen ↵Justin Clark-Casey (justincc)2011-04-054-1/+80
| | | | | | | | | | | | | | | | changes to all the estates that the user owns). This applies to adding/removing estate users, groups, managers and bans. This is the application of the AllEstates_0.5.patch from http://opensimulator.org/mantis/view.php?id=5420 Thanks very much, Snoopy!
* | Updates NullStorage plugin.Mic Bowman2011-04-042-0/+140
|/ | | | Thanks MisterBlue...
* remove some mono compiler warningsJustin Clark-Casey (justincc)2011-03-316-10/+8
|
* On initial region registration, if the user chooses the option to make the ↵Justin Clark-Casey (justincc)2011-03-214-0/+122
| | | | region part of an existing estate, then list the existing region names.
* Fix a bug in T015_LargeSceneObjects() where the large scene object was ↵Justin Clark-Casey (justincc)2011-03-141-2/+3
| | | | | | stored 31 times (1 time for each added part) instead of once at the end, even though only the largest 31 prim scene object was retrieved and tested. This considerably speeds up the test, when on sqlite it now only takes 2 seconds rather than 30+
* when retrieving a sog in database tests, don't bother adding the scene since ↵Justin Clark-Casey (justincc)2011-03-141-14/+1
| | | | this isn't used
* Add method doc to T015_LargeSceneObjects() and slightly clean up formatting.Justin Clark-Casey (justincc)2011-03-141-3/+6
| | | | This test takes a considerable time on SQLite but should remain since it's testing storage and retrieval of a scene object with 31 parts.
* Add current method output to all persistence level tests so that we can ↵Justin Clark-Casey (justincc)2011-03-144-11/+99
| | | | track where we are in the test suite
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2011-03-121-1/+1
|
* Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)2011-03-096-57/+2
| | | | This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
* Simplify TestLoadIarV0_1AbsentUsers() to use common IAR test setup. Make ↵Justin Clark-Casey (justincc)2011-03-091-14/+51
| | | | static dictionaries on NullUserAccountData instance instead to stop user accounts being carried over between tests
* Pull up Assembly of the MySQL classes as a protected property, so that it ↵Diva Canto2011-03-086-11/+39
| | | | can be overwritten in subclasses. That way extensions can decide in which assembly migration resources should be looked up. This is just a refactor -- no functional changes whatsoever.
* GetRegion(s)ByName with SQLite behaves like it does with other databases.Marck2011-02-221-10/+38
| | | | The in-memory storage of region data that is used by default with SQLite now handles wildcards in region names in the same way as SQL queries do with other databases.
* In SQLiteSimulationData.RemoveLandObject(), don't manually remove the row ↵Justin Clark-Casey (justincc)2011-02-111-6/+0
| | | | | | | | from the data adaptor's Rows list in addition to calling Delete. This matches the behaviour for other deletions and stops this operation failing on Windows .NET (though mono is fine with the duplication). Probably a holdover from copying code from the older legacy adaptor. Resolves http://opensimulator.org/mantis/view.php?id=5361
* Also fix MySQLXInventoryDataMelanie2011-01-181-1/+1
|
* Prevent activation and deactivation of gestures from clobbering the slamMelanie2011-01-181-1/+1
| | | | bits
* Fixed some inconsistency with trailing /. Made debug messages consistent. ↵Diva Canto2010-12-052-2/+9
| | | | Changed the stored region names of HG regions. Increased the size of regionName in DB.
* Another attempt at fixing failing test for creator info.Marck2010-11-261-2/+2
|
* Attempt at fixing failing test.Diva Canto2010-11-231-2/+4
|