aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/RemoteController (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-101-208/+250
|
* 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 IRegistryCore and RegistryCore to OpenSim.Framework.MW2009-02-261-2/+2
| | | | | | | | 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-261-0/+4
| | | | | | | 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.
* * refactor: move alert commands from Scene to DialogModuleJustin Clarke Casey2009-02-131-9/+27
|
* * optimized usings.lbsa712009-02-121-3/+3
|
* this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2009-02-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-2/+2
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* Thank you kindly, StrawberryFride for a patch that:Charles Krinke2009-01-101-40/+61
| | | | | | | | Enable users to enable only selected methods out of the available set of remote methods to restrict remote functionality to less harmful methods, such as admin_broadcast, or admin_region_query.
* * refactor: Remove archiver module scene wrappersJustin Clarke Casey2008-12-191-4/+13
|
* Minor formatting cleanup.Jeff Ames2008-12-061-7/+7
|
* killing warnings, reformatting RemoteAdminPluginDr Scofield2008-12-051-12/+17
|
* Minor formatting cleanup.Jeff Ames2008-12-031-7/+7
|
* * Locked some RemoteAdmin methods due to racing condition bad behavior.Sean Dague2008-12-031-392/+407
| | | | | | | | | | * Methods locked: CreateRegion, DeleteRegion, CreateUser, CreateUserMethodEmail, UpdateUserAccountMethod, LoadOARMethod, LoadXMLMethod * An example of bad behavior was multiple region creation where same UUID and grid location was possible, by running multiple XMLRPC threads. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* * refactor: rename UserServiceAdmin to UserAdminServiceJustin Clarke Casey2008-11-281-3/+3
|
* * refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2008-11-281-3/+9
|
* Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2008-11-231-3/+101
| | | | | | | | 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.
* this changeset adds an option to RemoteAdmin to limit the number ofDr Scofield2008-11-101-0/+7
| | | | | | | | | regions that XmlRpcCreateRegion will create: if region_limit is != 0 then XmlRpcCreateRegion will only create a new region if the number of regions already existing is below region_limit.
* Work in progress on SECS stuff. Have been holding it off until after 0.6 ↵Tedd Hansen2008-11-081-0/+1
| | | | release. Still messy as hell and doesn't really work yet. Will undergo dramatic changes. AND MOST IMPORTANTLY: Will be conformed to work in coop with todays DNE and XEngine, hopefully one day providing a common interface for all components.
* From: Alan Webb (alan_webb@us.ibm.com)Dr Scofield2008-10-301-8/+29
| | | | | | | | Adding support to set start region and lookat for an avatar via XmlRpc.
* adding documentation for region_master_uuid to XML doc commentsDr Scofield2008-10-231-0/+2
|
* fix: allowing explicit setting of UUID for master avatar inDr Scofield2008-10-231-7/+18
| | | | | | | CreateRegion (and documenting it).
* fix: recent patch to XmlRpcCreateRegionMethod introduced master avatarDr Scofield2008-10-231-5/+23
| | | | | | | | | | UUID parameter without checking for it at the method entry. this patch adds logic to obtain the master UUID via the user profile service, and, if the master avatar does not exist, will create the user. in any case the UUID is then the one supplied by the user profile service.
* Adding AddXmlRpcHandler(name, method, bool) to selectively disableDr Scofield2008-10-231-14/+14
| | | | | | | | | | | | | KeepAlive for certain XmlRpc handlers. Making use of new AddXmlRpcHandler method in RemoteAdminPlugin to avoid clients waiting indefinitely for response. taking note of BaseHttpServer parameter in CommunicationsManager constructor (was passed it but then just ignored so far).
* actually enabling SaveOAR XmlRpc ;-)Dr Scofield2008-10-201-4/+93
|
* Add the beginnings of a sim health check (through remote admin)Melanie Thielker2008-10-101-0/+56
|
* Small remote admin cleanups/additionsMelanie Thielker2008-10-091-0/+4
|
* adds admin_exists_user XmlRpc call.Dr Scofield2008-10-061-0/+74
|
* * Patch from JHurlimanTeravus Ovares2008-09-261-5/+5
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* adds support to delete a region completely and offers thatDr Scofield2008-09-181-4/+65
| | | | | | | | | | functionality via the console command "delete-region" and also via RemoteAdminPlugin. minor typo fix.
* * Patch http://opensimulator.org/mantis/view.php?id=2158Justin Clarke Casey2008-09-121-9/+90
| | | | | | | | * RemoteAdmin SaveXMLMethod * My tiny mind isn't quite sure how this is useful, but the load xml equivalent is already there, so what the hell :) * Thanks Olish.
* * some if inversions and added {}'s for readabilitylbsa712008-09-081-3/+9
|
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-12/+12
| | | | | | | * 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.
* fix: PostInitialise() not being called on script engines (nasty one that)Dr Scofield2008-09-021-4/+0
| | | | | | cleanup: warnings, readability
* adds XmlRcpLoadOAR support to RemoteAdminPlugin.csDr Scofield2008-08-281-0/+96
|
* bug fixes:Dr Scofield2008-08-221-1/+1
| | | | | | | | - GridInfoServices was not paying attention to location of ini file - typo in RemoteAdminPlugin
* - fixes a bug in RemoteAdminPlugin where CreateRegion would not payDr Scofield2008-08-221-12/+27
| | | | | | | | | attention to regionload_regionsdir from OpenSim.ini - fixes a type on RegionLoaderFileSystem
* - corrects statement about {asset,user,inventory} source configurationDr Scofield2008-08-211-3/+8
| | | | | | | | | | | | | as those all work with MySQL (and are in fact required it seems); adds examples as well - adds region_file_template functionality for the create_region XmlRpc call of RemoteAdminPlugin - cleans up and fixes typo in UserProfileData
* Formatting cleanup.Jeff Ames2008-08-181-7/+7
|
* Thanks, zaki, for a patch that embeds plugin manifest files into plugin ↵Mike Mazur2008-08-061-0/+11
| | | | dlls. Fix issue 1876.
* Thanks, sempuki, for a patch that moves control of Mono.Addins from source ↵Mike Mazur2008-07-231-5/+0
| | | | attributes to external XML files. Fix issues 1682 and 1786.
* adding support for Xml2 serialization format to XmlRpcLoadXMLMethod.Dr Scofield2008-07-141-1/+20
|
* Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke2008-07-111-0/+5
| | | | | while he studies the issues in Windows a little bit.
* Mantis#1541. Thank you kindly, Phrearch for a patch that:Charles Krinke2008-07-101-3/+3
| | | | | Solves Remote Admin create_region type Casting failure.
* Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-101-5/+0
| | | | | | Move control of Mono.Addins from source attributes to external XML files. This removes a lot of coupling of the source with Mono.Addins
* Renaming UserManagerBase.SetUserProfile(UserProfileData) to Dr Scofield2008-07-041-0/+106
| | | | | | | | | | | UserManager.UpdateUserProfile(UserProfileData). Adding UpdateUserProfile(UserProfileData) to IUserService interface. Adding RemoteAdminPlugin.XmlRpcUpdateUserAccountMethod(...) to provide a remote update capability.
* making XmlRpcs of RemoteController more robust; this fixes mantis #1467Dr Scofield2008-07-011-17/+23
|
* Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2008-06-271-2/+15
| | | | | | | | | | Currently module loading is done ad-hoc. I propose creating a simple loader class that leverages Mono.Addins (and perhaps the new .NET addins when they become available in mono). Attached is a basic patch for review that compiles into HEAD, but doesn't yet replace any existing ad-hoc loaders.
* small change to last commitMW2008-06-261-3/+3
|