aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Improved comments on fetch inventory testsDiva Canto2015-05-101-1/+12
|
* Added unit tests for FetchInventoryDescendents ↵Diva Canto2015-05-104-0/+217
| | | | | | http://wiki.secondlife.com/wiki/Linden_Lab_Official:Inventory_API#Fetch_Inventory_Descendents Also, consolidated the location of the files that handle inventory capabilities.
* Fix mantis #7054: AO in Firestorm and Kokua stopped loading after new ↵Diva Canto2015-05-091-9/+17
| | | | inventory code in place. Cause: # of descendants was wrong.
* Another major overhaul of inventory downloading, this time pertaining to ↵Diva Canto2015-05-081-102/+140
| | | | inventory links. Added yet another function to IInventoryService to get multiple items at once, so that fetching collections of linked items is done once per folder instead of once per item.
* Restore handling of bad folders. I'm not entirely sure this is part of the ↵Diva Canto2015-05-081-9/+48
| | | | | | protocol -- I don't see it here: http://wiki.secondlife.com/wiki/Linden_Lab_Official:Inventory_API#Fetch_inventory_descendents But who knows!
* Apparently Firestorm sometimes sends duplicate folder ids on the same ↵Diva Canto2015-05-081-2/+8
| | | | | | request (see http://opensimulator.org/mantis/view.php?id=7054#c28297). This was throwing the new inventory download code off. Firestorm also sends requests for folder UUID.Zero, which doesn't exist, but doesn't cause any problems either -- it just fails. I'm leaving the warning message for now, just to keep an eye on which folders can't be found, but may remove it in the future.
* Additional debug message to help diagnose a warning message and exception ↵Diva Canto2015-05-081-0/+3
| | | | | | related to previous commit. See http://opensimulator.org/mantis/view.php?id=7054#c28282
* Major change in the way inventory is downloaded: added a method throughout ↵Diva Canto2015-05-071-84/+365
| | | | IIventoryService that fetches sets of folders at once. Also added folder id in the InventoryCollection data structure, so that we don't need to go to inventory server again just for that. This reduces the chatter between sims and inventory server by... a lot. On my tests, this reduces initial inventory download down to 30% of what it currently is.
* Updated all occurrences of AssemblyVersion("0.8.1.*") to ↵Diva Canto2015-04-291-1/+1
| | | | AssemblyVersion("0.8.2.*")
* revised GetMesh to not use intermediate base64 coding schemeFreaky Tech2015-03-052-52/+195
| | | | | | | it delivers binary and has binary as input. base64 intermediate coding makes no sense. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected bug that viewer cannot correctly fetch ItemData when being a HG ↵Freaky Tech2015-03-032-81/+4
| | | | | | visitor Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* corrected response when a not existing folder is requested by a viewer in ↵Freaky Tech2015-03-031-9/+28
| | | | | | that case the response has to report it as bad_folders with uuid instead of returning some dummy Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* As per advice from Singularity devs, set is_display_name_default = true in ↵Justin Clark-Casey (justincc)2015-01-311-1/+1
| | | | | | | GetDisplayName cap return data to make the single name appear. This is still always your avatar name - code to set a different display is not yet implemented. This works from my testing with current Firestorm and Singuarity releases.
* Revert "Stop currently unsettable display names from appearing when ↵Justin Clark-Casey (justincc)2015-01-311-1/+1
| | | | | | [ClientStack.LindenCaps] Cap_GetDisplayNames = "localhost" is set by never passing the username." This reverts commit 2d574c3036964d95dbf914d5f5858a3c39f0c16e.
* Revert "In GetDisplayNames, if user last name is Resident then only send ↵Justin Clark-Casey (justincc)2015-01-241-1/+1
| | | | | | | | | first name for display." Reverting at this point since it may not work well with all viewers. Requires further investigation. This reverts commit a29d53986aa3ca9bfd6759789c8a6f434b78d627.
* In GetDisplayNames, if user last name is Resident then only send first name ↵Justin Clark-Casey (justincc)2015-01-231-1/+1
| | | | | | | | for display. This is to match existing behaviour with UDP behaviour where this is masked out. And to make it consistent with other places where viewers mask this out themselves. Relates to http://opensimulator.org/mantis/view.php?id=7408
* Stop currently unsettable display names from appearing when ↵Justin Clark-Casey (justincc)2015-01-211-1/+1
| | | | | | | | [ClientStack.LindenCaps] Cap_GetDisplayNames = "localhost" is set by never passing the username. Unexpectedly, not setting user name achieves this whereas one might have expected it to be done by not setting display_name in the cap OSD. Emulates LL behaviour when no display name is set. Relates to http://opensimulator.org/mantis/view.php?id=7408
* And finally renamed the classes themselves.Diva Canto2015-01-132-9/+9
|
* Renamed the folder too.Diva Canto2015-01-132-0/+0
|
* Renamed these 2 files, because their names are misleading. This is no longer ↵Diva Canto2015-01-132-0/+0
| | | | called WebFetchInventoryDescendents, and we no longer use that cap; the viewers use FetchInvventoryDescendents2.
* Added GetDisplayNames capability. For now, we don't actually use display ↵Diva Canto2015-01-092-0/+191
| | | | names, and this cap returns the regular name. But this moves the server side into the newer, preferred, protocol used by the viewer for fetching the names of agents in the scene given their UUIDs. (the old protocol is via UDP). This works fine in my limited tests, but could use further testing by others.
* Allow GetMesh capability to be served directly by a server like GetTextureJustin Clark-Casey (justincc)2014-11-252-40/+31
| | | | | To do this required GetMesh to be converted to a BaseStreamHandler Unlike GetTexture connector, no redirect URL functionality yet (this wasn't present in the first place).
* refactor: consistently put all test classes in the OpenSim.Tests.Common ↵Justin Clark-Casey (justincc)2014-11-251-1/+0
| | | | | | package rather than some in OpenSim.Tests.Common.Mock the separate mock package was not useful and was just another using line to always add
* Fix issue with TestTextureNotFound in previous commit 1e3027aJustin Clark-Casey (justincc)2014-07-261-1/+1
| | | | Stop failure by actually giving the test handler a path instead of null
* Revert "Removed unused files: Texture/Mesh server connectors"root2014-07-212-0/+150
| | | | This reverts commit f6ea5088f4cc76eddb05b20b5d768f761b0fbd15.
* Removed unused files: Texture/Mesh server connectorsOren Hurvitz2014-07-212-150/+0
|
* Close streams immediately when we finish using themOren Hurvitz2014-07-211-12/+17
|
* Change assembly versions to 0.8.1Justin Clark-Casey (justincc)2014-06-171-1/+1
|
* Fix test breakageDiva Canto2014-05-081-1/+1
|
* Make the URL for texture redirects match the path of the resource that we ↵Diva Canto2014-05-081-1/+1
| | | | use in OpenSim.
* Finished implementing redirects in GetTexture.Diva Canto2014-05-073-6/+12
|
* Add regression test for http inventory fetch.Justin Clark-Casey (justincc)2014-03-171-2/+5
| | | | Involved some restructuring to allow regression tests to dequeue inventory requests and perform poll responses synchronously rather than async
* If GetFolderContent called by WebFetchInvDescHandler.Fetch() fails for some ↵Justin Clark-Casey (justincc)2014-02-201-1/+9
| | | | reason and returns null, log and return empty contents rather than throwing an exception that ends up terminating the simulator.
* refactor: replace verbose checks with String.IsNullOrEmpty where applicable.Justin Clark-Casey (justincc)2013-11-151-1/+1
| | | | Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
* Bump OPenSimulator version and assembly versions up to 0.8.0 DevJustin Clark-Casey (justincc)2013-10-041-1/+1
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2013-07-151-0/+76
|\
| * Added UploadBakedTexture/UploadBakedTextureServerConnector, so that this can ↵Diva Canto2013-07-131-0/+76
| | | | | | | | eventually be served by a robust instance. NOT FINISHED YET.
* | Add request received/handling stats for caps which are served by http poll ↵Justin Clark-Casey (justincc)2013-07-151-6/+87
|/ | | | | | | handlers. This adds explicit cap poll handler supporting to the Caps classes rather than relying on callers to do the complicated coding. Other refactoring was required to get logic into the right places to support this.
* minor: Add back commented out logging message in Caps.RegisterHandler() that ↵Justin Clark-Casey (justincc)2013-07-081-0/+1
| | | | I accidentally removed.
* For stat purposes, add names to capability request handlers where these were ↵Justin Clark-Casey (justincc)2013-07-081-1/+0
| | | | not set
* Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)2013-07-084-5/+17
| | | | | | | | | to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
* Revert "A little more debug for the Unknown User problem mantis #6625"Diva Canto2013-06-301-3/+0
| | | | This reverts commit ff47cf77ab52d42195fb0f089599618511d4919b.
* A little more debug for the Unknown User problem mantis #6625Diva Canto2013-06-291-0/+3
|
* minor: fix mono compiler warning in FetchInventory2HandlerJustin Clark-Casey (justincc)2013-06-201-2/+2
|
* Remove Temporary from use to shortcut asset stores. The Local propertyMic Bowman2013-06-101-0/+1
| | | | | | differentiates between local & grid storage. The Temporary property just says that which service handles the it, the asset can be safely removed in the future.
* Added AvatarPickerSearch capability handler.Diva Canto2013-05-072-0/+167
|
* Fix CAPS to work like they should - do not send caps to the viewer if ↵Melanie2013-04-301-2/+5
| | | | | | | | they're not in the requested caps list. The previous wrong behavior caused the debug setting "UseHTTPInventory" to fail on all viewers when turned off. UDB inventory would not be correctly used in that case.
* Deleted all AssemblyFileVersion directivesDiva Canto2013-02-191-1/+1
|
* Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)2013-02-052-2/+2
| | | | | | | | This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
* minor: change method doc on GetTextureHandler.TryParseRange(), mainly to ↵Justin Clark-Casey (justincc)2012-12-061-2/+2
| | | | trigger another build