aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionLoader (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-04-21From: Dr Scofield <hud@zurich.ibm.com>Sean Dague1-1/+1
the attached patch set is centered around RemoteAdminPlugin and focuses mainly on making it more robust (i.e. more parameter checking and better error reporting) but also we've re-implemented the LoadTerrain stuff that got disabled during the terrain code reworking: * missing PostInitialize() calls on region modules that were loaded for regions created via RemoteAdmin's CreateRegion XmlRpc call * re-implements RemoteAdmin's LoadTerrain XmlRpc call (probably lost during the TerrainModule rework) * adds lots more parameter checking and error reporting to RemoteAdmin * adds a read-only property to RegionApplicationBase so that we can access the CommsManager * adds Exceptions to TerrainModule so that we get better error case feedback (and can report more meaningful errors in turn) * adds a CheckForTerrainUpdate() call to TerrainModule.LoadFromFile() to make terrain changes effective * adds TryGetCurrentScene(LLUUID) to SceneManager so that we can retrieve Scenes not only by name but also by LLUUID cheers, dr scofield
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby2-6/+9
(this took a while to run).
2008-04-11* Added a "regionload_regionsdir" option to OpenSim.ini which determines ↵Adam Frisby1-0/+13
where Region.XML files are stored. If not set, it will default to the usual location.
2008-03-18Formatting cleanup.Jeff Ames2-54/+54
2008-02-05Converted logging to use log4net.Jeff Ames1-8/+9
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-3/+3
* 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 ↵mingchen2-3/+3
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 usingslbsa712-24/+21
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2-2/+2
notice of doom
2007-12-07added one more command to the console help.Jeff Ames1-3/+1
2007-11-04* Small touchup of console messagesAdam Frisby1-5/+5
2007-11-04Deleted Regionloader .csproj files. MW2-224/+0
2007-11-04normalized line endingsJeff Ames2-170/+170
2007-11-03*Moved region loading into its own interface IRegionLoadermingchen4-0/+394
*Added ability to load regioninfo remotely from a webserver from a single file. See share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt for more info and an example file.