aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-06-24Tell hypergridders when their teleports fail because of the 4096 limit ↵Justin Clark-Casey (justincc)1-56/+59
rather than just saying "destination not found" Instead of performing the 4096 check when the region is linked (and subsequently removing the link), leave the link in place and perform the check in the entity transfer module This allows us to explicitly tell the hypergridder why the teleport failed (region out of range). It also allows people on regions that are within range (on a large source grid) to teleport. The Check4096 config parameter in the [GridService] section is replaced by a max_distance paramter in a new [EntityTransfer] section in OpenSimDefaults.ini Since the parameter is in OpenSimDefaults.ini no action needs to be taken unless you want to increase this limit. It could also be decreased. The check is being made in the base entity transfer module, since I believe the viewer problem occurs both on extremely large grids and while hypergridding.
2011-06-13V2 map now working in grids too. WARNING: A few visible configuration ↵Diva Canto2-42/+41
variables added in order for this to work. See .ini.example changes
2011-06-12Add credit and link to SimianGrid project. Thanks, guys!Diva Canto1-0/+4
2011-06-12People are bound to forget the '/' at the end of MapTileURL, so let's ↵Diva Canto1-0/+8
correct that from the inside.
2011-06-12bit depth: 24!!! begeez! -- zoom levels work now.Diva Canto1-3/+2
2011-06-12A few bug fixes on map V2. Zoom level weirdness still there.Diva Canto1-1/+1
2011-06-12First pass at making the V2 map work. Standalones only for now. There are ↵Diva Canto3-2/+457
some issues with the zoom level -- TBD.
2011-06-11Only send AgentOnline to the client if the friendsOnline list has elements. ↵Diva Canto1-1/+1
Also, increased the timeout on UserAgentServiceConnector, StatusNotification again.
2011-06-10More tweaking on the UserAgentServiceConnector: add constructor that does ↵Diva Canto1-13/+22
not do DNS lookup, and use that for friends notification.
2011-06-10Decreased timeout of HG StatusNotification to 4secs. ↵Diva Canto1-1/+1
http://opensimulator.org/mantis/view.php?id=5516
2011-06-08Removing special casing on failures. This may also fix reports of this issue:Diva Canto1-2/+4
22:07:53 - [USER AGENT CONNECTOR]: remote call to http://hg.osgrid.org:80/ returned an error: Requested method [locate_user] from 127.0.0.1 threw exception: Object reference not set to an instance of an object at OpenSim.Services.HypergridService.UserAgentService.LocateUser (UUID userID) [0x00000] in <filename unknown>:0
2011-06-08Deleted wrong debug message.Diva Canto1-1/+0
2011-06-07Added error message to help understand ↵Diva Canto1-0/+5
http://opensimulator.org/mantis/view.php?id=5527
2011-06-07This hopefully fixes all issues with online/offline notifications across ↵Diva Canto3-10/+76
grids. http://opensimulator.org/mantis/view.php?id=5528
2011-06-07Remove scary error messageDiva Canto1-6/+0
2011-06-07This fixes the crash reported in ↵Diva Canto3-18/+14
http://opensimulator.org/mantis/view.php?id=5529 related to sending IMs to foreign friends who are offline. Hopefully.
2011-06-06This should make offline IMs work again. It should work for incoming foreign ↵Diva Canto1-4/+47
IMs where the local recipient is offline. I can't test any of this, because I don't run an offline IM server.
2011-06-04Fix give inventory tests to use different users rather than (accidentally) ↵Justin Clark-Casey (justincc)1-2/+6
the same user. Extend TestGiveInventoryItem() to test giving back the same item.
2011-06-02HG IM: increase the timeout valueDiva Canto1-1/+1
2011-06-02Bug fix on HG IM.Diva Canto2-14/+14
2011-06-02HG Friends bug fix: connector was shrinking principalID to UUID.Diva Canto1-12/+12
2011-06-01Re-Apply Use current TravelingAgent if the the login failure reason is ↵BlueWall1-2/+5
"Logins Disabled" to fix NullReferenceException, allowing agent to login to fallback region when logins are disabled by "StartDisabled = true" or when logins are disabled by RegionReady"" This reverts commit 0a430bbffb561a5172220e7617257798c11a66f5.
2011-06-01Revert "Use current TravelingAgent if the login failure reason is "Logins ↵BlueWall1-5/+2
Disabled" to fix NullReferenceException, allowing agent to login to fallback region when logins are disabled by "StartDisabled = true" or when logins are disabled by RegionReady" This reverts commit 4b9e446c6267a1161263d885699e72c97e8a94eb.
2011-06-01Use current TravelingAgent if the login failure reason is "Logins Disabled" ↵BlueWall1-2/+5
to fix NullReferenceException, allowing agent to login to fallback region when logins are disabled by "StartDisabled = true" or when logins are disabled by RegionReady
2011-06-01Add alternate region handling for url based logins as found in login to ↵BlueWall1-3/+15
"home" or "last"
2011-05-30Made GetMapImage public in the HyperlinkerDiva Canto1-5/+5
2011-05-30Made the GatekeeperConnector a public property.Diva Canto1-0/+4
2011-05-30HGWorldMap: don't send map blocks of hyperlinks that are farther than 4096 ↵Diva Canto1-1/+4
cells from the current region.
2011-05-28Fixed an issue with the response of CreateAgent over the SimulationConnector.Diva Canto1-6/+21
2011-05-27minor: remove mono compiler warningJustin Clark-Casey (justincc)1-4/+4
2011-05-27HG lures working! Friends can offer friends HG teleports via the profile. ↵Diva Canto1-0/+1
WARNING: additional configuration for HG inis -- see *Common.ini.example
2011-05-27HG inventory transfers over the profile working.Diva Canto2-5/+7
2011-05-26Commented a few extra debug messages.Diva Canto3-9/+7
2011-05-26HG IM in grid mode working fairly well. Unknown target user references ↵Diva Canto5-8/+103
looked back in source user's User Agent service.
2011-05-26fix bug where outfit folder links could not be deletedJustin Clark-Casey (justincc)1-4/+4
2011-05-25HG: Renamed, shuffled some interfaces around. Move them all to ↵Diva Canto2-45/+9
IHypergridServices.
2011-05-25HG: Instant Message working. Tested on HG standalones only. Needs a lot more ↵Diva Canto6-0/+522
testing.
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto4-11/+103
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-05-23HG friends: Status notifications working. Also initial logins get the online ↵Diva Canto4-3/+303
friends in other grids.
2011-05-22More on HG Friends. Added Delete(string, string) across the board. Added ↵Diva Canto7-89/+79
security to friendship identifiers so that they can safely be deleted across worlds. Had to change Get(string) to use LIKE because the secret in the identifier is not always known -- affects only HG visitors. BOTTOM LINE SO FAR: HG friendships established and deleted safely across grids, local rights working but not (yet?) being transmitted back.
2011-05-22File to be removedDiva Canto1-11/+0
2011-05-21Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto6-33/+70
FriendsData[] GetFriends(string principalID) to IFriendsData and FriendInfo[] GetFriends(string PrincipalID) to IFriendsService. Refactored some more in the FriendsModule. Made client get notification of local friends permissions upon HGLogin. HG Friends object permissions work.
2011-05-19HG Friends working to some extent: friendships offered and accepted ↵Diva Canto7-11/+299
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
2011-05-19Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)1-6/+28
If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
2011-05-18Accidentally committed too earlyJustin Clark-Casey (justincc)1-24/+6
Revert "Allow item links to be deleted even when other deletes and purges are disabled." This reverts commit 491279f99afc65860d44765ee7829c7dd5e4e38e.
2011-05-17Allow item links to be deleted even when other deletes and purges are disabled.Justin Clark-Casey (justincc)1-6/+24
If these links are not deleted, then they will build up in the player's inventory until they can no longer log in. Accidental deletion of links due to bugs or other causes is potentially inconvenient but on a par with items being accidentally moved. When a link is deleted, the target of the link is never touched. This is a general solution that accounts for the use of links anywhere in the user's inventory.
2011-05-08Also compress the actual fatpacksMelanie1-1/+6
2011-05-08Enable compressed (gzip) fatpack transfers.Melanie1-5/+14
2011-05-06minor: slightly shorten "show digest" printing codeJustin Clark-Casey (justincc)1-5/+5
2011-05-06on asset "show digest" command, print out the asset type name (e.g. texture) ↵Justin Clark-Casey (justincc)1-1/+1
as well as its number