aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove a null reference exception in SimianPresenceServiceConnector thatRobert Adams2013-07-101-4/+8
| | | | occurs when GetGridUserInfo cannot find the requested user info.
* minor: remove mono compiler warnings from HGSuitcaseInventoryServiceJustin Clark-Casey (justincc)2013-07-091-3/+3
|
* A little more debugDiva Canto2013-07-061-1/+1
|
* Simina activity detector was too eager. Disabled it in case simian is not ↵Diva Canto2013-07-061-1/+2
| | | | being used.
* Revert "HG Friends: debug an issue where the friends data stored in the DB ↵Diva Canto2013-07-041-8/+1
| | | | | | is incomplete." This reverts commit 27cdfb7b840423cf8cee08988dc487eeb34d71c7.
* HG Friends: debug an issue where the friends data stored in the DB is ↵Diva Canto2013-07-041-1/+8
| | | | incomplete.
* Deleted debug messages. Fixed a null ref exception on the POST handler of ↵Diva Canto2013-07-021-4/+1
| | | | GridUserServerPostHandler.cs
* More debug messagesDiva Canto2013-07-021-1/+5
|
* This should have a strong effect on the Unknown User issue mantis #6625Diva Canto2013-07-021-1/+16
|
* Revert "More debug mantis #6625"Diva Canto2013-06-301-1/+0
| | | | This reverts commit 20f2cf876982b2c7589b67ce4c8f09d8fff3e9f1.
* More debug mantis #6625Diva Canto2013-06-291-0/+1
|
* Changed HG status notifications timeout down to 15secs from the default 100.Diva Canto2013-06-291-1/+1
|
* In XAssetService, on a delete asset request also delete the asset in any ↵Justin Clark-Casey (justincc)2013-06-281-3/+4
| | | | | | chained service. This eliminates the async migration since it causes a race condition with the "delete asset" console command
* Change IsLocalRegion from using region handle to using regionID. This was ↵Diva Canto2013-06-221-1/+1
| | | | affecting UpdateAgent and CloseAgent in cases where the foreign region is on the same coordinates as *some* local region.
* Finally moved HG agent transfers to use agent fatpacks.Diva Canto2013-06-216-184/+70
|
* Merge branch 'master' of /home/opensim/src/opensimBlueWall2013-06-132-2/+20
|\
| * Add Option: ClassifiedFeeBlueWall2013-06-132-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.
* | Make XInventoryServicesConnector properly handle a RESULT = false return for ↵Justin Clark-Casey (justincc)2013-06-131-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()
* | After calls to GetSuitcaseXFolder() in HGSuitcaseInventoryService, ↵Justin Clark-Casey (justincc)2013-06-121-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
* Remove Temporary from use to shortcut asset stores. The Local propertyMic Bowman2013-06-101-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.
* Adding standard OpenSim header to source filesBlueWall2013-05-313-0/+81
|
* UserProfilesBlueWall2013-05-303-0/+267
| | | | UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.
* Application support:BlueWall2013-05-092-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"
* Added an interface to an external ban service. With this commit, the ↵Diva Canto2013-04-272-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.
* Make method virtualDiva Canto2013-04-271-1/+1
|
* Optimize the number of Simian calls to get the initial presenceMic Bowman2013-04-071-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.
* Phase 1 of implementing a transfer permission. Overwrite libOMV's PermissionMaskMelanie2013-03-263-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"
* Merge branch 'master' into newmultiattachMelanie2013-03-183-56/+86
|\ | | | | | | | | Conflicts: OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs
| * refactor: Reuse Get() method in AssetService to eliminate some copy/paste in ↵Justin Clark-Casey (justincc)2013-03-151-23/+5
| | | | | | | | other Get methods
| * Migrate assets from chained asset service to xassetservice as they are ↵Justin Clark-Casey (justincc)2013-03-151-28/+20
| | | | | | | | | | | | requested. This shrinks the asset database over time as duplicate assets are fetched.
| * Fix bug in AssetService where requesting data only for an asset would throw ↵Justin Clark-Casey (justincc)2013-03-151-1/+5
| | | | | | | | an exception if the asset did not exist.
| * Make it possible to chain another asset service underneath the ↵Justin Clark-Casey (justincc)2013-03-152-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.
* | Multiattach, part 2Melanie2013-03-181-3/+9
| |
* | Multiattach, part 1Melanie2013-03-181-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
* Switched to using the other Util function with a default value.Diva Canto2013-02-276-6/+12
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2013-02-274-81/+83
|\
| * Make sure we dispose of WebResponse, StreamReader and Stream in various ↵Justin Clark-Casey (justincc)2013-02-274-81/+83
| | | | | | | | places where we were not already.
* | Moved the HG default variables out of [Startup] and into their own section ↵Diva Canto2013-02-276-6/+6
|/ | | | [Hypergrid] in *Common.ini.example. Backwards compatible for now.
* Added new Util function for reading config vars that's more generic than the ↵Diva Canto2013-02-226-6/+6
| | | | one I added yesterday -- this is for helping move config vars out of [Startup]
* Simplification of HG configs: HomeURI and GatekeeperURI now are defined as ↵Diva Canto2013-02-216-12/+16
| | | | default under [Startup]. They can then be overwritten in the other sections (but probably shouldn't). I kept the existing code for backwards compatibility, so this should not cause any breaks from people's current configurations. But people should move to have these 2 vars under [Startup] -- see OpenSim.ini.example and Robust.HG.ini.example. And yes, both names now end with "URI" for consistency.
* Deleted all AssemblyFileVersion directivesDiva Canto2013-02-1916-16/+16
|
* Give the user some feedback about the success or failure of console login ↵Justin Clark-Casey (justincc)2013-02-201-2/+13
| | | | property commands
* Fixed check for 0 results in GetUserAccounts()Oren Hurvitz2013-02-091-1/+1
|
* Changed protection of CreateDefaultAppearanceEntries to protected, so ↵Diva Canto2013-02-051-1/+1
| | | | extensions of the UserAccountService can reuse this.
* Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)2013-02-0516-16/+16
| | | | | | | | 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.
* Allow registering regions whose names are equivalent under LIKE but not ↵Oren Hurvitz2013-01-022-8/+8
| | | | truly equal
* Fixed bugs when getting the root folder.Oren Hurvitz2013-01-021-1/+10
| | | | | | | | 1. The error checking for the case where there's no "My Inventory" folder was incorrect: it checked the wrong variable. 2. If GetSystemFolderForType() is called to get AssetType.RootFolder then it should return the root folder immediately; not look for another root folder below it.
* Trying to prevent old route of sending attachments, simulator version ↵Diva Canto2012-12-061-1/+1
| | | | unknown maybe due to timeout. mantis #6450
* Improvement in HGInstantMessageService: account for the existence of an ↵Diva Canto2012-12-042-10/+140
| | | | offline IM service.
* Remove old InventoryService, which has for a long time been replaced by ↵Justin Clark-Casey (justincc)2012-11-172-782/+0
| | | | XInventoryService.