aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/CreateCommsManager/CreateCommsManagerPlugin.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove CreateCommsManagerPluginMelanie2010-01-111-144/+0
|
* Refactor. Instantiate sim status handlers in opensim base, not in a pluginMelanie2010-01-111-4/+0
|
* Refactor. Move MainServer init to a place with greener grassMelanie2010-01-111-1/+0
|
* dustDiva Canto2010-01-101-40/+2
|
* NetworkServersInfo removed from CommsManager.Diva Canto2010-01-101-18/+1
|
* All Framework.Communications.Clients and Framework.Communications.Services ↵Diva Canto2010-01-101-1/+0
| | | | deleted, including old LoginService.
* Moved GridInfo service from where it was to Handlers/GridDiva Canto2010-01-101-6/+0
|
* Inching ahead... This compiles, but very likely does not run.Diva Canto2010-01-081-8/+0
|
* Formatting cleanup.Jeff Ames2009-10-011-2/+2
|
* Deleted some files that aren't being used anymore.Diva Canto2009-09-281-1/+0
|
* Poof! on Region.Communications.Hypergrid. Grid code deleted.Diva Canto2009-09-261-9/+0
|
* Moved all HG1 operations to HGGridConnector.cs and ↵Diva Canto2009-09-261-1/+0
| | | | | | HypergridServerConnector.cs/HypergridServiceConnector.cs, away from Region.Communications and HGNetworkServersInfo. Fixed small bugs with hyperlinked regions' map positions.
* Removed IAssetCache.Diva Canto2009-08-101-2/+2
| | | | WARNING: PLEASE MAKE SURE TO USE THIS NEW bin/OpenSim.addin.xml
* This extra assignment to the singleton should not be needed but may help makeMelanie Thielker2009-07-101-0/+1
| | | | | | the tests pass
* Remove all references to HttpServer from CommsManager (all incarnations)Melanie Thielker2009-07-101-5/+5
| | | | | | Change all uses of the HttpServer properties to use the new singleton
* Formatting cleanup.Jeff Ames2009-06-101-2/+2
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* Remove the old asset cache and local services and the configurations for themMelanie Thielker2009-05-181-2/+2
|
* * If an item creator id contains an iar loaded name, create a temporary ↵Justin Clarke Casey2009-05-051-36/+4
| | | | profile and hashed UUID to represent the user
* Add copyright header. Formatting cleanup. Ignore some generated files.Jeff Ames2009-05-051-1/+1
|
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-0/+1
|
* * Initial infrastructure for ospa only uuid hashing of retrieved inventory itemsJustin Clarke Casey2009-05-041-6/+23
|
* Thanks BlueWall for Mantis #3578 - adding Hypergrid connection to JSON StatsDahlia Trimble2009-05-041-0/+2
|
* Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-05-021-0/+2
| | | | | | | | | Move json stats to non-published resource name Remove well-known resource name for json stats, creating dynamic uris with private keys and add a user configurable resource name for region owner usage.
* Getting rid of -hypergrid=true on the command line. This config now goes ↵diva2009-04-271-15/+1
| | | | inside OpenSim.ini in the Startup section. This makes the HG compatible with -background, and prepares the way for further work on HG-related config vars. Might help with mantis #3527.
* * Fix hypergrid standalone login by overriding AddNewUserAgent in HGUserServicesJustin Clarke Casey2009-04-221-4/+11
|
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey2009-04-221-27/+9
| | | | | | | | service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by passing up the ↵Justin Clarke Casey2009-04-221-7/+10
| | | | comms manager rather than null
* * Fix the other windows build break. Hopefully that shoudl be the last oneJustin Clarke Casey2009-04-221-0/+1
|
* * Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey2009-04-221-0/+4
| | | | | | | | | components * Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims
* Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-04-171-1/+4
| | | | | | | This patch adds extended status reporting with the url http://server:port/simstatusx/ [^] . The data is returned in json format as "text/plain" type.
* Adds session authentication upon NewUserConnections. Adds user key ↵diva2009-04-141-5/+5
| | | | authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
* Another bit of refactoring to try to make sense of ↵diva2009-03-291-1/+2
| | | | OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
* * De-duplicated login service some morelbsa712009-03-201-19/+0
| | | | | | * Normalized m_inventoryService * Pulled AddActiveGestures up
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-101-21/+21
|
* Added a output message to CreateCommsManagerPlugin for when a user tries to ↵MW2009-03-061-36/+46
| | | | run with both -hypergrid=true and -background=true command line arguments. As these two don't work together as they initialise different root OpenSim classes. I was going to change it back to the old behaviour where in that usecase it would just startup in the background but without hyerpgrid enabled. But think its better to give a error about this and then exit, so the user knows to change their settings. Rather than later wondering why hypergrid isn't working.
* Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2009-03-031-17/+16
| | | | | | | | There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.
* Refactoring of CreateCommsManagerPlugin.MW2009-03-031-32/+28
| | | | | Plus some general cleanup of a few other files (deleting excess blank lines etc)
* Added more error info to CreateCommsManagerPlugin.MW2009-03-021-0/+1
|
* Added some debug output to CreateCommsManagerPluginMW2009-03-021-1/+11
|
* Changed the CreateCommsManagerPlugin so it requests a IRegionCreator and ↵MW2009-02-271-4/+3
| | | | | | | subscribes to the OnNewRegionCreated event on that interface rather than requesting the LoadRegionsPlugin directly. Removed the reference to OpenSim.ApplicationPlugins.LoadRegions from the CreateCommsManagerPlugin project.
* svn attribute fixes so that we can play nice between windows and linuxSean Dague2009-02-261-256/+256
|
* Added IRegionCreator interface that all ApplicationPlugins that are creators ↵MW2009-02-261-0/+1
| | | | | | | of Scenes should implement and register with the ApplicationRegistry.StackModuleInterface<>(); So that other plugins can attach to their OnNewRegionCreated event. Made some changes to IRegistryCore and RegistryCore so they support "Stacked" interfaces.
* Another change to how the CreateCommsManagerPlugin checks if it should be ↵MW2009-02-261-1/+2
| | | | creating HG or normal CommunicationsManager.
* Changed CreateCommsManagerPlugin so it handles external subclasses of ↵MW2009-02-261-9/+10
| | | | | | | OpenSimBase. This process of checking if it should be creating HG or normal CommunicationsManager needs to change. So look out for a revert of this whole plugin soon.
* Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. MW2009-02-261-0/+253
Also in that plugin it registers the IUserService with all the Scenes (as they are created). So now we can start changing over all uses of IUserService, that currently access it from the CommunicationsManager to accessing it from the Scene.RequestModuleInterface call. Once that is done we can move the UserService creation out to its own plugin and remove all references to it from the CommunicationsManager. Then we can take the next CommunicationsManager interface and repeat.