Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add code to GridService to check for overlapping of varregions | Robert Adams | 2014-07-20 | 2 | -8/+125 | |
| | | | | | | | | when registering a new region. Adds parameter "[GridService]SuppressVarRegionOverlapCheckOnRegistration=false" that can be turned on to suppress the error check if a simulator's database has old regions that overlap. | |||||
* | In grid mode, add SuppressConsoleCommands flag to [GridService] so that we ↵ | Justin Clark-Casey (justincc) | 2014-07-18 | 1 | -13/+16 | |
| | | | | | | can stop misleading grid service only console commands from registering. We need to do this because the simulator initializes and internal copy of the GridService in grid mode for internal purposes | |||||
* | Add ICommands.HasCommand() method so that we can detect whether a command ↵ | Justin Clark-Casey (justincc) | 2014-07-18 | 1 | -1/+1 | |
| | | | | has already been registered without needing to also run it | |||||
* | minor: Remove compiler warning in GridService | Justin Clark-Casey (justincc) | 2014-07-14 | 1 | -1/+1 | |
| | ||||||
* | Changed GetUserInfo so that the exposure of user account details is ruled by ↵ | Diva Canto | 2014-07-06 | 1 | -5/+17 | |
| | | | | a configuration variable. It's on by default. | |||||
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim | Diva Canto | 2014-07-06 | 1 | -5/+34 | |
|\ | ||||||
| * | Add experimental "show grid size" robust console command. | Justin Clark-Casey (justincc) | 2014-07-05 | 1 | -5/+34 | |
| | | | | | | | | | | This will show an approximate grid size that doesn't count regions that are hyperlinks Not particularly trustworthy since it will still count regions that are not active but were not deregistered (deliberately or due to simulator crash or similar) | |||||
* | | Lookup username given key(uuid) XML-RPC | Blake Bourque | 2014-07-06 | 1 | -0/+2 | |
|/ | ||||||
* | Adjust "show regions" and "show region" robust service console output to ↵ | Justin Clark-Casey (justincc) | 2014-07-05 | 1 | -5/+5 | |
| | | | | | | | show size "show regions" drops the owner id column but is till present in "show region" "show regions" name column expanded to allow for longer hg regions (probably still too short, may eventually have to truncate rather than taking up huge screen space) | |||||
* | Change assembly versions to 0.8.1 | Justin Clark-Casey (justincc) | 2014-06-17 | 16 | -16/+16 | |
| | ||||||
* | Added simulation version compatibility check so that agents coming from ↵ | Diva Canto | 2014-06-06 | 2 | -3/+5 | |
| | | | | 0.7.6 to a varregion running in 0.8 and above will be denied teleport, rather than be allowed and crash the viewer. | |||||
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim | Diva Canto | 2014-06-01 | 2 | -18/+73 | |
|\ | ||||||
| * | Move the generation of the multi-resolution map tiles off the main | Robert Adams | 2014-05-31 | 1 | -16/+66 | |
| | | | | | | | | | | | | region creation thread. For varregions or simulators with many regions, this will speed up simulator startup and elimiate some thread timeout warnings. | |||||
| * | Modifications to debugging printouts. No functional changes. | Robert Adams | 2014-05-31 | 1 | -2/+7 | |
| | | ||||||
* | | Fixed a few things pertaining to interfacing with the estate service. ↵ | Diva Canto | 2014-06-01 | 1 | -1/+1 | |
|/ | | | | | | Specifically, StoreEstateSettings was not being used anywhere; instead EstatSetting.Save was being called, but that method is a trigger to the DB-layer code directly, which, besides being wrong, was making it impossible to replace the service with a remote connector. Also added more packing/unpacking code. | |||||
* | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim | Diva Canto | 2014-05-31 | 1 | -1/+1 | |
|\ | ||||||
| * | minor: Comment out 2 error level debugging message in authentication code | Justin Clark-Casey (justincc) | 2014-05-27 | 1 | -1/+1 | |
| | | ||||||
* | | Moved these two estate-related interfaces to the projects where they belong. | Diva Canto | 2014-05-30 | 2 | -2/+117 | |
|/ | ||||||
* | When creating a new user, create the folders "Current Outfit", "Favorites", ↵ | Oren Hurvitz | 2014-05-25 | 2 | -9/+14 | |
| | | | | | | and the standard subfolders of "Calling Cards". (If we don't create them now then they'll be created later by the viewer, but why wait.) | |||||
* | Adds optional HTTP Basic Authentication to Robust service connectors. | Diva Canto | 2014-05-23 | 11 | -59/+130 | |
| | ||||||
* | Tell QueryAccess explicitly whether the user is coming in via Teleport or ↵ | Oren Hurvitz | 2014-05-19 | 2 | -2/+4 | |
| | | | | | | Cross, because the permission checks are different. Previously we used a heuristic of checking if the entry position is 0 to differentiate between Teleport and Cross, but that doesn't work anymore since we've started providing the precise entry position for cross, too. That's required in order to ensure that the user is allowed to enter the parcel that he's walking into. | |||||
* | Log the user when an inventory operation is blocked because the item/folder ↵ | Oren Hurvitz | 2014-05-19 | 1 | -14/+14 | |
| | | | | isn't in the Suitcase | |||||
* | Return more specific error messages if an attempt to enter a region fails ↵ | Oren Hurvitz | 2014-05-19 | 1 | -1/+1 | |
| | | | | due to permissions (in QueryAccess and IsAuthorizedForRegion) | |||||
* | Fix recent asset request timeout issue by commenting out (for now) the ↵ | Justin Clark-Casey (justincc) | 2014-05-14 | 1 | -10/+14 | |
| | | | | | | | | | m_maxAssetRequestConcurrency mistakenly passed in as a timeout to SynchronousRestObjectRequester.MakeRequest() For a long time, possibly forever, the m_maxAssetRequestConcurrency was mistakenly passed in as a 30 ms timeout rather than as a concurrent connection limiter. This didn't come to light until the timeout was actually used in recent commit faf9ba53 Since this hasn't been operational for a long time and in release candidate phase, commenting it out for now though will need to revisit this. Relates to http://opensimulator.org/mantis/view.php?id=7165 | |||||
* | Fixed error if a user didn't have a "Current Outfit" folder in their suitcase. | Oren Hurvitz | 2014-05-12 | 1 | -9/+12 | |
| | | | | This fixes http://opensimulator.org/mantis/view.php?id=7161 | |||||
* | minor: Capitalize Hypergrid help category like others | Justin Clark-Casey (justincc) | 2014-05-08 | 1 | -5/+5 | |
| | ||||||
* | Log whenever an inventory operation is blocked because the item/folder isn't ↵ | Oren Hurvitz | 2014-05-06 | 1 | -8/+52 | |
| | | | | in the Suitcase | |||||
* | - When sending the "My Suitcase" folder to the client, always claim it has ↵ | Oren Hurvitz | 2014-05-06 | 2 | -9/+9 | |
| | | | | Folder Type 8. (Previously we had used Folder Type -1 in one place, and LLClientView didn't even bother changing Folder Type 100 to anything else.) | |||||
* | Improved HTTP logging | Oren Hurvitz | 2014-04-29 | 1 | -1/+6 | |
| | ||||||
* | Removed dependency on Linq in OpenProfileClient | Oren Hurvitz | 2014-04-28 | 1 | -1/+0 | |
| | ||||||
* | Revert "When linking a Hypergrid region, set the region's flags on the ↵ | Oren Hurvitz | 2014-04-24 | 1 | -4/+4 | |
| | | | | | | in-memory GridRegion immediately." This reverts commit 463d0b2f8f0cd5f02c14391b763680b23c16e438. | |||||
* | When linking a Hypergrid region, set the region's flags on the in-memory ↵ | Oren Hurvitz | 2014-04-24 | 1 | -8/+4 | |
| | | | | | | GridRegion immediately. (When using llTeleportAgent() this *specific* object is used for the teleport, so it should have the correct flags.) | |||||
* | - Created a standard function to send XML-RPC requests, which logs them like ↵ | Oren Hurvitz | 2014-04-24 | 1 | -63/+6 | |
| | | | | | | | we do for other types of HTTP activity. - Changed OpenProfileClient to use the new XML-RPC sending function - Improved logging in WebUtil | |||||
* | Refactored: moved OpenProfileClient to a location where it can be used by ↵ | Oren Hurvitz | 2014-04-24 | 1 | -0/+193 | |
| | | | | both the Simulators and Robust | |||||
* | When sending JSON-RPC calls (for UserProfile), use WebUtil instead of ↵ | Oren Hurvitz | 2014-04-24 | 1 | -5/+5 | |
| | | | | constructing the HTTP requests manually. This allows the calls to be logged when using "debug http all 6". | |||||
* | Fixed: hypergrid-linking stopped accepting the following format: ↵ | Oren Hurvitz | 2014-04-24 | 1 | -11/+21 | |
| | | | | | | "http://grid.example.com" (without a region name) Fixes http://opensimulator.org/mantis/view.php?id=7128 | |||||
* | Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵ | Oren Hurvitz | 2014-04-23 | 6 | -175/+1 | |
| | | | | because it's Obsolete. | |||||
* | Eliminated many warnings | Oren Hurvitz | 2014-04-23 | 3 | -2/+4 | |
| | ||||||
* | Workaround for SRAS: if Store Asset returns 'null' then assume the asset ↵ | Oren Hurvitz | 2014-04-23 | 1 | -0/+7 | |
| | | | | already exists, and this isn't an error | |||||
* | Removed an attempt to set a user's presence to "Region 0" when they HG ↵ | Oren Hurvitz | 2014-04-21 | 1 | -3/+0 | |
| | | | | | | teleport to another grid. a) This shouldn't have been done because at that point the user is still logged-in to the current grid. b) It's not necessary because the user will soon be logged-out completely. c) And it didn't even work because the MySQL database layer prevents setting the region to 0. | |||||
* | Better logging in PresenceService, to help diagnose presence problems. | Oren Hurvitz | 2014-04-21 | 1 | -25/+63 | |
| | ||||||
* | Better error-handling when storing assets: recognize that 'null' is an error ↵ | Oren Hurvitz | 2014-04-20 | 2 | -13/+12 | |
| | | | | value | |||||
* | Stopped setting the Service URL "GatekeeperURI" on users' accounts. It isn't ↵ | Oren Hurvitz | 2014-04-20 | 1 | -1/+0 | |
| | | | | actually used. | |||||
* | Better error checking when creating hyperlinks: a) Reject invalid strings; ↵ | Oren Hurvitz | 2014-04-13 | 1 | -17/+36 | |
| | | | | | | b) Default port is 80, not 0 The change of default port may fix http://opensimulator.org/mantis/view.php?id=7108 , where a user was able to create a Hyperlink to OSGrid from inside OSGrid. | |||||
* | In teleports, pass the source region to the destination (similar to an HTTP ↵ | Oren Hurvitz | 2014-04-09 | 8 | -72/+61 | |
| | | | | referrer) | |||||
* | Log when the presence service logs-out all the users in a region | Oren Hurvitz | 2014-04-09 | 1 | -1/+2 | |
| | ||||||
* | Allow invalidating the users cache | Oren Hurvitz | 2014-04-08 | 5 | -1/+21 | |
| | ||||||
* | Better (amend to previous commit) | Diva Canto | 2014-04-07 | 1 | -12/+19 | |
| | ||||||
* | Avoid calling HELO service on malformed URLs. This is in response to an ↵ | Diva Canto | 2014-04-07 | 1 | -0/+6 | |
| | | | | exception reported by danbanner. | |||||
* | When sending QueryAccess to a region, also send the user's Home URI | Oren Hurvitz | 2014-04-07 | 3 | -5/+28 | |
| |