aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Configuration (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel5-389/+0
2012-11-14A few more AssemblyInfos in a few more dlls.Diva Canto2-0/+66
2012-09-30Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto1-1/+0
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow." But the patch is here, in case anyone wants to try it. This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef.
2012-09-30Added request.Proxy=null everywhere, as discussed in ↵Diva Canto1-0/+1
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow. Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html
2010-08-04Revert "remove long unused OpenSim/Framework/Configuration/* projects"Melanie3-0/+323
This reverts commit cdd3f17b2bee58def470635cfc06e26b0d0145b2.
2010-07-30remove long unused OpenSim/Framework/Configuration/* projectsJustin Clark-Casey (justincc)3-323/+0
2009-10-02* Creates Util.UTF8 and switches some references of Encoding.UTF8 to ↵John Hurliman1-1/+1
Util.UTF8 (not all references were switched since not all OpenSim libraries reference OpenSim.Framework) * Shrinks the largest in-memory object, the LLRAW.HeightmapLookupValue struct (only used for exporting to LLRAW terrain files), to the minimum possible size. This seems to have the odd side effect of cutting the size of the two double[256,256] terrain objects in half. Possibly an alignment optimization?
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames3-3/+3
LICENSE.txt.
2008-10-03Check for empty string as well, just as illegal.Melanie Thielker1-1/+1
2008-10-03Prevent an exception when the directory given for XML save is read onlyMelanie Thielker1-0/+3
and region config is loaded from the web
2008-09-06Mantis #2133Melanie Thielker2-2/+2
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2-2/+2
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-18Formatting cleanup.Jeff Ames1-2/+2
2008-08-09* Change _Config.xml node selection code to allow commentsJustin Clarke Casey1-5/+5
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2-2/+3
with namespaces.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby2-4/+8
(this took a while to run).
2008-03-21* Converted a large number of ASCII encodings to UTF8.Adam Frisby1-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.
2008-03-18Formatting cleanup.Jeff Ames3-81/+78
2008-02-20Minor cleanup.Jeff Ames2-2/+2
2008-02-05Converted logging to use log4net.Jeff Ames1-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.
2008-01-15* Mother of all commits:Adam Frisby3-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.
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-1/+1
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-2/+2
notice of doom
2007-10-30* Optimized usingslbsa713-32/+30
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW3-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.
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712-0/+56
2007-09-11Another attempt at fixing the disappearing estate_settings.xml file.Brian McBee1-25/+24
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-08-29Attempt to fix bug on linux where estate_settings.xml gets wiped. Brian McBee1-1/+4
2007-08-03Changes to prepare for future possible configuration of separate logdir, ↵Brian McBee1-0/+6
configdir, datadir.
2007-07-30mass update of files to have native line endingsSean Dague3-256/+256
2007-07-24* Reduced a significant number of compiler warnings (back down to 9 for all ↵Adam Frisby1-1/+1
projects combined, all 'never used' things)
2007-07-23*Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that ↵mingchen3-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
2007-07-19*Moved XmlConfiguration to its own projectmingchen1-0/+124
*Made it possible to load a configuration interface by DLL *Deleted the 1024 config files until they are updated