Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | * Fixes SQLite load crash. | Teravus Ovares | 2008-09-13 | 1 | -2/+3 |
| | | | | | | | * added primary key to regionsettings table in the cached table * initialized the data adapter. * Still untested fully, so watch out! | ||||
* | Add region settings support to SQLite (untested!) | Melanie Thielker | 2008-09-13 | 1 | -1/+183 |
| | |||||
* | wrap log4net configure in try block so that it will run if you don't have a | Sean Dague | 2008-09-13 | 1 | -1/+5 |
| | | | | | | | | .config (which no one does). Dropping in the .config lets you see that debug messages, which is handy while writing tests and figuring out why things don't behave like you would guess. | ||||
* | 2 more InventoryItem tests, plus see if I can leave the log4net | Sean Dague | 2008-09-13 | 2 | -0/+26 |
| | | | | | | configure in there to help me get debug messages while developing. | ||||
* | * minor: spelling mistake and message tidying on Migration messages | Justin Clarke Casey | 2008-09-12 | 1 | -5/+5 |
| | |||||
* | add first round of folder tests | Sean Dague | 2008-09-12 | 1 | -44/+98 |
| | |||||
* | * Make fix to MSSQLRegionData.cs in LoadLandObjects as recommended by ↵ | Justin Clarke Casey | 2008-09-12 | 1 | -1/+1 |
| | | | | | | | | Garrett Hussey in Re: [Opensim-dev] MSSQL runtime error in latest build.. * Thanks! | ||||
* | * Add userstore sql upgrade I carelessly forgot to check in a couple of ↵ | Justin Clarke Casey | 2008-09-12 | 1 | -0/+5 |
| | | | | | | | | revisions ago * Hopefully there wasn't a problem anyway, since the look at stuff isn't enabled yet | ||||
* | * Patch http://opensimulator.org/mantis/view.php?id=2163 | Justin Clarke Casey | 2008-09-12 | 2 | -0/+12 |
| | | | | | | | | * Add prim ClickAction persistence to SQLite * This will require a prebuild * Thanks nlin! | ||||
* | * Check in first part of http://opensimulator.org/mantis/view.php?id=2073 | Justin Clarke Casey | 2008-09-12 | 1 | -3/+6 |
| | | | | | | | | | * This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch. | ||||
* | because UUID supports equality, we can do a straight equals instead of | Sean Dague | 2008-09-12 | 1 | -3/+3 |
| | | | | | | convert to string and match. | ||||
* | use new style asserts. They are much easier to read. | Sean Dague | 2008-09-12 | 1 | -2/+2 |
| | |||||
* | move the actual [Test] methods for databases to OpenSim.Data.Tests | Sean Dague | 2008-09-12 | 7 | -167/+308 |
| | | | | | | | classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface. | ||||
* | change order in prebuild.xml so this works in nant on a clean | Sean Dague | 2008-09-12 | 1 | -1/+1 |
| | | | | | | checkout. | ||||
* | be more clever and move the bulk of the db tests for inventory into | Sean Dague | 2008-09-12 | 2 | -140/+187 |
| | | | | | | | | | | | OpenSim.Data.Tests, then subclass with custom init bits for sqlite. As I've only been testing the plugin interfaces anyway, this should make it very easy to write only a little bit of code to use these tests for other databases. It will also give us the framework for definining the datastore behavior and making sure that all the databases do the same thing. | ||||
* | more inventory folder tests | Sean Dague | 2008-09-11 | 1 | -10/+55 |
| | |||||
* | add some folder create and list tests | Sean Dague | 2008-09-11 | 1 | -1/+40 |
| | |||||
* | added simple add / exists folder check | Sean Dague | 2008-09-11 | 1 | -0/+41 |
| | |||||
* | add a few more SQLite Asset tests. | Sean Dague | 2008-09-11 | 1 | -3/+31 |
| | |||||
* | added very basic stubs for User and Inventory db creates and empty | Sean Dague | 2008-09-10 | 2 | -0/+146 |
| | | | | | | calls to make sure they worked | ||||
* | fix typo in name of test db | Sean Dague | 2008-09-10 | 1 | -1/+1 |
| | |||||
* | add basic sniff tests for SQLite Asset store. Initializes a db, | Sean Dague | 2008-09-10 | 1 | -0/+91 |
| | | | | | | | | stores an asset, fetches that asset, make sure it has the name we gave it. All simple stuff, but should catch the more egregious breaks. | ||||
* | add a simple update attribute test for SOG & SQLite | Sean Dague | 2008-09-10 | 1 | -2/+22 |
| | |||||
* | added in a few more tests | Sean Dague | 2008-09-10 | 1 | -6/+40 |
| | |||||
* | the explicit log4net configure attempt was maybe breaking bamboo, get | Sean Dague | 2008-09-10 | 1 | -4/+0 |
| | | | | | | rid of that. | ||||
* | added the first couple of sqlite tests. we'll see how bamboo | Sean Dague | 2008-09-10 | 2 | -2/+53 |
| | | | | | | handles them. | ||||
* | add shell for SQLite testing. No tests yet. | Sean Dague | 2008-09-10 | 1 | -0/+49 |
| | | | | | | | add another nant target for test-xml to get the verbose version | ||||
* | Mantis #511 | Melanie Thielker | 2008-09-10 | 1 | -1/+2 |
| | | | | | | | Allow parsing of hexadecimal int constants from strings. Also fixes a DBNull value in the touch type field crashing the sim | ||||
* | Update svn properties, minor formatting cleanup. | Jeff Ames | 2008-09-10 | 1 | -2/+2 |
| | | | | | Fix unreachable code due to typo in llDetectedGroup. | ||||
* | Thanks, nlin, for a patch implementing persistence for "When Left Clicked" | Mike Mazur | 2008-09-10 | 2 | -0/+11 |
| | | | | | | object property. Fix issue 2149. | ||||
* | * Fixes Sqlite crash bug when saving a prim. | Teravus Ovares | 2008-09-09 | 1 | -1/+6 |
| | |||||
* | possible fix for EARTH SHATTERING KABOOM! when trying to save a prim | Sean Dague | 2008-09-09 | 1 | -1/+1 |
| | |||||
* | fix an automatically stripped out UUID from SQLiteManager | Sean Dague | 2008-09-09 | 2 | -7/+7 |
| | | | | | | fix some spacing in SQLiteRegionData | ||||
* | hopefully fix embedded inventory for sqlite | Sean Dague | 2008-09-09 | 1 | -3/+3 |
| | |||||
* | Update svn properties, formatting cleanup. | Jeff Ames | 2008-09-09 | 4 | -5/+5 |
| | |||||
* | Implement proper persistence of the following prim properties: | Melanie Thielker | 2008-09-08 | 4 | -3/+43 |
| | | | | | | | | | Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite. | ||||
* | Mantis #2133 | Melanie Thielker | 2008-09-06 | 2 | -2/+2 |
| | | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml | ||||
* | * This is the fabled LibOMV update with all of the libOMV types from JHurliman | Teravus Ovares | 2008-09-06 | 51 | -865/+865 |
| | | | | | | | * 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. | ||||
* | * Blind fix what looks like a bug in the new land MSSQL code | Justin Clarke Casey | 2008-09-06 | 1 | -1/+1 |
| | | | | | | | * The data returned from the db was never inserted in the list to be processed and return * This is an example where a warning has revealed a bug | ||||
* | * Remove lots of warnings from the CMS module | Justin Clarke Casey | 2008-09-06 | 2 | -3/+2 |
| | | | | | | * Remove a few other miscellaneous warnings | ||||
* | Update svn properties. | Jeff Ames | 2008-09-03 | 1 | -24/+24 |
| | |||||
* | Mantis #2099 | Melanie Thielker | 2008-09-03 | 2 | -16/+38 |
| | | | | | | | Thank you, cmickeyb, for a patch that corrects the database connection handling in the multithreaded user server. | ||||
* | apparently I missed one of the old version routines that could be | Sean Dague | 2008-09-02 | 1 | -39/+0 |
| | | | | | | removed. Removing that now. | ||||
* | Committing the missing resource file for MSSQL. Sorry... | Melanie Thielker | 2008-09-02 | 1 | -0/+161 |
| | |||||
* | Mantis #2102 | Melanie Thielker | 2008-09-02 | 2 | -8/+10 |
| | | | | | | | Thank you, RuudL, for a patch that supplements the previous MSSQL patch. |