aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionLoader (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2-2/+2
LICENSE.txt.
2009-01-02Allow some values that are set in OpenSim.ini to be set from region configMelanie Thielker2-7/+7
XML as well.
2008-09-06Mantis #2133Melanie Thielker1-3/+3
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 Ovares1-3/+3
* 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-09-02fix: PostInitialise() not being called on script engines (nasty one that)Dr Scofield1-1/+1
cleanup: warnings, readability
2008-08-22- fixes a bug in RemoteAdminPlugin where CreateRegion would not payDr Scofield1-3/+3
attention to regionload_regionsdir from OpenSim.ini - fixes a type on RegionLoaderFileSystem
2008-06-26As per the suggestion on the mailing list, added support for a OpenSim.xml ↵MW2-6/+6
config file, instead of a ini file. INI files still work the same as they did before, just now if a ini file isn't found, it looks for a OpenSim.xml file (of course in xml format) and if found uses that. Includes a OpenSim.Example.xml for reference (the default settings saved as a xml file).
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.