aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-08-08WARNING: massive refactor to follow libomv's latest changes regarding ↵Diva Canto2-3/+5
inventory folders. The newest version of libomv itself is committed here. Basically, everything that was using the AssetType enum has been combed through; many of those uses were changed to the new FolderType enum. This means that from now on, [new] root folders have code 8 (FolderType.Root), as the viewers expect, as opposed to 9, which was what we had been doing. Normal folders are as they were, -1. Also now sending folder code 100 for Suitcase folders to viewers, with no filter. All tests pass, but fingers crossed!
2015-06-17Bug fix in inventory fetching: sometimes the caps request comes before there ↵Diva Canto1-5/+0
is a scene presence, and that's ok.
2015-06-14Quell three new warnings I introduced with AgentPrefsData, return an empty ↵Cinder1-2/+2
llsd map instead of an empty llsd block when no AgentPrefs service is available to try and appease Firestorm Signed-off-by: Diva Canto <diva@metaverseink.com>
2015-06-13Guard against scenes without an agent prefs service and a copy and paste fixCinder1-0/+7
Signed-off-by: Diva Canto <diva@metaverseink.com>
2015-06-13Fixed indentationDiva Canto1-4/+4
2015-06-13A few bug fixes for Agent Preferences to actually work. Also added missing ↵Diva Canto1-1/+1
config for standalone.
2015-06-13Refactor AgentPreferences so that database operations happen centrally. the ↵Cinder1-66/+17
opensim way. Signed-off-by: Diva Canto <diva@metaverseink.com>
2015-06-13Relicense AgentPreferences files to BSD and OpenSimulatorCinder1-25/+24
Signed-off-by: Diva Canto <diva@metaverseink.com>
2015-06-13Support for Linden AgentPreferences capability and friends ↵Cinder1-0/+225
(UpdateAgentLanguage and UpdateAgentInformation) and Mantis #7157 Signed-off-by: Diva Canto <diva@metaverseink.com>
2015-06-03Mantis #7567: added an 8-sec expiring item cache to the inventory network ↵Diva Canto1-1/+1
connector. This fixed the problem on my local test grid and generally made things faster. This cache has been needed for a while... there are many parts in the code where the sim gets an item multiple times in a short amount of time (rezzing attachs and objects, for example). Other minor changes: - added the scene as a parameter to the constructor od FetchInvDescHandler, so that I could see in which scene the handler was being called - brought linked items in linked folders back to being prefetched
2015-05-07Major change in the way inventory is downloaded: added a method throughout ↵Diva Canto1-1/+5
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.
2015-05-05Attempt at fixing mantis #7054. The two inventory threads are stepping on ↵Diva Canto1-2/+3
each other's feet. This needs real-world testing, as I'm not sure of all the consequences of reducing the number of worker threads to 1.
2015-04-29Updated all occurrences of AssemblyVersion("0.8.1.*") to ↵Diva Canto1-1/+1
AssemblyVersion("0.8.2.*")
2015-03-05revised GetMesh to not use intermediate base64 coding schemeFreaky Tech1-14/+45
it delivers binary and has binary as input. base64 intermediate coding makes no sense. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2015-03-03corrected bug that viewer cannot correctly fetch ItemData when being a HG ↵Freaky Tech1-14/+6
visitor Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2015-01-21minor: Comment out log line for the SimulatorFeatures cap request for now to ↵Justin Clark-Casey (justincc)1-1/+1
reduce log verbiage. Please revert if still required.
2015-01-13And finally renamed the classes themselves.Diva Canto1-2/+2
2015-01-10SimulatorFeatures: the viewer also takes GridName in OpenSim extras. Added ↵Diva Canto1-1/+4
that (plus GridURL, in case viewers want to use it too) to the GridService that gives out that info to simulators.
2015-01-09Added GetDisplayNames capability. For now, we don't actually use display ↵Diva Canto1-0/+144
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.
2014-12-30Renamed VERSION_NUMBER to VersionNumberDiva Canto1-2/+2
2014-12-30This cleans up versioning. Specifically:Diva Canto1-2/+2
- It establishes 4 digits for opensim versions - It uses the same number between opensim releases and mono addins versions It also eliminates the last addin.xml files that were still there, for consistency.
2014-12-30WARNING: BREAKING CHANGES FOR REGION MODULE DEVELOPMENT.Diva Canto1-1/+1
This cleans up Opensim's use of mono addins. In particular, the extension points /OpenSim/RegionModules and /OpenSim/WindModule moved from OpenSim.exe to OpenSim.Region.Framework.dll. From here on, developers of region modules should declare their dlls to be dependent on OpenSim.Region.Framework, starting with version 0.8.1 Additional changes: - Addins version uniformly updated to 0.8.1. These numbers should be compatible with the release numbers or else it becomes very confusing. - Mono addins directives moved from files addins.xml to embedded directives in the class and assembly declarations, to make it all consistent
2014-12-29Updated OpenSim-as-addin version from 0.5 to 0.8.1. The addin version number ↵Diva Canto1-1/+1
doesn't need to match the release version number, but I think it's a very good idea that they do.
2014-11-25refactor: Move methods to start a monitored thread, start work in its own ↵Justin Clark-Casey (justincc)1-1/+1
thread and run work in the jobengine from Watchdog to a WorkManager class. This is to achieve a clean separation of concerns - the watchdog is an inappropriate place for work management. Also adds a WorkManager.RunInThreadPool() class which feeds through to Util.FireAndForget. Also switches around the name and obj arguments to the new RunInThread() and RunJob() methods so that the callback obj comes after the callback as seen in the SDK and elsewhere
2014-11-25Fix ghosts copy of SimulatorFeatureModule to enable logging.Justin Clark-Casey (justincc)1-8/+13
2014-11-25Allow GetMesh capability to be served directly by a server like GetTextureJustin Clark-Casey (justincc)1-18/+15
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).
2014-11-25minor: remove compiler warning from unused field in SimulatorFeaturesModuleJustin Clark-Casey (justincc)1-2/+2
2014-11-25refactor: consistently put all test classes in the OpenSim.Tests.Common ↵Justin Clark-Casey (justincc)2-2/+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
2014-11-22Small improvements to SimulatorFeaturesModule: (1) don't overwrite extras if ↵Diva Canto1-1/+21
the grid response is invalid; (2) make the name of the config variable for destination guide consistent with the grid-wide name in LoginService; (3) account for the existence of a [USERID] in the destination guide URL
2014-11-06Added grid information to SimFeatures response, so that the viewer can show it.Diva Canto1-1/+13
2014-10-02minor: Comment out received seed caps request logging for nowJustin Clark-Casey (justincc)1-2/+2
2014-08-06OpenSimExtrasBlueWall1-50/+24
Move the experimental extra features functionality into the GridService. This sends default values for map, search and destination guide, plus ExportSupported control to the region on startup. Please watch http://opensimulator.org/wiki/SimulatorFeatures_Extras for changes and documentation.
2014-08-05Make currently unfiltered EventQueue log messages only appear now at ↵Justin Clark-Casey (justincc)1-16/+24
DebugLevel 1 This covers event queue setup messages and some outgoing messages (e.g. EnableSimulator) In my experience these messages are only useful if you really know what they mean and you're looking for them Otherwise, they're quite spammy. Event queue DebugLevel 1 is enabled with the "debug eq 1" console command
2014-08-02Fix typo in log messageBlueWall1-1/+1
2014-08-01Fix regression in SimulatorFeatures module that would stop OpenSimulator ↵Justin Clark-Casey (justincc)1-12/+20
from starting if no [SimulatorFeatures] section was present in config.
2014-07-31Add region-side extra feature setting for destination guideBlueWall1-0/+4
2014-07-30Simulator Extra Features ServiceBlueWall1-9/+65
Provide a means for regions to fetch extra features supported by modern viewers from a central location .
2014-07-21Eliminated some warningsOren Hurvitz1-1/+0
2014-07-04minor: put standard 'category' in brackets at front of log messages from ↵Justin Clark-Casey (justincc)1-2/+8
previous commit 3d70db4a
2014-07-04When uploading mesh objects with textures also create inventory items for ↵Latif Khalifa1-0/+63
uploaded textures. This implements: http://opensimulator.org/mantis/view.php?id=7250
2014-06-17Change assembly versions to 0.8.1Justin Clark-Casey (justincc)1-1/+1
2014-06-16If processing a queued request fails up to the top of the stack, log the ↵Justin Clark-Casey (justincc)1-3/+13
exception and move to the next request rather than terminate the simulator.
2014-05-27Update regression TestInventoryDescendentsFetch() to account for recent ↵Justin Clark-Casey (justincc)1-1/+1
commit 1fa3a6f This was hidden in continuous integration because of another regression test issue.
2014-05-07Finished implementing redirects in GetTexture.Diva Canto1-3/+6
2014-05-06Show more meaningful error messages when failed to give an item to another userOren Hurvitz1-5/+13
2014-05-02minor: Comment out Cacheitems debug log lines for nowJustin Clark-Casey (justincc)1-6/+6
2014-04-29Fixed the UpdateAgentInformation CAP: the viewer expects the simulator to ↵Oren Hurvitz1-6/+7
echo back the maturity that it sent Without this change, attempts to change the maturity rating in the viewer's Preferences don't work.
2014-04-05Revert "Don't re-retrieve sit part in SP.HandleAgentSit() when we already ↵Justin Clark-Casey (justincc)1-2/+0
have it." This reverts commit 2c00b73cd27a7183a5c105b4e2865f11e4a00d98. Wrong code change
2014-04-05Don't re-retrieve sit part in SP.HandleAgentSit() when we already have it.Justin Clark-Casey (justincc)1-0/+2
2014-03-21rename prefix of ↵Justin Clark-Casey (justincc)1-34/+36
scene-inventory.<scene-name>.ProcessedFetchInventoryRequests and QueuedFetchInventoryRequests to inventory.httpfetch.* Actual inventory processing is done with a single set of static structures rather than per scene.