aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* From: Alan Webb <alan_webb@us.ibm.com> & Dr Scofield <drscofield@xyzzyxyzzy.net>Dr Scofield2009-04-291-41/+191
| | | | | | | | | | | - Adds an admin_modify_region call to allow changing of parcel voice settings and changing of public/private status - add boolean "public" and boolean "enable_voice" to admin_create_region XmlRpc call to allow specifying of public/private status and to allow enabling voice for all parcels; also added config variables to allow setting of defaults for those - fixing cut-and-paste artefacts
* From: Alan M Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-271-1/+287
| | | | | | | | | | | Added support for access control lists. Scene: Added test to AddNewClient for an entry in the access list when connecting to a region with limited access. EstateSettings: Added an HasAccess(UUID) property to test for an entry in the estate's access list. RemoteAdmin: Add RPC calls for admin_acl_list, clear, add, and remove.
* Add copyright headers. Formatting cleanup.Jeff Ames2009-04-271-45/+45
|
* 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.
* Remove some debug messages I have forgotten to take out.Homer Horwitz2009-04-261-2/+0
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-04-242-2/+450
| | | | | This commit adds RestFileServices to the REST ApplicationPlugin service.
* * 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.
* * Run RemoteAdminPlugin user info queries through cache service rather than ↵Justin Clarke Casey2009-04-171-10/+18
| | | | direct
* Adds a new REST service /admin/regioninfo/ --- will return aDr Scofield2009-04-172-0/+144
| | | | | | | | | | | | | | | | comprehensive list of all regions in one go (in contrast to the /admin/regions/ REST call). Example: % curl http://127.0.0.1:9000/admin/regioninfo/ <regions max="10" number="1"> <region avatars="0" external_hostname="127.0.0.1" ip="0.0.0.0:9000" master_name="Mr X" master_uuid="b757d5f9-7b36-4dda-8388-6e03dd59b326" name="London" objects="6" uuid="49253666-a42e-4f44-9026-d23f93af31d7" x="1000" y="1000"/> </regions>
* Add a console command facility to the RemoteAdmin plugin.Melanie Thielker2009-04-151-0/+47
|
* 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.
* Add the RegionLoaded(Scene) API to the new region module interface to allowMelanie Thielker2009-04-141-0/+20
| | | | | | | region modules to use another region module's interfaces and events in a scene context
* Fix ordering of operations: First initialize everything, then add regionsHomer Horwitz2009-04-131-0/+6
|
* * Make it possible to store creator strings in user inventory items as well ↵Justin Clarke Casey2009-04-081-4/+4
| | | | | | | | | as UUIDs * All existing functionality should be unaffected. * Database schemas have not been changed.
* - Add new RegionModulesControllerPlugin to the application modulesHomer Horwitz2009-04-052-0/+205
| | | | | | | | - Change several classes to use the new plugin for handling of region-modules (NOTE: No regionmodule is using this yet) - Add necessary prebuild parts (don't forget to runprebuild) Attention: Work in progress. This shouldn't break anything, but you never know...
* * Upped trunk version number to 0.6.4 as we just tagged 0.6.4-releaselbsa712009-04-012-4/+4
|
* * Refactored out and de-duplicated Base64ToString(string)lbsa712009-03-311-7/+1
| | | | | * Fixed minor typo
* Update svn properties, add copyright header, formatting cleanup.Jeff Ames2009-03-311-1/+1
|
* 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.
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-03-276-49/+67
| | | | | | | | Fixed problem with REST services caused by changes to the OpenSim core code base - the comms manager had been 'modularized'. Also added additional debugging to RemoteAdmin interface.
* * De-duplicated login service some morelbsa712009-03-201-19/+0
| | | | | | * Normalized m_inventoryService * Pulled AddActiveGestures up
* * Group OpenSim.Framework.Servers interfaces togetherJustin Clarke Casey2009-03-192-1/+2
|
* merging XmlRpcCreateUserMethod and XmlRpcCreateUserMethodEmail, addingDr Scofield2009-03-121-117/+28
| | | | | | | optional about_virtual_world and about_real_world parameters to XmlRpcUpdateUserAccountMethod to allow setting of "About" and "First Life" tab in avatar profile.
* * Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey2009-03-111-1/+1
| | | | | | | * In most cases, the setting in OpenSim.ini.example is taken as the canonical one since this is the file virtually everyone ends up using * OpenSim will start up with a blank OpenSim.ini, in which case sqlite is the default database (as before)
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-102-37/+46
|
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-102-222/+272
|
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-101-21/+21
|
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-03-101-4/+4
| | | | | | | Fix a rather significant error in the UpdateUserAccountMethod. The request was failing to set user location and orientation correctly.
* 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-272-5/+4
| | | | | | | 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-262-267/+267
|
* Added IRegionCreator interface that all ApplicationPlugins that are creators ↵MW2009-02-262-3/+2
| | | | | | | 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-262-0/+264
| | | | | | 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.
* Added IRegistryCore and RegistryCore to OpenSim.Framework.MW2009-02-262-4/+22
| | | | | | | | Added a ApplicationRegistry to OpenSimBase. Changed LoadRegionsPlugin so it registers itself to that application registry. Added a event to LoadRegionsPlugin, that is triggered when it creates a new scene ,although maybe this event should actually be in opensimBase incase other plugins are creating regions (like the RemoteAdminPlugin).
* Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW2009-02-264-10/+29
| | | | | | | work in there knowing that all other ApplicationPlugins have been initialised by that time. Moved the loadRegions code in LoadRegionsPlugin to the PostInitialise method.
* From: Arthur Rodrigo S Valadares <arthursv@br.ibm.com>Dr Scofield2009-02-201-1/+1
| | | | | Re-fixing remote admin XmlRpc handler registration.
* * Upped VersionInfo to 0.6.3 and in the process, changed assemblyinfo to ↵lbsa712009-02-202-8/+8
| | | | 0.6.3.* to better track down dll ref and overwrite problems.
* * Changed all AssemblyInfo to explicit version 1.0.0.0 to not confuse poor ↵lbsa712009-02-192-2/+2
| | | | poor Nant. We probably should take the opportunity to let the non-module bins reside in their /bin/Debug dirs later.
* - remove the Metadata property from AssetBase and return all previousMike Mazur2009-02-172-40/+40
| | | | | | | | | properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit