aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-04-28Removed dependency on Linq in OpenProfileClientOren Hurvitz1-1/+0
2014-04-24- Created a standard function to send XML-RPC requests, which logs them like ↵Oren Hurvitz1-63/+6
we do for other types of HTTP activity. - Changed OpenProfileClient to use the new XML-RPC sending function - Improved logging in WebUtil
2014-04-24Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz1-0/+193
both the Simulators and Robust
2014-04-23Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵Oren Hurvitz1-17/+0
because it's Obsolete.
2014-04-23Eliminated many warningsOren Hurvitz1-0/+3
2014-04-20Better error-handling when storing assets: recognize that 'null' is an error ↵Oren Hurvitz1-1/+1
value
2014-04-09In teleports, pass the source region to the destination (similar to an HTTP ↵Oren Hurvitz3-5/+18
referrer)
2014-04-08Allow invalidating the users cacheOren Hurvitz1-0/+2
2014-04-07When sending QueryAccess to a region, also send the user's Home URIOren Hurvitz2-1/+24
2014-04-06When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz1-1/+1
entering the grid. This can affect which region to use. E.g., returning users may be allowed to enter any region, whereas users from other grids will have to enter a gateway region. Previously per-user decisions were only made later, but by then it's too late to change which region the user enters.
2014-04-03When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz1-1/+1
case of error
2014-04-02Added assets service method AssetsExist(), which returns whether the given ↵Oren Hurvitz1-0/+7
list of assets exist. This method is used to optimize sending assets with embedded assets: e.g., when a Hypergrid visitor takes an item into the inventory.
2014-03-18Add delete maptile ability to MapImageService - yet untestedMelanie Thielker1-0/+1
2014-02-20If GetFolderContent called by WebFetchInvDescHandler.Fetch() fails for some ↵Justin Clark-Casey (justincc)1-1/+1
reason and returns null, log and return empty contents rather than throwing an exception that ends up terminating the simulator.
2014-02-14If calls to UserAgentServiceConnector fail then throw an exception. This ↵Justin Clark-Casey (justincc)1-4/+36
lets the caller decide whether to discard the error or not. This is Oren Hurvitz's 0001 patch from http://opensimulator.org/mantis/view.php?id=6956 but I ended up doing some tweaking to resolve patch application issues.
2014-02-04Final code drop for appearance. Adding Avination's baked texture storage server.Melanie1-0/+38
2014-01-16Can delete the Offline Messages sent to/from a user.Oren Hurvitz1-0/+7
This is useful if the user is deleted.
2014-01-04Remove some chatty DebugFormat statements. No functional changes.Robert Adams1-2/+2
2014-01-04varregion: Add region size to teleport event messages (EnableSimulator,Robert Adams1-0/+14
CorssRegion, TeleportFinishEvent). Have Simian grid service return the region size. Many teleport related debug log messages. Can be removed when teleport works (like that's ever going to happen). Conflicts: OpenSim/Framework/RegionInfo.cs
2014-01-03varregion: Add region size to teleport event messages (EnableSimulator,Robert Adams1-0/+14
CorssRegion, TeleportFinishEvent). Have Simian grid service return the region size. Many teleport related debug log messages. Can be removed when teleport works (like that's ever going to happen).
2013-12-28Initialize default region size in GridRegion in the no parameter constructorRobert Adams1-0/+2
as is used by the grid connector tests.
2013-12-28Add serialization/deserialization of region size to RegionInfo, GridRegion, ↵Robert Adams1-0/+25
and RegionData. This does not modify interfaces or handling of variable sized regions. This only enables the loading and storing of the region size and the reporting of the region size in grid service responses. The database tables already have the code to load and store the region size.
2013-12-26varregion: many more updates removing the constant RegionSize and replacingRobert Adams1-0/+2
with a passed region size. This time in the map code and grid services code.
2013-12-24varregion: add lots of DEBUG level log messages. Especially for teleport.Robert Adams1-1/+1
2013-12-14varregion: rename 'LegacyRegionLocX' back to 'RegionLocX' and same for Y and Z.Robert Adams1-2/+2
Rename 'RegionWorldLocX' to 'WorldLocX' and same for Y and Z. This keeps the downward compatibility and follows the scheme of 'region' and 'world' location naming that is happening in the Util module.
2013-12-06Fixed misleading commentDiva Canto1-3/+0
2013-12-06Add support for user preferences (im via email)BlueWall1-0/+5
2013-11-08varregion: elimination of Constants.RegionSize from all over OpenSimulator.Robert Adams1-4/+4
Routines in Util to compute region world coordinates from region coordinates as well as the conversion to and from region handles. These routines have replaced a lot of math scattered throughout the simulator. Should be no functional changes.
2013-11-02varregion: add linkage for region size in creations and conversionsRobert Adams1-0/+21
of GridRegion. New variables for size and code to initialize same.
2013-10-07varregion: plug in TerrainData class and modify TerrainModule and ↵Robert Adams1-2/+2
LLClientView to use same. This passes a terrain info class around rather than passing a one dimensional array thus allowing variable regions. Update the database storage for variable region sizes. This should be downward compatible (same format for 256x256 regions).
2013-10-04Bump OPenSimulator version and assembly versions up to 0.8.0 DevJustin Clark-Casey (justincc)1-1/+1
2013-09-28VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-2/+2
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
2013-09-25VarRegion: change RegionInfo storage of region coordinates from regionRobert Adams1-2/+2
count number to integer world coordinates. Added new methods RegionWorldLoc[XY]. Refactored name of 'RegionLoc*' to 'LegacyRegionLoc*' throughout OpenSim. Kept old 'RegionLoc*' entrypoint to RegionInfo for downward compatability of external region management packages.
2013-09-02Allow one to specify a DefaultHGRegion flag in [GridService] in order to ↵Justin Clark-Casey (justincc)1-0/+1
allow different default regions for HG and direct grid logins. This requires a new GridService.GetDefaultHypergridRegions() so ROBUST services require updating but not simulators. This method still returns regions flagged with just DefaultRegion after any DefaultHGRegions, so if no DefaultHGRegions are specified then existing configured defaults will still work. Immediate use is for conference where we need to be able to specify different defaults However, this is also generally useful to send experienced HG users to one default location and local users whose specified region fails (e.g. no "home" or "last") to another.
2013-08-28Do not add a port zero to end of the hypergrid gateway host name.Robert Adams1-1/+4
If the port is specified it is added but a ":0" is not added if the port is zero. This enables the hypergrid address short form "hypergridGateway:regionName" which is handled by the parser but failed because of this zero port addition.
2013-07-13Guard against unauthorized agent deletes.Diva Canto1-1/+1
2013-07-13Deleted GET agent all around. Not used.Diva Canto1-2/+0
2013-06-21Finally moved HG agent transfers to use agent fatpacks.Diva Canto1-4/+1
2013-05-31Adding standard OpenSim header to source filesBlueWall1-0/+27
2013-05-30UserProfilesBlueWall1-0/+48
UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.
2013-04-27Added an interface to an external ban service. With this commit, the ↵Diva Canto1-0/+48
interface is used only in Hypergrided worlds (Gatekeeper), although in those, it applies to both local and foreign users. The Ban service itself is not in core; it is to be provided externally.
2013-03-18Multiattach, part 2Melanie1-3/+9
2013-03-18Multiattach, part 1Melanie1-1/+8
Conflicts: OpenSim/Framework/AvatarAppearance.cs OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs OpenSim/Region/CoreModules/Avatar/Attachments/Tests/AttachmentsModuleTests.cs OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs OpenSim/Region/Framework/Scenes/Scene.cs OpenSim/Region/OptionalModules/Avatar/Attachments/TempAttachmentsModule.cs OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
2013-02-19Deleted all AssemblyFileVersion directivesDiva Canto1-1/+1
2013-02-05Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)1-1/+1
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.
2013-02-01Revert "Update assembly version numbers"BlueWall1-1/+1
This reverts commit 141ad829f448b9138b12be7cf99c834c1f3977ec.
2013-02-01Update assembly version numbersBlueWall1-1/+1
2012-12-04Improvement in HGInstantMessageService: account for the existence of an ↵Diva Canto1-0/+115
offline IM service.
2012-11-14The last few AssemblyInfos. Finished!Diva Canto1-0/+33
2012-10-30Add method doc to IAssetService.Get(string, object, AssetRetrieved) ↵Justin Clark-Casey (justincc)1-1/+5
outlining the situations in which AssetRetrieved may be called back with a null AssetBase. These situations include asset not found and remote service not responding.