aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ConfigSettings.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-1/+0
2011-10-15move see_into_this_sim_from_neighbor [Startup] flag parsing into Scene with ↵Justin Clark-Casey (justincc)1-5/+0
the others
2011-10-15fetch physical_prim switch from [Startup] config from inside scene, as is ↵Justin Clark-Casey (justincc)1-5/+2
done for most other scene config params
2011-10-15Restore [Startup] physical_prim flag which can stop any prims being subject ↵Justin Clark-Casey (justincc)1-0/+6
to physics This had stopped working. However, at the moment it still allows the physics flag to be set even though this has no effect. This needs to be fixed. Default for this flag is true as previously.
2011-10-12Get rid of some traces of the old pre-ROBUST grid architecture configJustin Clark-Casey (justincc)1-7/+0
2011-05-06refactor: simplify ConfigSettingsJustin Clark-Casey (justincc)1-59/+7
2011-05-06remove obsolete [StandAlone] config section parsing, none of which was ↵Justin Clark-Casey (justincc)1-49/+1
actually used since being superseded by the connector architecture in 0.7
2010-09-12* Added ISimulationDataService and IEstateDataServiceJohn Hurliman1-16/+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
2010-01-31Cleaned up configuration. 'gridmode' and 'hypergrid' are gone, as well as ↵Diva Canto1-9/+0
lots of other obsolete configs.
2009-12-15Change default grid and inventory service ports in ConfigSettings to the ↵Justin Clark-Casey (justincc)1-2/+2
ROBUST default of 8003
2009-10-07Revert "Merging in diva's locking fixes"Melanie1-2/+2
This reverts commit 832cc685138b2244529f10b54b373c34adb4a633.
2009-10-06* Change some more default ports to the robust default of 8003Justin Clark-Casey (justincc)1-2/+2
* Make these use existing constants rather than hardcoding * These will probably go away soon anyway once all services are under ROBUST
2009-05-18Remove the old asset cache and local services and the configurations for themMelanie Thielker1-52/+0
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-0/+10
2009-02-16From: Alan Webb <awebb@linux.vnet.ibm.com>Sean Dague1-0/+8
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.
2008-12-29* Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey1-0/+25
* 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-11-08* Added IClientIM to IClientCore interfacesAdam Frisby1-4/+0
* 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-11-08Remove empty OSUUID.cs file. Add copyright headers. Minor formatting cleanup.Jeff Ames1-1/+28
2008-11-06Update svn properties.Jeff Ames1-160/+160
2008-11-05moved the initial loading/setting of the config settings to its own class, ↵MW1-0/+8
ConfigurationLoader. To make it easier to customise the loading of those settings and possible in the future move it to a plugin.
2008-11-05Moved a couple of more configuration fields to ConfigSettingsMW1-0/+16
2008-11-05more startup/initialisation refactoringMW1-4/+4
2008-11-05Moved most of the configuration fields from Opensimbase to their own ↵MW1-0/+136
Class... Framework/ConfigSettings.