aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/PluginLoader.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-09-02seems to compile ( tests comented out)UbitUmarov1-10/+1
2015-01-07Commented out clear_registry_ because (1) it isn't clearing up anything ↵Diva Canto1-1/+1
anymore -- mono addins moved to suffix -002 at least since BlueWall updated it; (2) we shouldn't clear the registry, period. People who run many sims from the same bin folder need to configure each sim to use its own RegistryLocation, just like they configure them to use their own port.
2014-12-31Commenting out the suppression of console warnings from Mono addins while we ↵Diva Canto1-2/+2
test this new model for the next couple of weeks.
2014-03-22Allow Mono Plugin Registry setting for RegionsDev Random1-6/+7
Signed-off-by: Melanie <melanie@t-data.com>
2010-09-24When clearing the addin registry, respect a custom pathMelanie1-4/+13
2009-10-23* Unregister Mono.Addins event handlers in PluginLoader.Dispose() and always ↵John Hurliman1-2/+7
handle PluginLoader with the using pattern. This freed up 121,634,796 bytes on my system * Avoid allocating an Action<IClientAPI> object every round of the OutgoingPacketHandler * Removed unnecessary semi-colon endings from OpenSim.ini.example [InterestManagement] section
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-02-16- remove dependency on ExtensionLoader.dll (DBConnString.cs can go)Mike Mazur1-1/+47
- bring config system in line with other servers - add new plugin filter class which filters on ID - update AssetInventoryServer.ini file
2009-01-28Slight cleanup of docs, removing trailing whitespace.Mike Mazur1-6/+6
2008-11-27* test: Add the ability to add a plugin directory to the user and inventory ↵Justin Clarke Casey1-51/+52
services in order to extend unit tests for user and inventory information * I can't spend any longer in trying to get Mono.Addins to work with the unit tests, so this is not a proper plugin at this time
2008-11-08Work in progress on SECS stuff. Have been holding it off until after 0.6 ↵Tedd Hansen1-2/+10
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-08* Added IClientIM to IClientCore interfacesAdam Frisby1-3/+1
* Changed SendInstantMessage, dropped fromAgentSession and imSessionID as security precaution, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide for details on porting. * Removed unused usings from Framework.*
2008-10-17* Apply a modified version of http://opensimulator.org/mantis/view.php?id=2290Justin Clarke Casey1-6/+31
* This allows multiple user profile providers to be specified in OpenSim.ini separated by commas * If multiple providers are specified then a request for a user profile will query each in turn until the profile is either found or all have been queried * Unfortunately I don't believe this order can currently be specified, which if true is something that will need to be fixed. * Thanks to smeans for the original patch.
2008-10-04Remove two warnings by assigning string provider = ""Charles Krinke1-2/+2
and string type = "". Currently we are down to 14 warnings in the VS2005 C# build which is pretty good.
2008-09-06Mantis #2133Melanie Thielker1-1/+1
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-1/+1
* 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.
2008-08-18Formatting cleanup.Jeff Ames1-49/+49
2008-08-01* minor: correct spelling, remove warningJustin Clarke Casey1-2/+2
2008-08-01Thanks, Zaki, for a patch that addresses unhandled exceptions in theMike Mazur1-4/+17
PluginLoader when servers are started in parallel.
2008-07-31Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur1-2/+22
PluginLoader. Fix issue 1871.
2008-07-30* Applying Mantis #1852 - Plugin Provider refactoring. Courtesy of Ryan/Sempuki.Adam Frisby1-17/+50
2008-07-23Thanks, sempuki, for a patch that adds .addin.xml for MSSQL and SQLite users.Mike Mazur1-0/+5
2008-07-23Thanks, sempuki, for a patch that moves control of Mono.Addins from source ↵Mike Mazur1-1/+3
attributes to external XML files. Fix issues 1682 and 1786.
2008-07-18Thanks, sempuki, for a patch that moves all grid plugins to new PluginLoader ↵Mike Mazur1-67/+103
(issue 1763).
2008-07-11Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke1-35/+24
while he studies the issues in Windows a little bit.
2008-07-10Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke1-24/+35
Move control of Mono.Addins from source attributes to external XML files. This removes a lot of coupling of the source with Mono.Addins
2008-07-04Mantis#1647. Thank you very much, Sempuki for a patch that:Charles Krinke1-61/+134
Updates the previous module loader work.
2008-07-02Mantis#1647. Thank you kindly, Sempuki for a patch that:Charles Krinke1-5/+70
attached patch adds support to constrain the number of plugins that can be loaded per extension point.
2008-06-30Update svn properties.Jeff Ames1-114/+114
2008-06-27* restore suppression of mono addins manager warningsJustin Clarke Casey1-4/+3
2008-06-27Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke1-0/+115
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.