aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-08-05Remove some debugging from simian connectors.Mic Bowman2-3/+11
2013-07-31Experimental comment to eneralize the handling of Linden caps when theMic Bowman1-0/+179
cap is something other than "localhost". A new interface for handling external caps is supported with an example implemented for Simian. The only linden cap supporting this interface right now is the GetTexture cap.
2013-07-31A pretty major restructuring of the simian method invocations in order toMic Bowman11-282/+578
service access capabilities. In conjunction with the corresponding Simian updates, this enables explicit per-simulator capability-based access to grid services. That enables grid owners to add or revoke access to the grid on a simulator by simulator basis.
2013-07-27Several major improvements to group (V2) chat. Specifically: handle ↵Diva Canto1-0/+1
join/drop appropriately, invitechatboxes. The major departure from flotsam is to send only one message per destination region, as opposed to one message per group member. This reduces messaging considerably in large groups that have clusters of members in certain regions.
2013-07-26Force map tiler to save Water.jpg as an actual jpeg format it seems even ↵nebadon1-1/+1
though we specified jpg extention it was actually a png and thus confusing the viewer silently.
2013-07-21Better version of previous commitDiva Canto1-2/+6
2013-07-21Add the Current Outfit folder as an available folder in the SuitcaseInventory.Diva Canto1-0/+16
2013-07-14Cleanup old hg sessions (older than 2 days)Diva Canto1-0/+3
2013-07-14HG UAS: Moved hg-session data from memory to DB storage. This makes it so ↵Diva Canto2-90/+199
that traveling info survives Robust resets. It should also eliminate the cause of empty IP addresses in agent circuit data that we saw in CC grid. MySQL only.
2013-07-14Minor typo in log messageDiva Canto1-1/+1
2013-07-13Guard against unauthorized agent deletes.Diva Canto2-5/+4
2013-07-13Deleted GET agent all around. Not used.Diva Canto2-37/+0
2013-07-13Gatekeeper: stop bogus agents earlier, here at the Gatekeeper. No need to ↵Diva Canto1-0/+6
bother the sim.
2013-07-11Added property to make for more flexible testing.Diva Canto1-0/+5
2013-07-10Remove a null reference exception in SimianPresenceServiceConnector thatRobert Adams1-4/+8
occurs when GetGridUserInfo cannot find the requested user info.
2013-07-09minor: remove mono compiler warnings from HGSuitcaseInventoryServiceJustin Clark-Casey (justincc)1-3/+3
2013-07-06A little more debugDiva Canto1-1/+1
2013-07-06Simina activity detector was too eager. Disabled it in case simian is not ↵Diva Canto1-1/+2
being used.
2013-07-04Revert "HG Friends: debug an issue where the friends data stored in the DB ↵Diva Canto1-8/+1
is incomplete." This reverts commit 27cdfb7b840423cf8cee08988dc487eeb34d71c7.
2013-07-04HG Friends: debug an issue where the friends data stored in the DB is ↵Diva Canto1-1/+8
incomplete.
2013-07-02Deleted debug messages. Fixed a null ref exception on the POST handler of ↵Diva Canto1-4/+1
GridUserServerPostHandler.cs
2013-07-02More debug messagesDiva Canto1-1/+5
2013-07-02This should have a strong effect on the Unknown User issue mantis #6625Diva Canto1-1/+16
2013-06-30Revert "More debug mantis #6625"Diva Canto1-1/+0
This reverts commit 20f2cf876982b2c7589b67ce4c8f09d8fff3e9f1.
2013-06-29More debug mantis #6625Diva Canto1-0/+1
2013-06-29Changed HG status notifications timeout down to 15secs from the default 100.Diva Canto1-1/+1
2013-06-28In XAssetService, on a delete asset request also delete the asset in any ↵Justin Clark-Casey (justincc)1-3/+4
chained service. This eliminates the async migration since it causes a race condition with the "delete asset" console command
2013-06-22Change IsLocalRegion from using region handle to using regionID. This was ↵Diva Canto1-1/+1
affecting UpdateAgent and CloseAgent in cases where the foreign region is on the same coordinates as *some* local region.
2013-06-21Finally moved HG agent transfers to use agent fatpacks.Diva Canto6-184/+70
2013-06-13Add Option: ClassifiedFeeBlueWall2-2/+20
Add option to set minimum fee for publishing classifieds. Many viewers have a hard coded minimum of 50, which makes publishing classifieds fail where grids have no economy. This allows the grid to set the minimum fee to a suitable value for their operation. The option is located in the [LoginService] section and defaults to 0. The value is sent as "classified_fee" in the login response.
2013-06-13Make XInventoryServicesConnector properly handle a RESULT = false return for ↵Justin Clark-Casey (justincc)1-68/+56
methods where this contains failure rather than throwing an exception. Result = False is generated for methods such as GetFolderForType() when the other end wants to signal a failure of the operation in methods such as GetFolderForType()
2013-06-12After calls to GetSuitcaseXFolder() in HGSuitcaseInventoryService, ↵Justin Clark-Casey (justincc)1-1/+23
consistently check for null return and log warning rather than throw exception. This was being done already in some places. If an exception is thrown it is now an error rather than debug
2013-06-10Remove Temporary from use to shortcut asset stores. The Local propertyMic Bowman1-1/+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.
2013-05-31Adding standard OpenSim header to source filesBlueWall3-0/+81
2013-05-30UserProfilesBlueWall3-0/+267
UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.
2013-05-09Application support:BlueWall2-2/+25
Adding some viwer supported url settings for destination guide and avatar picker apps. URL for the destinations should be: "secondlife:///app/teleport/slurl"
2013-04-27Added an interface to an external ban service. With this commit, the ↵Diva Canto2-4/+69
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-04-27Make method virtualDiva Canto1-1/+1
2013-04-07Optimize the number of Simian calls to get the initial presenceMic Bowman1-110/+83
information for the friends list. This is a pretty big performance improvement on login. Note that you must upgrade simian to incorporate the corresponding GetSessions call.
2013-03-26Phase 1 of implementing a transfer permission. Overwrite libOMV's PermissionMaskMelanie3-1/+6
with our own and add export permissions as well as a new definition for "All" as meaning "all conventional permissions" rather than "all possible permissions"
2013-03-24Phase 1 of implementing a transfer permission. Overwrite libOMV's PermissionMaskMelanie3-1/+6
with our own and add export permissions as well as a new definition for "All" as meaning "all conventional permissions" rather than "all possible permissions"
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-03-15refactor: Reuse Get() method in AssetService to eliminate some copy/paste in ↵Justin Clark-Casey (justincc)1-23/+5
other Get methods
2013-03-15Migrate assets from chained asset service to xassetservice as they are ↵Justin Clark-Casey (justincc)1-28/+20
requested. This shrinks the asset database over time as duplicate assets are fetched.
2013-03-15Fix bug in AssetService where requesting data only for an asset would throw ↵Justin Clark-Casey (justincc)1-1/+5
an exception if the asset did not exist.
2013-03-15Make it possible to chain another asset service underneath the ↵Justin Clark-Casey (justincc)2-23/+75
de-duplicating XAssetService. This makes it possible to use the dedupliicating service without needing to migrate all the existing asset data beforehand. Currently controlled by a ChainedServiceModule setting in [AssetService] (e.g. ChainedServiceModule = "OpenSim.Services.AssetService.dll:AssetService") Not yet ready for use.
2013-03-05Multiattach, part 2Melanie1-3/+9
2013-03-05Multiattach, part 1Melanie1-1/+8
2013-02-27Switched to using the other Util function with a default value.Diva Canto6-6/+12