aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Justin, I must have been dyslexic when I wrote UserGridService as the name ↵Diva Canto2010-03-051-16/+16
| | | | for it. GridUserService makes more sense; it's the user of the grid, "grid user". I changed it everywhere.
* add initial UserGrid service classes as per diva's directionJustin Clark-Casey (justincc)2010-03-051-0/+139
| | | | | this will initially store home location data instead of the presence service compiles but not enough to actually test yet
* Fix LocalPresenceServiceConnector test now that the hardcoded test data has ↵Justin Clark-Casey (justincc)2010-03-052-1/+18
| | | | | | | | been removed from Data.Null.NullPresenceData Unfortunately, this meant publicly exposing the underlying service for the connector. The other solution would be to create alternative initializers for services and connectors where objects could be given directly rather than loaded indirectly through config. Unfortunately, this would require a lot of work in this case but might be the better way forward.
* Merge branch 'master' into presence-refactorMelanie2010-02-221-1/+1
|\ | | | | | | This brings presence-refactor up to master again
| * minor: fix error inserting field in log messageJustin Clark-Casey (justincc)2010-02-171-1/+1
| |
| * Formatting cleanup.Jeff Ames2010-02-151-1/+1
| |
* | Small bug fixes for making tests work.Diva Canto2010-02-212-4/+4
| |
* | * Added SQlite connector for AvatarData. Tested -- works.Diva Canto2010-02-211-1/+1
| | | | | | | | | | * Small bug fix in debug message * Set default standalone configs to use SQLite across the board
* | Merge branch 'master' into presence-refactorMelanie2010-02-152-30/+43
|\ \ | |/
| * Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)2010-02-122-30/+43
| | | | | | | | | | | | | | This resolves the problem where eyes and hair would turn white on standalone configurations When a client receives body part information, for some insane reason or other it always ends up uploading this back to the server and then immediately re-requesting it. This should have been okay since we stored that asset in cache. However, the standalone asset service connector was not checking this cache properly, so every time the client made the request for the asset it has just loaded it would get a big fat null back in the face, causing it to make clothes and hair white. This bug did not affect grids since they use a different service connector.
| * endline fix 2Teravus Ovares (Dan Olivares)2010-02-061-6/+6
| |
| * Revert "Updates all IRegionModules to the new style region modules."Melanie2010-01-292-10/+10
| | | | | | | | This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
| * Updates all IRegionModules to the new style region modules.Revolution2010-01-232-10/+10
| | | | | | | | Signed-off-by: Melanie <melanie@t-data.com>
* | Bug fix for getting region flags.Diva Canto2010-02-011-0/+8
| |
* | Assorted bug fixes related to hyperlinkingDiva Canto2010-01-311-1/+10
| |
* | Bug fix: change HGBroker to a INonSharedRegionModuleDiva Canto2010-01-302-69/+77
| |
* | * HGScene is no more.Diva Canto2010-01-301-1/+0
| | | | | | | | * Moved a few key inventory access methods from Scene.Inventory to an IInventoryAccessModule module
* | On the way to making HG inventory work. Inventory can now be accessed again. ↵Diva Canto2010-01-291-110/+66
| | | | | | | | Assets are still broken.
* | * HGGridConnector is no longer necessary.Diva Canto2010-01-291-257/+0
| | | | | | | | * Handle logout properly. This needed an addition to IClientAPI, because of how the logout packet is currently being handled -- the agent is being removed from the scene before the different event handlers are executed, which is broken.
* | Removed obsolete interface IHyperlink.Diva Canto2010-01-241-5/+0
| |
* | Some method implementations were missing from LocalGridServiceConnector.Diva Canto2010-01-241-15/+15
| |
* | Integrated the hyperlinking with the GridService.Diva Canto2010-01-241-62/+12
| |
* | HG agent transfers are starting to work. Gatekeeper handlers are missing.Diva Canto2010-01-171-1/+26
| |
* | Hyperlinking minimally tested and working.Diva Canto2010-01-171-1/+0
| |
* | Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto2010-01-162-910/+43
| | | | | | | | yet.
* | Merge branch 'presence-refactor' of ↵Diva Canto2010-01-153-10/+10
|\ \ | | | | | | | | | ssh://diva@opensimulator.org/var/git/opensim into presence-refactor
| * \ Merge branch 'master' into presence-refactorMelanie2010-01-163-10/+10
| |\ \ | | |/ | | | | | | | | | This merge was very conflicted. I think I got them all, but I can't be sure. I had to merge to master or risk divergence to the point of unmergeability.
| | * Change the error messages on region region registration. This changes URMMelanie2010-01-133-8/+10
| | | | | | | | | | | | | | | and region. The non-error case should be compatible, so no version bump. Untested.
| | * Remove "login disable", "login enable" and "login status" commands.Melanie2010-01-101-2/+0
| | |
* | | CommentDiva Canto2010-01-151-0/+1
| | |
* | | Renamed IAgentTransferModule to IEntityTransferModule -- accounts for ↵Diva Canto2010-01-151-3/+3
|/ / | | | | | | objects too.
* | * General cleanup of Teleports, Crossings and Child agents. They are now in ↵Diva Canto2010-01-152-3/+18
| | | | | | | | | | | | | | the new AgentTransferModule, in line with what MW started implementing back in May -- ITeleportModule. This has been renamed IAgentTransferModule, to be more generic. * HGSceneCommunicationService has been deleted * SceneCommunicationService will likely be deleted soon too
* | Added a UserAccountCache to the UserAccountServiceConnectors. Uses a ↵Diva Canto2010-01-143-3/+143
| | | | | | | | CenomeCache.
* | Bug fix in releasing agent. In Scene, always use SimulatonService, and not ↵Diva Canto2010-01-131-2/+2
| | | | | | | | m_SimulationService, because it may be null...
* | Several more buglets removed.Diva Canto2010-01-131-1/+1
| |
* | Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto2010-01-122-13/+5
| | | | | | | | Appearance is now being passed with AgentCircuitData, as it should be.
* | Fixed a couple of bugs with Appearance. Appearance is all good now.Diva Canto2010-01-111-5/+5
| |
* | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto2010-01-114-4/+4
| |
* | CommunicationsManager deleted.Diva Canto2010-01-111-3/+0
| |
* | NetworkServersInfo removed from CommsManager.Diva Canto2010-01-102-15/+16
| |
* | All Framework.Communications.Clients and Framework.Communications.Services ↵Diva Canto2010-01-103-1211/+0
| | | | | | | | deleted, including old LoginService.
* | * Starting to clean the house...Diva Canto2010-01-101-20/+21
| | | | | | | | * Fixed circular dependency
* | * Changed IPresenceService Logout, so that it takes a position and a lookatDiva Canto2010-01-105-13/+30
| | | | | | | | * CommsManager.AvatarService rerouted
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-105-159/+160
| | | | | | | | | | * HG is seriously broken here * Compiles. Untested.
* | * Added SetPassword to IAuthenticationService.Diva Canto2010-01-091-0/+5
| | | | | | | | | | * Added create user command to UserAccountService. Works. * Deleted create user command from OpenSim.
* | Preliminary work on the new default region setting mechanismMelanie2010-01-092-0/+30
| |
* | Inching ahead... This compiles, but very likely does not run.Diva Canto2010-01-083-3/+0
| |
* | * Finished SimulationServiceConnectorDiva Canto2010-01-074-18/+20
| | | | | | | | | | * Started rerouting calls to UserService. * Compiles. May run.
* | Successfully logged into a grid.Diva Canto2010-01-031-10/+14
| |
* | * Changed ISimulation interface to take a GridRegion as input arg instead of ↵Diva Canto2010-01-032-44/+441
| | | | | | | | | | | | | | a regionHandle. * Added the RemoteSimulationConnectorModule, which is the replacement for RESTComms. Scenes is not using this yet, only (standalone) Login uses these region modules for now. * Completed SimulationServiceConnector and corresponding handlers.