aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/GridConfig.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-18Formatting cleanup.Jeff Ames1-27/+26
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-10/+12
* 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-12-27* Optimized usingslbsa711-2/+3
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-20* Added a configuration parameter on the Grid Server to disallow forceful ↵Teravus Ovares1-0/+9
banlists. * Added a way for Grid based configuration parameters to (generally used in overriding functionality) to get to the regions on Registration.
2007-10-31* Moved OpenSim/Framework/General to OpenSim/Framework for great justice.lbsa711-0/+0
2007-10-31set svn:eol-styleJeff Ames1-135/+135
2007-10-30* Optimized usingslbsa711-29/+44
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-121/+121
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-15* Applied Chillken patch #419: consolidate_ports-r2096-3.patch - ↵lbsa711-5/+5
consolidated port number defaults. Thankx Chillken!
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-0/+28
2007-09-14Can now set the http ports that grid server and user server use. MW1-0/+8
2007-07-30mass update of files to have native line endingsSean Dague1-85/+85
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-10/+12
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/+78
original system in place *View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)