aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/ConfigurationLoader.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-21Small update to make the command line work againMelanie Thielker1-0/+4
2009-05-21Implement .ini file includes. Anything that begins with "Include-" will beMelanie Thielker1-77/+131
treated as another ini source to load. For example: Include-Asset = AssetSetup.ini will load AssetSetup.ini after all other ini files are done. This works recursively, too
2009-05-18Remove the old asset cache and local services and the configurations for themMelanie Thielker1-15/+1
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-6/+6
2009-04-17* Some more work on refactoring configs;lbsa711-6/+6
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
2009-03-11* Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey1-7/+12
* 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)
2009-03-11update some ini defaults in code - all defaults from beginning of ↵Dahlia Trimble1-1/+1
OpenSim.ini.example thru DefaultScriptEngine = "XEngine"
2009-03-10* Cleanup and CCC (Code Convention Conformance)lbsa711-13/+16
2009-03-06* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-02-28Changed it so only .ini file types are loaded from the (optional) config ↵MW1-2/+5
directory rather all files types in that folder.
2009-02-27Added support for reading ini files from a (optional) config folder. This ↵MW1-1/+14
allows the spliting up of opensim.ini into multiple ini files. The ini files in this folder are loaded after the masterini file (if that is set) and before opensim.ini. The default folder it looks for and searches is "bin\config", but that can be set by using the command arg "-inidirectory=<path>" (path is local to bin\) when starting up opensim.exe.
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-1/+1
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-17* Apply http://opensimulator.org/mantis/view.php?id=3068Justin Clarke Casey1-64/+68
* This enables parsing of xml files and files obtained via http for the -inimaster option as well as -inifile * Thanks StrawberryFride!
2009-02-16From: Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague1-0/+1
The change makes two principal implementation changes: [1] It removes the hard coded set of possible asset server client implementations, allowing any arbitrary implementation that has been identified to the PluginLoader as an appropriate extension. The extension point for asset server client extension is /OpenSim/AssetServerClient. All of the old configuration rules have been preserved, and any of the legacy configuration values will still work as they did before, except the implementation is now loaded as a plug-in, rather than as a hard-coded instantiation of a specific class. The re-hashing of IAssetServer as an extension of IPlugin made upgrading of the implementation classes a necessity. Caveat: I have not been able to meaningfully test the crypto-grid clients. I believe they should work correctly, but the refactoring necessary to handle plug-in based initialization (vs constructor-based initialisation) admits the possibility of a problem. [2] The asset cache implementation, previously introduce as a hard-code class instantiation is now implemented as an IPlugin. Once again the previous (configurationless) behavior has been preserved. But now it is possible for those interested in experimenting with cache technologies to do so simply by introducing a new extension for the asset cache extension point (/OpenSim/AssetCache). I've tested all of the configuration settings, after applying the patch to a newly extracted tree, and they seem to work OK.
2009-02-12* optimized usings.lbsa711-9/+4
2009-02-04* Introduce a new "default" option for asset_database in the [STORAGE] sectionJustin Clarke Casey1-1/+1
* This option makes OpenSim use the usual db based asset service in standalone, and the grid based one in grid mode * The other options can (local, grid, etc) can still be used explicitly as before * Also change OpenSim.ini.example and the surrounding explanative text
2009-01-02Fixes Mantis #2945Melanie Thielker1-13/+57
Committing the above patch with changes. Thank you, Gerhard. Removed unneccessary verbosity in case of no error, added more output for errors. Added support for HTTP Uri fetching which I had added in my last commit. Converted the Console.WriteLines to log4net.
2009-01-02Add the ability to read the ini file from a URI. If the -inifile optionMelanie Thielker1-6/+33
is a http:// URI, it will be fetched and parsed as an XML config.
2008-12-29* Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey1-5/+8
* This allows configuration of the assetset and library control file paths to be other than ./inventory/Libraries.xml and ./assets/AssetSets.xml * This is controlled via the LibrariesXMLFile and AssetSetsXMLFile configuration settings in [StandAlone] in OpenSim.ini (in standalone) and via the user and asset config xml files for grid mode * Thanks to SirKimba for the patch
2008-12-20* Add two more missing defaults that use GetBoolean without a default in ↵Teravus Ovares1-2/+2
standalone. (not sure if this will fix your issue daTwitch.. it's probably not even a bug)
2008-12-20* Adds defaults for some GetBoolean config values that previously did not ↵Teravus Ovares1-3/+3
have them.
2008-12-12apparently opensim only works if secure_inventory_server = true, whoSean Dague1-1/+1
knew? Reverting that.
2008-12-11make a couple of other config default to make the example ini to give usSean Dague1-2/+6
a better chance of working out of the box
2008-12-11after much discussion, and overwhelming +1 on the -dev list, switch theSean Dague1-1/+1
default script engine to XEngine. This won't change anything if you already specified the default in your OpenSim.ini.
2008-11-08Remove empty OSUUID.cs file. Add copyright headers. Minor formatting cleanup.Jeff Ames1-1/+28
2008-11-06Update svn properties.Jeff Ames1-196/+196
2008-11-05moved the initial loading/setting of the config settings to its own class, ↵MW1-0/+196
ConfigurationLoader. To make it easier to customise the loading of those settings and possible in the future move it to a plugin.