aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add ids to iar requestsJustin Clark-Casey (justincc)2009-09-043-25/+51
| | | | Stop save iar test wrongly relying on thread pulsing (still disabled though)
* If running tests manually, fail immediately on errorJustin Clark-Casey (justincc)2009-09-041-2/+0
|
* If a test dll fails, stop immediately rather than trying all the other test dllsJustin Clark-Casey (justincc)2009-09-032-26/+30
| | | | | This is very useful behaviour if debugging test failures otherwise it's hard to pick out the test output Also, some minor method shuffling in the iar module
* warnings safari.dr scofield (aka dirk husemann)2009-09-021-4/+3
|
* Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)2009-08-281-2/+12
|
* Correct build breakJustin Clark-Casey (justincc)2009-08-281-2/+2
|
* minor: formatting and commentsJustin Clark-Casey (justincc)2009-08-281-1/+2
|
* minor: remove some commented out iar test codeJustin Clark-Casey (justincc)2009-08-281-13/+0
|
* Add copyright header. Formatting cleanup.Jeff Ames2009-08-211-1/+28
|
* * Fleshes more of NPCModule out.Adam Frisby2009-08-211-0/+13
| | | | | | | | | * Implements some OSSL commands: key osNpcCreate(string user, string name, vector position, key cloneFrom); void osNpcMoveTo(key npc, vector position); void osNpcSay(key npc, string message); void osNpcRemove(key npc); * Untested. Requires ThreatLevel.High.
* Remove a load-order dependency in inventory transfer that was bitingMelanie2009-08-201-7/+6
| | | | Windows users
* Add some output (at DEBUG level) to the message transfer module to aidMelanie2009-08-201-0/+4
| | | | in tracking down an initialization failure.
* A better purge of trash folder.Diva Canto2009-08-191-1/+3
|
* jhurliman's patch in http://opensimulator.org/mantis/view.php?id=4024Diva Canto2009-08-183-10/+12
|
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-171-13/+0
|\
| * Did I say that i don't like git? Remove some stuff that shouldn't haveMelanie2009-08-171-13/+0
| | | | | | | | gone in.
* | Commented out one IAR test, because it's failing and needs attention from ↵Diva Canto2009-08-171-5/+7
|/ | | | justincc or arthursv. I think the mock inventory service needs a little bit more beef.
* Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-171-0/+13
|\
| * Add System.Xml reference to the console projectMelanie2009-08-171-0/+13
| |
* | Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-141-41/+14
|\ \ | |/
| * * Re-enable TestLoadIarV0_1ExistingUsers()Justin Clark-Casey (justincc)2009-08-141-12/+3
| |
| * Re-enable TestSaveIarV0_1()Justin Clark-Casey (justincc)2009-08-141-1/+1
| | | | | | | | Implement more parts of TestAssetService
| * Add standard doc and standard doc formatting to IAssetServiceJustin Clark-Casey (justincc)2009-08-141-1/+1
| |
| * Remove NRE catching on TestReplicateArchivePathToUserInventory() since race ↵Justin Clark-Casey (justincc)2009-08-141-27/+9
| | | | | | | | failure now appears to have gone
* | Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-133-7/+7
| | | | | | | | starting to get on my nerves.
* | Inventory redirects from CachedUserInfo to InventoryService COMPLETE!Diva Canto2009-08-131-30/+15
| |
* | Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensimDiva Canto2009-08-131-0/+9
|\ \ | |/
| * Some small fixesMelanie2009-08-131-1/+2
| |
| * Add reference to the profile module in the avatar profiles handler, plusMelanie2009-08-131-0/+8
| | | | | | | | | | an example of how to override legacy core data with data retrieved from the profile module
* | Redirected all calls to CachedUserProfile methods to the inventory service. ↵Diva Canto2009-08-123-104/+83
|/ | | | Redirection of the RootFolder property is still todo. This compiles but probably inventory will be inconsistent.
* Do new inventory module setup, which is why the test was failing (not the ↵Justin Clark-Casey (justincc)2009-08-111-1/+1
| | | | | | original race condition, hopefully!) Still always catching the NRE for now pending analysis
* Re-enable TestReplicateArchivePathToUserInventory() but stop it failing on ↵Justin Clark-Casey (justincc)2009-08-112-10/+26
| | | | | | the NRE for now Add temporarily logging for diagnosis
* Apply http://opensimulator.org/mantis/view.php?id=1448Justin Clark-Casey (justincc)2009-08-111-1/+2
| | | | | | Store and retrieve user profile url at runtime Not yet persisted Thanks Fly-Man
* Disable test again. Ho hum.Justin Clark-Casey (justincc)2009-08-111-1/+1
|
* re-enable just TestReplicateArchivePathToUserInventory() for now to find out ↵Justin Clark-Casey (justincc)2009-08-111-1/+1
| | | | if the race condition has been vanquished
* Establish CachedUserInfo.OnInventoryReceived event so that region/test ↵Justin Clark-Casey (justincc)2009-08-111-10/+36
| | | | inventory code can be written with the async inventory fetch
* * Improves SceneSetupHelper to allow the tester to choose a real or mock, ↵Arthur Valadares2009-08-111-2/+2
| | | | | | | | inventory and asset, service modules. The boolean startServices was replaced with realServices string. If the string contains the word asset, it will start a real asset module, if it contains inventory, it starts a real inventory. Otherwise, it use mock (NullPlugin-like) objects, for tests that don't really need functionality. * SetupScene is now actually sharing the asset and inventory modules if the tester wishes to have multiple regions connected. To link regions, just start SetupScene with the same CommunicationManager for all scenes. SceneSetupHelper will hold a static reference to the modules and won't initialize them again, just run the scenes through the modules AddRegion, RegionLoaded and PostInitialize. * With the recent changes, both asset and inventory (and in the future, user) services should always be asked from the scene, not instantiated alone. The tests should reflect this new behavior and always start a scene.
* Replace the Replaceable modules nameMelanie2009-08-101-1/+1
|
* Disable all IAR tests for now due to possible failure-causing race conditionJustin Clark-Casey (justincc)2009-08-061-3/+3
|
* Disable TestReplicateArchivePathToUserInventory() pending more investigationJustin Clark-Casey (justincc)2009-08-051-1/+1
|
* Reinstate TestLoadIarV0_1ExistingUsers(), removing unnecessary waitJustin Clark-Casey (justincc)2009-08-051-11/+12
|
* insert a little more debug info for TestReplicateArchivePathToUserInventory()Justin Clark-Casey (justincc)2009-08-051-1/+6
|
* Remove waiting in TestReplicateArchivePathToUserInventory() since local ↵Justin Clark-Casey (justincc)2009-08-051-2/+5
| | | | | | inventory loading is synchronous Insert a little more debugging info in case the occasional failure reoccurs
* Recomment TestReplicateArchivePathToUserInventory() for now due to ↵Justin Clark-Casey (justincc)2009-08-051-6/+11
| | | | occasional test fail
* reinstate TestSaveIarV0_1()Justin Clark-Casey (justincc)2009-08-051-1/+1
|
* reinstate TestReplicateArchivePathToUserInventory()Justin Clark-Casey2009-08-051-1/+1
|
* * Updates libOMV to version 0.7.0Teravus Ovares2009-07-251-1/+1
| | | | | | | | * Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html
* Attempt to make it so items rezzed from inventory aren't half in the ground ↵MW2009-07-131-1/+1
| | | | | | | or half in the prim they are being rezzed on top off. This is currently only correct for single prims (not link groups) and unrotated prims. Next step is to fix for link sets and rotated prims. This needs a lot more testing to find use cases where it might be wrong (like half way up a hill?)
* Committing the interface change and the addition to the modules to getMelanie Thielker2009-07-101-0/+5
| | | | | | the ball rolling on replacable modules. No user functionality yet
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-102-3/+3
| | | | | | Change all uses of the HttpServer properties to use the new singleton