aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/PluginLoader.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-4/+13
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-8/+9
|
* * Unregister Mono.Addins event handlers in PluginLoader.Dispose() and always ↵John Hurliman2009-10-231-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
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* - remove dependency on ExtensionLoader.dll (DBConnString.cs can go)Mike Mazur2009-02-161-1/+47
| | | | | | | - bring config system in line with other servers - add new plugin filter class which filters on ID - update AssetInventoryServer.ini file
* Slight cleanup of docs, removing trailing whitespace.Mike Mazur2009-01-281-6/+6
|
* * test: Add the ability to add a plugin directory to the user and inventory ↵Justin Clarke Casey2008-11-271-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
* Work in progress on SECS stuff. Have been holding it off until after 0.6 ↵Tedd Hansen2008-11-081-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.
* * Added IClientIM to IClientCore interfacesAdam Frisby2008-11-081-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.*
* * Apply a modified version of http://opensimulator.org/mantis/view.php?id=2290Justin Clarke Casey2008-10-171-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.
* Remove two warnings by assigning string provider = ""Charles Krinke2008-10-041-2/+2
| | | | | | and string type = "". Currently we are down to 14 warnings in the VS2005 C# build which is pretty good.
* Mantis #2133Melanie Thielker2008-09-061-1/+1
| | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-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.
* Formatting cleanup.Jeff Ames2008-08-181-49/+49
|
* * minor: correct spelling, remove warningJustin Clarke Casey2008-08-011-2/+2
|
* Thanks, Zaki, for a patch that addresses unhandled exceptions in theMike Mazur2008-08-011-4/+17
| | | | | | PluginLoader when servers are started in parallel.
* Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur2008-07-311-2/+22
| | | | | | PluginLoader. Fix issue 1871.
* * Applying Mantis #1852 - Plugin Provider refactoring. Courtesy of Ryan/Sempuki.Adam Frisby2008-07-301-17/+50
|
* Thanks, sempuki, for a patch that adds .addin.xml for MSSQL and SQLite users.Mike Mazur2008-07-231-0/+5
|
* Thanks, sempuki, for a patch that moves control of Mono.Addins from source ↵Mike Mazur2008-07-231-1/+3
| | | | attributes to external XML files. Fix issues 1682 and 1786.
* Thanks, sempuki, for a patch that moves all grid plugins to new PluginLoader ↵Mike Mazur2008-07-181-67/+103
| | | | (issue 1763).
* Mantis#1682. Revert temporarily, Sempuki's mono addins patchCharles Krinke2008-07-111-35/+24
| | | | | while he studies the issues in Windows a little bit.
* Mantis#1682. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-101-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
* Mantis#1647. Thank you very much, Sempuki for a patch that:Charles Krinke2008-07-041-61/+134
| | | | | Updates the previous module loader work.
* Mantis#1647. Thank you kindly, Sempuki for a patch that:Charles Krinke2008-07-021-5/+70
| | | | | | attached patch adds support to constrain the number of plugins that can be loaded per extension point.
* Update svn properties.Jeff Ames2008-06-301-114/+114
|
* * restore suppression of mono addins manager warningsJustin Clarke Casey2008-06-271-4/+3
|
* Mantis#1591. Thank you graciously, Sempuki for a patch that:Charles Krinke2008-06-271-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.