aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-11-30Mantis #2584 (again)Melanie Thielker1-0/+1
Next step of diva's TP fixes and HG support
2008-11-28* refactor: rename UserServiceAdmin to UserAdminServiceJustin Clarke Casey2-4/+3
2008-11-28* minor: Eliminate unused paramter in LocalUserServices constructorsJustin Clarke Casey1-6/+2
2008-11-28* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2-27/+7
2008-11-27* minor: rename m_parent to m_commsManager to make it a little clearer what ↵Justin Clarke Casey1-18/+18
it actually is
2008-11-27* Remove unused and largely unimplemented UpdateUserCurrentRegion()Justin Clarke Casey2-58/+0
* please say if this causes you a problem
2008-11-25Add copyright headers. Minor formatting cleanup.Jeff Ames1-1/+1
2008-11-25Update svn properties.Jeff Ames7-3366/+3366
2008-11-25* minor: eliminate mono compiler warningsJustin Clarke Casey3-8/+8
2008-11-25* Apply http://opensimulator.org/mantis/view.php?id=2640Justin Clarke Casey7-0/+3366
* This is Diva's hypergrid patch, as perviously discussed on the opensim-dev mailing list * Applied some minor prebuild.xml jiggling to resolve a dependency issue * Thanks Diva!
2008-11-24WIP: Adding a few things to PresenceModule. Not quite finished yet.Homer Horwitz1-1/+9
2008-11-23Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2-2/+2
This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
2008-11-14* test: Add scene root agent test stub, since I'll be picking up with ↵Justin Clarke Casey2-5/+10
something else the next time I start coding on OpenSim
2008-11-12* Stop the pointless passing of a scene's own region handler back to it in ↵Justin Clarke Casey1-17/+32
region comms * Some scene methods ignored it, others did nothing if the region handler given did not match their own (which would never be triggered)
2008-11-11* Implement basic region filtering as described in ↵Justin Clarke Casey1-0/+1
https://lists.berlios.de/pipermail/opensim-dev/2008-November/003468.html * This is done by sending a 'major interface version' number on sim registration. Developers must increment this every time they make a change that would make the previous OpenSim revision failure incompatible with the new one (non-fatal incompatibilities are fine). * This number resides in OpenSim.Framework.Servers.VersionInfo.MajorInterfaceVersion * This allows the grid service to stop older, incompatible regions from connecting
2008-11-08Mantis#2590. Thank you kindly, Diva for a patch that solves:Charles Krinke1-1/+10
When the given address to CheckRegion is wrong, it crashes the whole server. Patch included.
2008-11-07Attachments, attachments, and, did I say attachments?Melanie Thielker1-0/+3
Too many fixes to list.
2008-11-04* Improve the previous fix by pushing the exception catching down into OGS1 ↵Justin Clarke Casey1-8/+8
grid services
2008-11-04Update svn properties, minor formatting cleanup.Jeff Ames1-2/+2
2008-11-03Add a bit more error-checking to GetFriendRegionInfos.Homer Horwitz1-13/+24
2008-11-03Thanks diva for a patch that removes an unnecessary dependency on ↵Dahlia Trimble1-2/+2
CommunicationsOGS1 from OGS1UserServices
2008-11-02Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz5-8/+164
on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
2008-10-05Small optimization: Don't ask gridserver about regions on the local instance.Homer Horwitz1-0/+7
2008-10-03Add the missing bits for the new region-search:Homer Horwitz2-43/+91
- Added lookup in the data-layer - MySQL works - SQLite doesn't have a grid-db, so it won't work there - I added MSSQL-code to the best of my knowledge; but I don't know MSSQL :-) - Added the plumbing up to OGS1GridServices. This speaks with the grid-server via XMLRPC. - Modified MapSearchModule to use the new data. It's backward compatible; if used with an old grid-server, it just returns one found region instead of a list. - Refactored a bit. Note: This updates data, grid-server and region code. No new files.
2008-10-01* Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares1-1/+22
standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
2008-09-26* Patch from JHurlimanTeravus Ovares1-3/+3
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-0/+30
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-22* Remove some old libsecondlife workarounds as suggested by jhurliman in ↵Justin Clarke Casey1-5/+4
http://opensimulator.org/mantis/view.php?id=2236
2008-09-21* Fix http://opensimulator.org/mantis/view.php?id=2189Justin Clarke Casey1-5/+25
* Allow a grid mode region simulator to properly shutdown even if the grid service is offline
2008-09-20* Tidy up OGS1GridServicesJustin Clarke Casey1-101/+39
* Remove what should be unnecessary RemoteException catches when executing local backend calls
2008-09-19* Enables logins to regions on a grid once they have finished starting up ↵Justin Clarke Casey1-29/+46
(this does not include script startup).
2008-09-19* Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey5-34/+68
startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon
2008-09-15* refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey1-28/+23
UpdateUserProfile * the methods were identical except that the Properties one did a check for the user profile beforehand. However, every caller was doing this already anyway.
2008-09-15* refactor: Break out IUserServiceAdmin out of IUserService since admin ↵Justin Clarke Casey1-0/+2
methods don't need to be implemented on Grid hosted region servers
2008-09-15* Add "reset user password" command to standalone region consoleJustin Clarke Casey1-0/+5
* Grid user server implementation to follow shortly
2008-09-14* Converted a number of methods within the login processes from private to ↵Adam Frisby1-8/+8
protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey2-138/+154
* This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
2008-09-09Update svn properties, formatting cleanup.Jeff Ames2-6/+6
2008-09-07Mantis #2142Melanie Thielker1-30/+33
Thank you, HomerHorwitz, for a patch that fixes landmark teleport and about landmarks with the new OMV types.
2008-09-07* Improve login failure handling.Justin Clarke Casey2-2/+5
* Now it should properly inform the user and stop a login if a region server could not be contacted in order to expect a user (the last commit didn't actually quite work correctly)
2008-09-07* minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey1-12/+10
process easier * documentation
2008-09-06* This changes gridcomms types back to our home grown wholy controlled types. Teravus Ovares3-17/+17
* These are different types then the OMV types because changing them causes just about all grid comms to break. If these were the libOMV types, then libOMV couldn't change them ever again after that.. or we'd have a breakage whenever they changed them. * This might introduce a map issue. Still checking it out.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares9-145/+145
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-28Mantis #1903Melanie Thielker1-0/+1
Thank you, cmickeyb, for a patch that fixes inventory folder retrieval.
2008-08-28Update svn properties, formatting cleanup.Jeff Ames1-7/+7
2008-08-26* Fixed a bug that occurred if your home region wasn't logged in, in ↵Teravus Ovares1-12/+30
standalone. It wouldn't let you in even if your destination region is online with a 'region x not found' message. * The purpose of the check was to ensure that your home region was sent to your client properly when you connected. However, the desired result is that if the home region is down, but the destination region is online, the user should still get in. * Changes: if the home region isn't available, set the message to the client so that the home region is the destination region.
2008-08-25* minor: some logging conformance, code documentingJustin Clarke Casey1-5/+21
2008-08-25* Deal with a WebException thrown if a grid server cannot be contacted for ↵Justin Clarke Casey1-6/+23
region information
2008-08-25* This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2-1/+4
currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)