Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add the missing bits for the new region-search: | Homer Horwitz | 2008-10-03 | 5 | -0/+97 |
| | | | | | | | | | | | | | | | | - Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files. | ||||
* | * minor: remove warnings (the code cleaners strike again) | Justin Clarke Casey | 2008-10-03 | 1 | -9/+9 |
| | |||||
* | fix the sqlite break. There were two issue here: | Sean Dague | 2008-10-03 | 1 | -1/+2 |
| | | | | | | | | | | | 1. type issues on column create in ado.net 2. not setting a field in the ado.net row translates into explicitely setting it to null in sqlite land (because it can't read the defaults stanzas out of the database) Things should work again after this. | ||||
* | Add database persistence for material setting | Melanie Thielker | 2008-10-03 | 4 | -0/+22 |
| | |||||
* | stick a TODO in here about land tests, which really can't be done in | Sean Dague | 2008-10-01 | 1 | -1/+7 |
| | | | | | | | the current state as the Land Object has all these live references back to Scene. | ||||
* | enhance boundary tests for no terrain. Put in a null load | Sean Dague | 2008-10-01 | 1 | -3/+22 |
| | | | | | | test for land. | ||||
* | remove tests for inventory | Sean Dague | 2008-10-01 | 1 | -0/+19 |
| | |||||
* | add basic store retrieve prim inventory test. the prim | Sean Dague | 2008-10-01 | 1 | -3/+60 |
| | | | | | | inventory interfaces definitely need some rethinking. | ||||
* | add delete prim tests. Found and fixed bugs where region | Sean Dague | 2008-10-01 | 3 | -8/+47 |
| | | | | | | | | is not respected by sqlite or mysql drivers so that deleting and object in a region actually deletes that object from any region. | ||||
* | add a test for updating region settings and fix a bug in uuid | Sean Dague | 2008-09-29 | 2 | -1/+21 |
| | | | | | | translation in sqlite uncovered by this test. | ||||
* | * Add missing mssql migration files from ↵ | Justin Clarke Casey | 2008-09-29 | 3 | -0/+76 |
| | | | | | | | | http://opensimulator.org/mantis/view.php?id=2295 * Sorry about that | ||||
* | * Apply http://opensimulator.org/mantis/view.php?id=2295 | Justin Clarke Casey | 2008-09-29 | 4 | -72/+103 |
| | | | | | | | | | | * Updated MSSQL to reflect resend changes * Added the new columns in prims table. * Created a implementation for getting gestures. * Remove configurable table names for user. * Thanks Ruud Lathorp | ||||
* | Mantis#2291. Thank you kindly, StrawberryFride for a patch that solves: | Charles Krinke | 2008-09-28 | 3 | -53/+0 |
| | | | | | | | | | | User server won't start up for a MSSQL grid migrating from a significantly older version to current version due to duplication in three of the migrations code files. Patch included takes out the duplicated code from the three files so a smooth update should happen on start up. | ||||
* | Update svn properties. Minor formatting cleanup. Fix a compiler warning. ↵ | Jeff Ames | 2008-09-28 | 1 | -2/+2 |
| | | | | Fix a UUID vs null comparison. | ||||
* | * Patch from JHurliman | Teravus Ovares | 2008-09-26 | 5 | -17/+17 |
| | | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes.. | ||||
* | * minor: remove warnings | Justin Clarke Casey | 2008-09-26 | 4 | -4/+4 |
| | |||||
* | removal of more dead alter table code | Sean Dague | 2008-09-25 | 1 | -39/+2 |
| | |||||
* | light mysql user tests | Sean Dague | 2008-09-24 | 1 | -0/+88 |
| | |||||
* | expose it for real, missed the public keyword | Sean Dague | 2008-09-24 | 1 | -1/+1 |
| | |||||
* | expose MySQLUserData class so that it can be tested | Sean Dague | 2008-09-24 | 1 | -1/+1 |
| | |||||
* | remove configurable table names from the mysql user driver. That | Sean Dague | 2008-09-24 | 1 | -24/+3 |
| | | | | | | | doesn't work in a world of migrations anyway, and is only cruft that will confuse people. | ||||
* | Add persistence of active gestures. This needs an UGAIM update to work. | Homer Horwitz | 2008-09-24 | 4 | -0/+65 |
| | | | | | | | | | Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course. | ||||
* | light the mysql region tests | Sean Dague | 2008-09-24 | 1 | -0/+97 |
| | |||||
* | let the asset tests run on MySQL. Interesting difference here, the | Sean Dague | 2008-09-24 | 4 | -4/+102 |
| | | | | | | | sqlite driver can handle .Data = Null, the mysql driver can not. We should decide which is the right behavior and adjust code for it. | ||||
* | remove a bunch of out of date inline ALTER table commands that would only | Sean Dague | 2008-09-24 | 1 | -84/+17 |
| | | | | | | confuse people. | ||||
* | couple of minor test cleanups to see if this gets us past the bamboo hump | Sean Dague | 2008-09-23 | 5 | -12/+4 |
| | |||||
* | create the first attempted mysql test. This only runs locally if you | Sean Dague | 2008-09-23 | 1 | -8/+19 |
| | | | | | | | have a database configured as opensim-nunit with user opensim-nunit / password opensim-nunit that has full perms on the database. | ||||
* | remove log4net references, see if that helps fix bamboo | Sean Dague | 2008-09-23 | 1 | -9/+1 |
| | |||||
* | check in stubbing for mysql tests. This is ignored with | Sean Dague | 2008-09-23 | 1 | -0/+74 |
| | | | | | | | | Assert.Ignore() for now, so it won't change anything, but I want to make sure it doesn't break the bamboo infrastructure in it's current state. | ||||
* | * minor: warnings removal | Justin Clarke Casey | 2008-09-21 | 1 | -1/+1 |
| | |||||
* | remove some extraneous debug messages from migrations | Sean Dague | 2008-09-20 | 1 | -2/+0 |
| | |||||
* | Small formatting cleanup, before chi11ken notices. Me bad. | Homer Horwitz | 2008-09-19 | 3 | -20/+39 |
| | |||||
* | add in bits to attempt to enable log4net on these tests to help when debugging | Sean Dague | 2008-09-19 | 3 | -0/+27 |
| | |||||
* | add a region settings test | Sean Dague | 2008-09-19 | 1 | -0/+13 |
| | |||||
* | convert to using proper .net tempfiles, should have done this | Sean Dague | 2008-09-19 | 4 | -4/+13 |
| | | | | | | initially. | ||||
* | Add a db.Dispose before calling Delete on the SQLite database. | Homer Horwitz | 2008-09-18 | 4 | -1/+5 |
| | | | | | | | On Windows, you are not able to delete a file while there is still a handle to it open. | ||||
* | - Add Dispose method to IRegionDataStore | Homer Horwitz | 2008-09-18 | 8 | -10/+110 |
| | | | | | | | | - Add necessary dummy Dispose-methods where they are missing - Implement the SQLite Dispose-methods (currently only used for unit tests, in the next commit) | ||||
* | * Updates the SQLite region database to support the same properties that the ↵ | Teravus Ovares | 2008-09-18 | 3 | -1/+190 |
| | | | | | | | MySQL version does for the table, prims. * If this causes any unit tests to fail, the tests need to be updated. | ||||
* | adds support to delete a region completely and offers that | Dr Scofield | 2008-09-18 | 1 | -1/+0 |
| | | | | | | | | | | functionality via the console command "delete-region" and also via RemoteAdminPlugin. minor typo fix. | ||||
* | add some comments and some try blocks around object storage | Sean Dague | 2008-09-18 | 1 | -3/+26 |
| | | | | | | in the hopes this will help debug why this is failing for some people. | ||||
* | Adding currentLookAt to useragents table in SQLite. This complements the | Homer Horwitz | 2008-09-17 | 2 | -0/+15 |
| | | | | | | MySQL change from http://opensimulator.org/mantis/view.php?id=2073 | ||||
* | Added some terrain tests, and found a fun race condition in the sqlite | Sean Dague | 2008-09-16 | 3 | -26/+97 |
| | | | | | | terrain driver in the process, which is now fixed. yay for unit tests! | ||||
* | we can use equals on strings because they are comparible, and | Sean Dague | 2008-09-16 | 1 | -3/+3 |
| | | | | | | this is the prefered way of doing these tests. | ||||
* | Mantis #904: Thanks jonc, for a patch that adds "useragents" table to | Homer Horwitz | 2008-09-16 | 2 | -67/+84 |
| | | | | | | | SQLite and stores the logout position in standalone mode. Note: This adds a migration for SQLite, so do your runprebuild | ||||
* | add an inventory change test. | Sean Dague | 2008-09-16 | 1 | -0/+19 |
| | |||||
* | Update svn properties, minor formatting cleanup, fix a compiler warning. | Jeff Ames | 2008-09-15 | 1 | -3/+6 |
| | |||||
* | Mantis #2124 | Melanie Thielker | 2008-09-14 | 24 | -1717/+2573 |
| | | | | | | | Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL. | ||||
* | Thank you kindly, CMickeyb for a patch that: | Charles Krinke | 2008-09-14 | 1 | -0/+6 |
| | | | | | | | | | Moved intialization of appearance from the SendInitialData event handler into CompleteMovement handler. That ensures that m_appearance is initialized before the inventory is retrieved (so there is a place to check on attachments). | ||||
* | * Adds regiondata and estatedata persistence in Sqlite. This commit is ↵ | Teravus Ovares | 2008-09-13 | 1 | -0/+3 |
| | | | | actually an assist. 99% of the work was already done by Melanie. | ||||
* | Formatting cleanup. | Jeff Ames | 2008-09-13 | 1 | -1/+1 |
| |