aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World/Land (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2008-08-182-61/+28
|
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-171-11/+15
|
* Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-161-1/+119
| | | | | | | | | | | | | | | | | | | | | | | Places touched: - Added two events for in-packets to LLCLientView: RegionHandleRequest and ParcelInfoRequest - Added sending of two out-packets to LLCLientView: RegionIDAndHandleReply and ParcelInfoReply. - Scene handles the RegionHandleRequest, LandManagementModule the ParcelInfoRequest - Added inter-region request for LandData by RegionHandle and local position. This was implemented as XML-RPC request. The returned LandData isn't complete, it only contains the data necessary for answering the ParcelInfoRequest - Added new CAPS (0009) for RemoteParcelRequest and some methods for LandData handling to LandManagementModule - Added methods for fake parcelID creation and parsing to Util - Fixed missing implementation of interface methods. - Added new file: OpenSim/Framework/Communications/Capabilities/LLSDRemoteParcelResponse.cs NOTE: This is part of the patch, too. Due to the many places touched, I would consider this patch as experimental.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-161-3/+3
|
* Fix up master avatar handling for estate owners. Introduces a newMelanie Thielker2008-08-151-3/+12
| | | | | | | | | hierarchical rights structure. MasterAvatar: Owner of the region server (may be null), net gods (users with GodLevel 200), Estate owner (from database). Look at Opensim.ini.example to enable net gods. Estate owner will default to master avatar.
* Minor formatting cleanup.Jeff Ames2008-08-071-2/+2
|
* Addresses Mantis #1886Melanie Thielker2008-08-041-4/+7
| | | | | | | | Forces the landmark and menu flags to be always set, like in previous releases. This will cause the parcel based restriction on setting landmarks to have no effect, until it is implemented properly
* refactored LandData to use properties, and cleaned up the naming onSean Dague2008-07-233-108/+108
| | | | | | | the properties a bit to be more consistant with other objects (having things like .Name .Description, etc).
* Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2008-07-231-3/+3
|
* Patch #9151Melanie Thielker2008-07-181-1/+5
| | | | | | 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.
* Patch #9149Melanie Thielker2008-07-141-1/+1
| | | | | | Make all of the toggles go live. Utilizes the new database table for almost everything. Remove lots of now unneeded settings from the EstateSettings class
* Patch #9147Melanie Thielker2008-07-141-3/+11
| | | | | | | Patch #4 of the region settings series. Partial functionality of the new storage system. More patches to follow.
* * Changed casing of some archaic methods to conform with code standardslbsa712008-07-082-6/+6
|
* *Parcel Claim date is no longer Epoch (Jan 1, 1970). Now shows the actual ↵mingchen2008-07-031-1/+2
| | | | creation/reclaim/sale date.
* Mantis#1597. Thank you, Melanie for a patch that:Charles Krinke2008-06-261-1/+17
| | | | | | Adds handlers for the reclaim land functionality, plus all needed permissions checks.
* *Parcel Prim Count Maximums moved to their own functions so modules can ↵mingchen2008-06-113-3/+68
| | | | override the default method of calculating how many prims a parcel can have.
* Potential Fix #1 for 0001392: Shift+Drag now causes an unhandled 'Object ↵mingchen2008-06-071-3/+9
| | | | reference not set to an instance of object' exception
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-251-3/+3
|
* * Fixes endless loop in the Land Module when selecting any object.Teravus Ovares2008-05-242-0/+6
| | | | | * Fixes returning objects when the object owner hasn't been in the simulator since the simulator started up last.
* This enables return from the parcel object owner display.Teravus Ovares2008-05-243-24/+99
| | | | | There's some oddness with the parcel counts, but if you can get past the oddness, you can return objects under an owner that you have permission to return.
* * Implements selected object return.Teravus Ovares2008-05-241-25/+45
| | | | | * If user is in the same sim with you, they'll get an inventory update, if not.... oh well, they'll have to clear their cache potentially before they'll see it.
* *Refactor of the LandManagementModule that allows OpenSim to run without itmingchen2008-05-232-868/+965
|
* Formatting cleanup.Jeff Ames2008-05-162-5/+5
|
* Formatting cleanup.Jeff Ames2008-05-141-1/+1
|
* *Complete redo of the permissions modulemingchen2008-05-133-38/+65
| | | | | | *Removed hardcoded permissions checks *Added permissions checks where needed
* *Land/Parcel upates are now correct with a significant movement by the Clientmingchen2008-05-092-10/+1
| | | | | *Moved OnSignificantClientMovement to where it is supposed to be - SceneEvents and not ScenePresence
* *LLClientView is now pushed the EstateSettings instead of pulling it from ↵mingchen2008-05-062-8/+3
| | | | | | | the scene...more to standards *LandChannel no longer requires libsecondlife.Packets (it should have never needed it in the first place)
* * Cleaning up code, making it conform to OpenSim standards.Adam Frisby2008-05-063-187/+159
|
* *Standardized the Land module by removing all references to ↵mingchen2008-05-052-227/+38
| | | | libsecondlife.packets
* *Fixed up EstateManagementModule to the module standard - no more packets ↵mingchen2008-05-041-0/+15
| | | | | | | allowed! *Started cleaning up the land module
* * For your fragging desire, damage enabled land works, but watch out!, life ↵Teravus Ovares2008-05-031-0/+5
| | | | does not regenerate until you're dead!
* * Rolled back a few changes.Adam Frisby2008-05-013-33/+33
|
* * Spring cleaning on Region.Environment. Adam Frisby2008-05-013-33/+33
| | | | | | | * Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
* Update svn properties. Minor formatting cleanup.Jeff Ames2008-05-013-2004/+2004
|
* * Cruft removal step #1. Cleaning Modules directory.Adam Frisby2008-04-303-316/+286
|
* * Commiting a bunch of missed files.Adam Frisby2008-04-303-0/+2037