aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AssetConfig.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-12-12Getting rid of a bunch of old classes, that are likely left over from the ↵Kunnis1-87/+0
ROBUST change. Signed-off-by: Melanie <melanie@t-data.com>
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-2/+2
2009-04-17* Some more work on refactoring configs;lbsa711-11/+8
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
2009-04-16* Since that was seemingly an false alarm, reverting the revert.lbsa711-1/+1
2009-04-16* bizarrely, two reports that that last commit broke script engine startup ↵lbsa711-1/+1
(!) on linux - reverting until we can investigate further.
2009-04-16* Started arduous config refactoring task with babystep introduction of ↵lbsa711-1/+1
common baseclass for backend configs.
2009-02-12* optimized usings.lbsa711-1/+2
2008-12-29* Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey1-1/+9
* 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-08-09* minor: Remove unused message from the asset server configurationJustin Clarke Casey1-8/+0
2008-04-29* Spring cleaning.Adam Frisby1-8/+5
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
2008-04-23add a database_connect field for the asset server configSean Dague1-1/+9
which will let you specify a connection string. Required for Nhibernate, optional for sqlite (there is a sane default), ignored for mysql and mssql until someone implements the Iniatialise(string) method.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-1/+0
(this took a while to run).
2008-04-02changing more references to OpenSim.DataSean Dague1-1/+1
2008-03-18Formatting cleanup.Jeff Ames1-28/+27
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2008-02-05Converted logging to use log4net.Jeff Ames1-0/+1
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-01-15* Mother of all commits:Adam Frisby1-2/+4
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2008-01-04*Added ability to skip any use of the console when configuring and assume ↵mingchen1-1/+1
default value. This is useful when the server is running by itself and a new region request is added without sufficient information
2007-10-31* Moved OpenSim/Framework/General to OpenSim/Framework for great justice.lbsa711-0/+0
2007-10-31set svn:eol-styleJeff Ames1-82/+82
2007-10-30* Optimized usingslbsa711-13/+13
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-83/+83
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-19get rid of all the ^M line endingsSean Dague1-83/+83
2007-10-15* Applied Chillken patch #419: consolidate_ports-r2096-3.patch - ↵lbsa711-2/+3
consolidated port number defaults. Thankx Chillken!
2007-10-15* Applied Chillken patch #418: copyright-r2094.patch updating copyright ↵lbsa711-0/+28
messages. Thanks Chillken!
2007-10-13Asset server implementation. Again one of these "plumbing" releases, where ↵Tleiades Hax1-70/+54
no real functionality has been introduced, but ground work has been made, enabling the asset server, and preparing the sim server to query the asset server. Introduced an "IPlugin" interface, which plugins can inherit from.
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-11/+0
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-0/+11
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-14Can now set the http ports that grid server and user server use. MW1-1/+9
2007-07-30mass update of files to have native line endingsSean Dague1-62/+62
2007-07-21Re-added the ability to set the database provider (dll) in the config file ↵MW1-1/+6
for the userserver and gridserver.
2007-07-19*Handler Functions can now refuse an object as invalid by returning false, ↵mingchen1-6/+8
thus forcing the user to re-enter the data *Added TYPE_STRING_NOT_EMPTY that requires some sort of text to be entered *Added another parameter to addConfigurationOption called use_default_no_prompt that will not ask via the console a configuration option; it will use whatever is in the config file. If nothing is in the config file for that option, it will force itself to use default
2007-07-18*New Configuration System, much easier and less buggy compared to the ↵mingchen1-0/+55
original system in place *View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)