aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Configuration (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Converted a large number of ASCII encodings to UTF8.Adam Frisby2008-03-211-1/+1
| | | | | | | * We should not be using ASCII anywhere except for legacy compatibility reasons. * A large number of UTF8 Encoders are being used in places where we should be using Util.StringToField instead. These have been tagged with // ENCODING FAULT * This should fix Mantis#799 - Japanese Profile Text does not work.
* Formatting cleanup.Jeff Ames2008-03-183-81/+78
|
* Minor cleanup.Jeff Ames2008-02-202-2/+2
|
* Converted logging to use log4net.Jeff Ames2008-02-051-1/+3
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Mother of all commits:Adam Frisby2008-01-153-4/+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.
* *Added ability to skip any use of the console when configuring and assume ↵mingchen2008-01-041-1/+1
| | | | default value. This is useful when the server is running by itself and a new region request is added without sufficient information
* * Optimized usingslbsa712007-12-271-1/+1
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2007-12-101-2/+2
| | | | notice of doom
* * Optimized usingslbsa712007-10-303-32/+30
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-293-5/+3
| | | | | | | 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.
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-152-0/+56
|
* Another attempt at fixing the disappearing estate_settings.xml file.Brian McBee2007-09-111-25/+24
|
* mass update of urls in source code to new websiteSean Dague2007-09-101-1/+1
|
* Attempt to fix bug on linux where estate_settings.xml gets wiped. Brian McBee2007-08-291-1/+4
|
* Changes to prepare for future possible configuration of separate logdir, ↵Brian McBee2007-08-031-0/+6
| | | | configdir, datadir.
* mass update of files to have native line endingsSean Dague2007-07-303-256/+256
|
* * Reduced a significant number of compiler warnings (back down to 9 for all ↵Adam Frisby2007-07-241-1/+1
| | | | projects combined, all 'never used' things)
* *Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that ↵mingchen2007-07-233-9/+141
| | | | | | | | fetches a file from a remote server *Right now, values are not saved back to the remote server, but that will be changed *Removed some warnings from invalid references that were not used anyways
* *Moved XmlConfiguration to its own projectmingchen2007-07-191-0/+124
*Made it possible to load a configuration interface by DLL *Deleted the 1024 config files until they are updated