aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/ConfigurationLoader.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Give ability to define constants that may be used throught the configurationBlueWall2014-10-091-0/+2
|
* Add Util method to load OpSys env varsDev Random2014-02-261-19/+5
|
* Convert tabs to spaces from previous commit 8c2b41b01Justin Clark-Casey (justincc)2014-01-281-27/+27
|
* Make inidirectory files supercede distro filesDev Random2014-01-271-27/+49
|
* Remove legacy sqlite lines added internally by OpenSimulator to the ↵Justin Clark-Casey (justincc)2013-10-281-3/+0
| | | | | | [Startup] section. These are long unused but confusingly will be seen in the [Startup] section on a "config save".
* Fix configuration/ini expansion issue. Thanks to smxy for testing.BlueWall2013-09-071-2/+2
|
* Initialization: move key expansion out to operate on all sources and not ↵BlueWall2013-08-291-2/+2
| | | | just environment variables
* Fixed incomplete commit r/23317 -- see_into_region. Put the guard around ↵Diva Canto2013-08-071-1/+0
| | | | estate bans also, and delete the obsolete config var.
* Make "config show/set/get/save" console commands available on all serversJustin Clark-Casey (justincc)2012-11-221-1/+0
|
* Make errors reported by OpenSim when it halts because it can't find certain ↵Justin Clark-Casey (justincc)2012-01-241-13/+6
| | | | config sections or files a bit more user friendly.
* Shell Environment Variables in configBlueWall2011-11-231-1/+19
| | | | | | Adding updated Nini and support to use shell environment variables in OpenSimulator configuration. Nini @ https://github.com/BlueWall/Nini-Dev
* move see_into_this_sim_from_neighbor [Startup] flag parsing into Scene with ↵Justin Clark-Casey (justincc)2011-10-151-3/+0
| | | | the others
* fetch physical_prim switch from [Startup] config from inside scene, as is ↵Justin Clark-Casey (justincc)2011-10-151-1/+0
| | | | done for most other scene config params
* Make default serverside_object_permissions = true since this better matches ↵Justin Clark-Casey (justincc)2011-07-011-1/+1
| | | | | | user expectations. It also matches the default setting in the OpenSim.ini.example file
* remove obsolete [StandAlone] config section parsing, none of which was ↵Justin Clark-Casey (justincc)2011-05-061-15/+1
| | | | actually used since being superseded by the connector architecture in 0.7
* minor: don't bother reparsing the sources for includes if ReadConfig() was ↵Justin Clark-Casey (justincc)2011-01-281-2/+3
| | | | unsuccessful
* If a non-globbed included file from config cannot be found then warn the userJustin Clark-Casey (justincc)2011-01-281-3/+13
|
* Revert "Move OpenSimDefaults,ini into config-include in order to put it with ↵Justin Clark-Casey (justincc)2010-09-141-1/+1
| | | | | | | | all the other default files" This reverts commit c3259e9c26f198b5fe0e7ed6c29c17c27c60ecb1. Reverted by agreement.
* Move OpenSimDefaults,ini into config-include in order to put it with all the ↵Justin Clark-Casey (justincc)2010-09-141-1/+1
| | | | other default files
* Add a missing parenthesisMelanie2010-09-131-1/+1
|
* Change the help message to point to copying OpenSimDefaults.ini.example.Melanie2010-09-131-1/+1
| | | | Provide a mostly empty OpenSim.ini.example
* Output an error and quit if the master file is missing. Also renameMelanie2010-09-131-4/+16
| | | | OpenSim.ini.example to bin/OpenSimDefaults.ini.example
* Make the inimaster option default to OpenSimDefaults.ini.Melanie2010-09-131-1/+1
|
* * Added ISimulationDataService and IEstateDataServiceJohn Hurliman2010-09-121-4/+0
| | | | | * Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings
* Configuration files can read include files from relative paths.Marck2010-08-131-1/+11
|
* Remove StandAlone from default hardcoded configMelanie Thielker2010-08-041-15/+0
|
* minor: eliminate configuration section handling deprecation of ↵Justin Clark-Casey (justincc)2010-04-231-6/+0
| | | | OpenSim.DataStore.MonoSqlite.dll, since this hasn't exist for a long, long time
* Fix LocalPresenceServiceConnector test now that the hardcoded test data has ↵Justin Clark-Casey (justincc)2010-03-051-12/+2
| | | | | | | | been removed from Data.Null.NullPresenceData Unfortunately, this meant publicly exposing the underlying service for the connector. The other solution would be to create alternative initializers for services and connectors where objects could be given directly rather than loaded indirectly through config. Unfortunately, this would require a lot of work in this case but might be the better way forward.
* move linden notecard parsing from LSL_Api.cs to SLUtil so that region ↵Justin Clark-Casey (justincc)2010-03-041-11/+8
| | | | modules can use it
* Cleaned up configuration. 'gridmode' and 'hypergrid' are gone, as well as ↵Diva Canto2010-01-311-14/+0
| | | | lots of other obsolete configs.
* switch default physics engine to ODE and default meshmerizer to Meshmerizer ↵Justin Clark-Casey (justincc)2009-09-161-2/+2
| | | | in code and in OpenSim.ini.example
* * minor: CommentsTeravus Ovares (Dan Olivares)2009-08-121-2/+43
|
* Remove debugging output frm ini file loading. Make it collect matchingMelanie2009-08-071-1/+0
| | | | files only from last path component.
* Silly error, simple fixMelanie2009-08-071-2/+2
|
* Try another way to canonicalize the path that may work in WindozeMelanie2009-08-071-1/+2
|
* Remove GetFullPath call from config includes, because it barfs in WindozeMelanie2009-08-071-2/+1
|
* Temporailiy add some info output in config loadMelanie2009-08-071-0/+1
|
* Allow arbitrary wildcards in config includes. Things likeMelanie2009-08-061-3/+4
| | | | | Include-Modules = "addin-modules/*/config/*.ini" will now work. Adds Util.Glob, which will resolve a globbed path into a string list.
* Small update to make the command line work againMelanie Thielker2009-05-211-0/+4
|
* Implement .ini file includes. Anything that begins with "Include-" will beMelanie Thielker2009-05-211-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
* Remove the old asset cache and local services and the configurations for themMelanie Thielker2009-05-181-15/+1
|
* * Moved the DefaultConfig settings into already-existing ConfigSettingslbsa712009-04-171-6/+6
|
* * Some more work on refactoring configs;lbsa712009-04-171-6/+6
| | | | | | | * Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
* * Make all coded defaults match settings in OpenSim.ini.exampleJustin Clarke Casey2009-03-111-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)
* update some ini defaults in code - all defaults from beginning of ↵Dahlia Trimble2009-03-111-1/+1
| | | | OpenSim.ini.example thru DefaultScriptEngine = "XEngine"
* * Cleanup and CCC (Code Convention Conformance)lbsa712009-03-101-13/+16
|
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-03-061-1/+1
|
* Changed it so only .ini file types are loaded from the (optional) config ↵MW2009-02-281-2/+5
| | | | directory rather all files types in that folder.
* Added support for reading ini files from a (optional) config folder. This ↵MW2009-02-271-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.
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-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.