aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionInfo.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* minor: remove a couple of compiler warningsJustin Clark-Casey (justincc)2010-03-031-14/+4
|
* Merge branch 'master' into presence-refactorMelanie2010-02-221-1/+0
|\ | | | | | | This brings presence-refactor up to master again
| * Change handling of the SYSTEMIP constant to be more sane.Melanie2010-02-181-1/+0
| | | | | | | | | | | | This will now choose the first network interface IP address, or the loopback interface if no external interfaces are found. It will log the IP address used as [NETWORK]: Using x.x.x.x for SYSTEMIP.
| * Revert "change "SYSTEMIP" to "localhost" in the create region console ↵Melanie2010-02-181-4/+4
| | | | | | | | | | | | command prompt" after speaking to Dahlia This reverts commit c62a6adb2b234fcbe99e352f4bd2af0cbf683a99.
| * change "SYSTEMIP" to "localhost" in the create region console command promptdahlia2010-02-171-4/+4
| |
* | Remove all references to master avatar, replacing with estate owner whereMelanie2010-01-101-96/+0
|/ | | | | appropriate. This changes the behavior of the REST plugins and RemoteAdmin's region creation process.
* Getting rid of SimpleRegionInfo and SerializableRegionInfo per MelKunnis2009-12-121-263/+147
| | | | Signed-off-by: Melanie <melanie@t-data.com>
* Merged master into prioritizationJohn Hurliman2009-10-211-2/+3
|\
| * Fix web map retrieval for regions configured via .iniMelanie2009-10-211-2/+3
| |
* | Added a description for RegionTypeJohn Hurliman2009-10-171-1/+1
|/
* Re-rename ProductName back to it's original RegionTypeMelanie2009-10-171-16/+16
|
* Add ProductName to RegionInfo (for search)Melanie2009-10-171-1/+23
|
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* Added hg console commands to the module.Diva Canto2009-09-221-0/+1
| | | | | Added the IN connector module for link-region and corresponding handler to be used in the regions only. No service as such is needed. This will replace the current link-region machinery. Compiles but not tested.
* Moved RegionName from RegionInfo to SimpleRegionInfo.Diva Canto2009-09-221-1/+7
|
* Added grid handler and grid remote connector.Diva Canto2009-09-211-0/+62
|
* Added some help instructions to the new RegionInfo region setup process; ↵Adam Frisby2009-08-101-0/+6
| | | | mainly to point out 'yes you can input information here.' since it seems to elude some users.
* Change the default for internal IP address back to 0.0.0.0Melanie2009-08-081-1/+1
|
* minor: remove some mono compiler warningsJustin Clarke Casey2009-07-151-2/+2
|
* - adding a Persistent flag to RegionInfoDr Scofield2009-07-031-0/+3
| | | | | - adding EstateSettings.Save() to RemoteAdmin ACL code (invoked only when region is persistent)
* Enable the RemoteAdmin module to save regions as ini files rather than XMLMelanie Thielker2009-06-261-0/+68
|
* Make delete-region delete the section from an ini file. Will delete the wholeMelanie Thielker2009-06-261-0/+6
| | | | | | file if it has no sections left.
* Make create region save the new region to ini file format if the nameMelanie Thielker2009-06-251-2/+10
| | | | | | | specifies an ini file. If the ini file exists, the region will be added.
* From this version onwards, all new region files created automatically willMelanie Thielker2009-06-251-11/+115
| | | | | | | | | | be created as new style INI files. This doesn't yet affect create region, but it does affect first starts of OpenSim.exe Because master avatars are slated to be replaced by estate owners, this now allows regions to be created without any master avatar data.
* Add a comment and an example region config fileMelanie Thielker2009-06-251-1/+1
|
* Allow the reading of ini files instead of xml files when reading regionMelanie Thielker2009-06-251-44/+116
| | | | | | definitions from the file system
* Committing the meat of the user server interface and the bones of the ↵Melanie Thielker2009-06-221-0/+10
| | | | service implementation
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-011-1/+1
| | | | LICENSE.txt.
* * Attaches debug info to some DNS resolution code.Adam Frisby2009-05-251-8/+16
|
* * Bug fix: Variable m_regionSettings can be null, using RegionSettings ↵Arthur Valadares2009-05-131-1/+1
| | | | | | | instead, that starts a new RegionSettings object if private variable is null. Fixes Mantis #3634
* Thank you kindly, Patnad, for a patch that:Charles Krinke2009-05-121-0/+6
| | | | | | | | | This is to handle the changes in the v1.23 viewer of LL regarding the adult rating. With this patch a region can be changed to the adult rating from LL viewer v1.23 and above.
* Thank you kindly, BlueWall, for a patch that:Charles Krinke2009-05-021-0/+2
| | | | | | | | | Move json stats to non-published resource name Remove well-known resource name for json stats, creating dynamic uris with private keys and add a user configurable resource name for region owner usage.
* * Moved the DefaultConfig settings into already-existing ConfigSettingslbsa712009-04-171-2/+2
|
* * Some more work on refactoring configs;lbsa712009-04-171-4/+4
| | | | | | | * Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
* * Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa712009-03-121-1/+2
| | | | | | | | * Sometimes, null is a valid return value to indicate 'none found'. doh. * Sometimes, the Grid server does not send simURI - this you need to reconstruct yourself. Euw. (I believe) this solves mantis issue #3287
* * Refactored out Create() methods to ensure proper transformation between ↵lbsa712009-03-101-0/+13
| | | | | | | | RegionProfileData and RegionInfo * Created ToRegionInfo method, still not using it pending peer review. * This is a preparatory commit for a subsequent login service refactoring.
* Moved the SetupScene methods from RegionApplicationBase to OpenSimBase [Do ↵MW2009-03-021-0/+1
| | | | | | | | | we really still need RegionApplicationBase?] Added a flag (bool m_autoCreateLindenStack = true) which says if the ClientStack will be autocreated and initialised when creating regions. This helps with moving ClientStacks to Region modules. Currently this flag is hardcoded to true, as it is only for testing at the moment, so you need to change the value in the code if you want to turn off auto creating.
* Moved RegionUp to REST/LocalComms. The original functionality has been ↵diva2009-02-141-0/+69
| | | | entirely maintained, although it will have to be revisited soon, because it's buggy.
* * minor: remove some mono compiler warningsJustin Clarke Casey2009-01-131-3/+3
|
* Allow some values that are set in OpenSim.ini to be set from region configMelanie Thielker2009-01-021-2/+65
| | | | | | XML as well.
* * Implement saving of region settings in OAR filesJustin Clarke Casey2008-12-301-2/+0
| | | | | | | | * This means that you can now save terrain textures, water height, etc. * Estate settings are not supported * Older OAR files without these settings can still be loaded
* * Apply http://opensimulator.org/mantis/view.php?id=2810Justin Clarke Casey2008-12-181-2/+1
| | | | | | | * Fix set up of master avatar on a fresh OpenSim install * Turns out we had started hashing the password too many times. Thanks jonc!
* * Added IClientIM to IClientCore interfacesAdam Frisby2008-11-081-2/+1
| | | | | | * Changed SendInstantMessage, dropped fromAgentSession and imSessionID as security precaution, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide for details on porting. * Removed unused usings from Framework.*
* Allow create-region to load files from arbitrary locationsMelanie Thielker2008-09-301-0/+5
|
* adds support to delete a region completely and offers thatDr Scofield2008-09-181-0/+3
| | | | | | | | | | functionality via the console command "delete-region" and also via RemoteAdminPlugin. minor typo fix.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-24/+24
| | | | | | | * 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.
* Fix compiler warning due to incomplete refactoring in r5901.Jeff Ames2008-08-181-4/+0
|
* Formatting cleanup.Jeff Ames2008-08-181-11/+10
|
* * Drop cached inventory from the local region when a user crosses out into a ↵Justin Clarke Casey2008-08-011-20/+22
| | | | | | | | | | remote region * May resolves inventory problems that occur when the user moves between two regions` * e.g. if the user moves to a second region, adds an inventory item, moves back to the original region then tries to manipulate that item * Not yet implemented for teleport
* Patch #9151Melanie Thielker2008-07-181-39/+2
| | | | | | Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.