aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-07-23Pass the first name and last name from the agent circuit data to the ↵Justin Clark-Casey (justincc)2-17/+24
authorization service rather than from the account. This is to accomodate situations where the authorization service is being used by the hypergrid, where visitors have no user account. See http://opensimulator.org/mantis/view.php?id=5517, this code is somewhat adapted/cleaned up from Michelle's patch I'm a little ambivalent about this since visitors could put anything in firstname/lastname so it's not much of an auth measure. It's up to the auth service to decide which data it actually uses. Possibly we should be passing through other info such as agent circuit ip
2011-07-08stop the local inventory services connector from logging an error when an ↵Justin Clark-Casey (justincc)1-3/+3
item id isn't found. making this query is legitimate and so the log line can cause false positivies. It is up to callers to log an error if appropriate.
2011-06-16Added a couple of guards and warnings to the MapImage/MapImageServiceModule.Diva Canto1-2/+12
2011-06-15Added an expiring cache for region information to theMic Bowman2-2/+169
RemoteGridService connector. Timeout is currently set at five minutes. Negative results are not cached. The result is that operations like send an instant message do not have to go through the grid service every time.
2011-06-12First pass at making the V2 map work. Standalones only for now. There are ↵Diva Canto1-0/+232
some issues with the zoom level -- TBD.
2011-05-27HG inventory transfers over the profile working.Diva Canto1-2/+9
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto1-0/+16
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-05-21Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)2-2/+0
OpenSim.Tests.Common instead
2011-04-30Check for RegionID instead of RegionHandle. Other minor tweaksDiva Canto1-2/+2
2011-04-28Fatpack message on agent transfers: 1 message only (UpdateAgent) containing ↵Diva Canto2-4/+9
the agent and all attachments. Preserves backwards compatibility -- older sims get passed attachments one by one. Meaning that I finally introduced versioning in the simulation service.
2011-04-25Made things consistent between LocalInventoryServiceConnector and ↵Diva Canto2-11/+32
RemoteXInventoryServiceConnector on GetFolderContent.
2011-04-15Make all the objects in a coalescence reappears after being loaded from an ↵Justin Clark-Casey (justincc)1-0/+2
IAR. This still doesn't work proprerly since some required textures/contained item assets might be missing. From pure code inspection, it looks like the uuid gatherer may get most asset uuids because the scene object serializer naively pulls non-root parts from all contained scene objects into one mega-object. However, root part uuids may well still be missing, and there may be other odd artifacts from this bug. It appears that storing the size of the coalescence and the offsets is redundant, since one can work out this information from the position data already in the scene object groups.
2011-03-09Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)2-2/+0
This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
2011-03-04Changed order of checks for local regions when processingMic Bowman1-16/+6
AgentUpdate messages. Should improve throttles and reprioritization when an avatar is moving.
2011-02-16Change the QUERYACCESS method to eliminate spurious access denied messagesMelanie2-5/+7
2011-02-07Thanks Tokeiito for noticing this bug. mantis #5366Diva Canto1-1/+1
2011-02-06Better output for show neighboursDiva Canto1-2/+6
2011-02-04Added an additional debug message, and removed a bunch of files that weren't ↵Diva Canto2-362/+5
being used anymore -- the old RemotsInventory connectors stuff.
2011-02-03Change UpdateAgent (for changes in agent position) to be sentMic Bowman1-7/+7
once to each simulator rather than once to each region. This should help with some of the delays caused by multiple outstanding requests to a single service point.
2011-01-28minor: remove a few mono compiler warningsJustin Clark-Casey (justincc)1-3/+4
2011-01-28Fix up QueryAccess to also check parcelsMelanie2-9/+6
2011-01-07Spawn a threadlet upon receiving requests to close agents. The operation may ↵Diva Canto1-1/+4
take too long, and we don't need to keep the caller waiting.
2011-01-03Implement Scope ID lookup on GetLandData. Stacked regions were not handledMelanie2-4/+6
properly
2010-12-29Bug fix in neighbors: serverURI now always has a trailing '/'... neighbors ↵Diva Canto1-1/+1
were not getting notified.
2010-12-27WARNING: simulator config var change! This affects only system-facing ↵Diva Canto1-2/+12
configs. Nothing to do if you follow the rules of not messing with Grid.ini and GridHypergrid.ini. Change the remote Grid region module so that it takes the network connector as a config variable. This allows the region plugin to be reused for both Robust and Simian network connectors.
2010-12-14Fixes mantis #5270 -- Map tiles for hyperlinks not showing in world map for ↵Diva Canto1-22/+87
grided sims.
2010-12-09Plumb a code path for the entity transfer module to ask a destination sceneMelanie2-0/+34
whether or not an agent is allowed there as a root agent.
2010-11-21Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2-3/+46
themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
2010-10-31Removed a couple of very verbose debug messages.Diva Canto1-2/+2
2010-10-29for now, comment out some older or redundant log debug lines to make ↵Justin Clark-Casey (justincc)2-4/+4
diagnostics easier
2010-10-20Major refactoring of appearance handling.Master ScienceSim1-0/+11
AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
2010-10-19Deleted verbose debug messages that are bringing sims to an halt. Increased ↵Diva Canto1-2/+2
the user cache expiration period to 33 hours.
2010-10-04Revert "Add linden prim renderer and update libOMV"Melanie1-2/+2
This reverts commit 766ce9a14146dc9814d488364f5c931d0fa96a17.
2010-10-04Add linden prim renderer and update libOMVMelanie1-2/+2
2010-10-02Attempt at fixing mantis #5057 -- CPU pinned high with HGAssetBroker.Diva Canto1-21/+34
2010-09-29Cleanup: Removed an unreferenced variable from ActivityDetector.csJohn Hurliman1-11/+1
2010-09-29Part two of the previous commit, making IGridUserService.LoggedOut() more ↵John Hurliman3-5/+5
flexible without changing current behavior
2010-09-29Made IGridUserService.SetLastPosition() more flexible to allow different ↵John Hurliman3-6/+11
possible implementations. This doesn't change any behavior or any Robust code, but it simplifies the SimianGrid connector by using the standard OpenSim interface for setting last position now
2010-09-12Formatting cleanup.Jeff Ames3-3/+3
2010-09-08Made the HG asset and inventory brokers use the Helo service in order to ↵Diva Canto1-6/+9
instantiate the right network connectors. Tested on Robust only.
2010-09-07Rolling back the recent libomv update but keeping the ExpiringCache cleanups ↵John Hurliman1-2/+2
(as much as is possible). There was a report of non-finite avatar positions after the update
2010-09-07* Cache null account responses in the SimianUserAccountServiceConnector to ↵John Hurliman1-2/+4
avoid repeated requests for missing avatar IDs * Updated to OpenMetaverse r3442 to fix a timezone issue with ExpiringCache
2010-09-04Move code that allows llGiveInvetory() to move item into appropriate system ↵Justin Clark-Casey (justincc)2-53/+1
folder up from connectors into Scene.Inventory.cs This fixes the problem for all architectures (hg as well as local and grid) and means we don't have to dupe code between connectors. Not ideal in that it becomes non-modular, but methods in Scene.Inventory.cs should eventually be modularized anyway.
2010-09-04Create Scene.Inventory.cs.AddInventoryItem(InventoryItemBase item)Justin Clark-Casey (justincc)1-3/+3
The agentID in AddInventoryItem(UUID agentID, InventoryItemBase item) is redundant since it's contained in item.Owner, and it doesn't make sense for agentID != item.Owner, hence the method is deprecated.
2010-09-03minor: remove mono compiler warningsJustin Clark-Casey (justincc)1-1/+1
2010-08-24Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)2-3/+21
goes to the correct directory Also removes some mono compiler warnings
2010-08-23Add system lookup folder fix to the RemoveXInventoryServiceConnector as well ↵Justin Clark-Casey (justincc)1-0/+17
since this presumably suffers from the same problem.
2010-08-23Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2-9/+18
This was a regression - the code to look up the correct type folder was no longer being called if items were added without a parent folder set This may have been broken since commit bd49985a on 2010-05-02
2010-08-23Remove various warnings and improve logging messages. No functional changes.Justin Clark-Casey (justincc)4-5/+11
2010-08-21Forward-port a small improvement to the land out connectorMelanie Thielker1-1/+2