aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-27Changed the CreateCommsManagerPlugin so it requests a IRegionCreator and ↵MW2-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.
2009-02-26svn attribute fixes so that we can play nice between windows and linuxSean Dague2-267/+267
2009-02-26Added IRegionCreator interface that all ApplicationPlugins that are creators ↵MW2-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.
2009-02-26Another change to how the CreateCommsManagerPlugin checks if it should be ↵MW1-1/+2
creating HG or normal CommunicationsManager.
2009-02-26Changed CreateCommsManagerPlugin so it handles external subclasses of ↵MW1-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.
2009-02-26Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. MW2-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.
2009-02-26Added IRegistryCore and RegistryCore to OpenSim.Framework.MW2-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).
2009-02-26Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW4-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.
2009-02-20From: Arthur Rodrigo S Valadares <arthursv@br.ibm.com>Dr Scofield1-1/+1
Re-fixing remote admin XmlRpc handler registration.
2009-02-20* Upped VersionInfo to 0.6.3 and in the process, changed assemblyinfo to ↵lbsa712-8/+8
0.6.3.* to better track down dll ref and overwrite problems.
2009-02-19* Changed all AssemblyInfo to explicit version 1.0.0.0 to not confuse poor ↵lbsa712-2/+2
poor Nant. We probably should take the opportunity to let the non-module bins reside in their /bin/Debug dirs later.
2009-02-17- remove the Metadata property from AssetBase and return all previousMike Mazur2-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
2009-02-13* refactor: move alert commands from Scene to DialogModuleJustin Clarke Casey1-9/+27
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames2-2/+1
warnings. Fix some m_log declarations.
2009-02-12* optimized usings.lbsa7121-153/+47
2009-02-10this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2-5/+5
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
2009-02-09From Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague1-1/+1
These changes replace all direct references to the AssetCache with IAssetCache. There is no change to functionality. Everything works as before. This is laying the groundwork for making it possible to register alternative asset caching mechanisms without disrupting other parts of OpenSim or their dependencies upon AssetCache functionality.
2009-02-09starting phase 2 of the OpenSim.Region.Environment commit: relocatingDr Scofield1-1/+1
OpenSim.Region.Environment.Modules.Agent en bloc to OpenSim.Region.CoreModules
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield9-14/+23
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!
2009-02-04- add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur2-54/+54
- trim trailing whitespace
2009-01-21* More friendly OpenJpeg error handling.Teravus Ovares1-1/+19
* Often times now the only reason OpenJpeg doesn't work is because it requires Glibc 2.4 The error messages reflect that. * In J2kDecoder module, It stops trying to decode modules if it encounters a dllnotfound exception and instead sends a full resolution layer that causes the texture sender to only send the full resolution image. (big decrease in texture download speed, but it's better then nasty repeating error messages)
2009-01-10Thank you kindly, StrawberryFride for a patch that:Charles Krinke1-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.
2008-12-19minor: Remove some serialization module scene wrappersJustin Clarke Casey2-2/+11
2008-12-19* refactor: Remove archiver module scene wrappersJustin Clarke Casey1-4/+13
2008-12-06Minor formatting cleanup.Jeff Ames1-7/+7
2008-12-05killing warnings, reformatting RemoteAdminPluginDr Scofield1-12/+17
2008-12-03Minor formatting cleanup.Jeff Ames1-7/+7
2008-12-03* Locked some RemoteAdmin methods due to racing condition bad behavior.Sean Dague1-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>
2008-12-01* minor: A few tiny bits of documentation and log message cleanup before ↵Justin Clarke Casey1-1/+0
starting something different
2008-12-01* Assume that asset data in a reset inventory post is not inlined by defaultJustin Clarke Casey1-3/+2
* This means that the xml of a get request can be used as the input with a few value tweaks, instead of having to explicitly put inline="false" in the output xml
2008-12-01* stop inventory item creation via REST falling over on any included assets ↵Justin Clarke Casey1-93/+93
that are not inline (UUID only) * make rest inventory item xml output use 'invtype' for inventory type rather than just 'type'. This makes it symmetrical with input xml
2008-12-01* minor: fix log message printed when unrecognized elements are found in ↵Justin Clarke Casey2-135/+119
inventory rest input xml
2008-11-28* refactor: rename UserServiceAdmin to UserAdminServiceJustin Clarke Casey1-3/+3
2008-11-28* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey1-3/+9
2008-11-23Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke1-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.
2008-11-14Add group permissions to agent inventory.Melanie Thielker1-0/+8
Contains a migration. May contain nuts. Please back up your inventory data store. This revision changes the interface version!! No older regions can connect to these new UGAIM, and the new regions can't connect to the old UGAIM. Fixes a long-standing issue of permissions loss Currently persisted on MySQL only.
2008-11-10minor: remove mono compiler warningsJustin Clarke Casey1-1/+2
2008-11-10this changeset adds an option to RemoteAdmin to limit the number ofDr Scofield1-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.
2008-11-09Refactoring: Moved component creation to "ComponentFactory" as dictated by ↵Tedd Hansen3-101/+148
convention
2008-11-08* "Fixed" a NRE with the new script engine Tedd committedAdam Frisby1-8/+14
* Tedd will need to fix properly.
2008-11-08Work in progress on SECS stuff. Have been holding it off until after 0.6 ↵Tedd Hansen13-632/+182
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.
2008-11-07adding region_port field to /admin/rest/regions/UUID/ to convey theDr Scofield1-0/+4
port of the region (used for region planning)
2008-11-01Update svn properties, minor formatting cleanup.Jeff Ames1-2/+2
2008-10-30From: Alan Webb (alan_webb@us.ibm.com)Dr Scofield2-12/+18
Cleanups in REST inventory and asset services.
2008-10-30From: Alan Webb (alan_webb@us.ibm.com)Dr Scofield1-8/+29
Adding support to set start region and lookat for an avatar via XmlRpc.
2008-10-23adding documentation for region_master_uuid to XML doc commentsDr Scofield1-0/+2
2008-10-23fix: allowing explicit setting of UUID for master avatar inDr Scofield1-7/+18
CreateRegion (and documenting it).
2008-10-23fix: recent patch to XmlRpcCreateRegionMethod introduced master avatarDr Scofield1-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.
2008-10-23Adding AddXmlRpcHandler(name, method, bool) to selectively disableDr Scofield1-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).
2008-10-21Update svn properties, minor formatting cleanup.Jeff Ames4-18/+18