aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-29Ignore duplicate llHTTPResponse calls to the same request. Prevents response ↵Tom1-4/+9
corruption. Only the first llHTTPResponse call is obeyed, akin to SL.
2011-01-28Significantly increase the total number of URL's available. In second life, ↵Tom1-1/+1
the limit is 15,000 URL's (one per prim), so i'd hope we can manage 1k.
2011-01-28Fix a discrepancy vs. SL with parsing x-query-stringTom1-1/+8
2011-01-28Make llRequestAgentData shout an error instead of crashing the script when ↵Tom1-78/+86
an invalid UUID is passed to it.
2011-01-28Make the new style stuff compatible with the older revisionMelanie1-1/+14
2011-01-28Correct chat source location for Av seated on daughter prim.Kitto Flora1-1/+1
2011-01-28Fix up QueryAccess to also check parcelsMelanie7-16/+31
2011-01-28Change the way ban lines are handled. Remove a lot of useless stuff designedMelanie1-53/+10
to physically move the avatar and instead just re-set the position. Ban lines now work fully.
2011-01-28Fix bumping into sim borders and check estate bans for walking crossingsMelanie4-32/+112
2011-01-28Change the way ban lines workMelanie2-5/+13
2011-01-28Thank you, Goetz, for a patch to fix prim count display in cut regions.Melanie5-10/+28
2011-01-28Fix up QueryAccess to also check parcelsMelanie7-19/+46
2011-01-28Comment a very spammy debug message that was being output directly to console.Melanie1-1/+1
My last fox that makes bumping into sim borders/bans work makes this spam endlessly.
2011-01-28Fix bumping into sim borders and check estate bans for walking crossingsMelanie4-32/+112
2011-01-27Refactor: Break out LoadObjects() and LoadParcels() from a longer methodJustin Clark-Casey (justincc)1-28/+44
2011-01-27Put confirmation on "land clear" command to avoid nasty accidentsJustin Clark-Casey (justincc)1-2/+14
2011-01-27When an oar is loaded, do not create a default parcel before loading the ↵Justin Clark-Casey (justincc)6-15/+25
parcels from the OAR. The region spanning parcel shouldn't exist in this situation. If it does, when the land data is loaded it is repersisted with a local ID which comes after the ones loaded via the oar, which obliterates the oar loaded one. Resaving the data we just loaded from the database is somewhat odd in itself (though this makes sense from the way that OAR loading was already using the same event).
2011-01-27Show local IDs in "land show" output.Justin Clark-Casey (justincc)2-5/+11
Also properly insert region name in "land clear" command
2011-01-27Add "land clear" commandJustin Clark-Casey (justincc)1-3/+13
This clears all parcels from the currently selected region and replaces them with the single region spanning default parcel owned by the estate owner
2011-01-27Fix OAR parcel loading so that old parcels are replaced by the new instead ↵Justin Clark-Casey (justincc)6-0/+44
of merged. The --merge switch will still merge the old and new land parcelling.
2011-01-27remove unused CreateBaseLand()Justin Clark-Casey (justincc)1-9/+0
2011-01-27Make it workMelanie1-4/+6
2011-01-27Make the estate setting "Allow direct teleport" override the constraintMelanie1-0/+3
of local tepeports to landing points like it is meant to
2011-01-27Let gods TP in wherever they like while in god modeMelanie1-0/+1
2011-01-27Implement "Cannot teleport closer to destination" messageMelanie1-1/+5
2011-01-27Make landing points work on local teleports. Constrain owners and gods toMelanie2-5/+27
landing points when coming from off sim (matches agni) to prevent landing in floors or other prims.
2011-01-27Add a TeleportFlags member to SP so we can tell how we got there.Melanie2-0/+15
2011-01-27Also set Godlike flag. Might be usefulMelanie1-0/+2
2011-01-27Add TeleportFlags.ViaRegionID to the flags sent on login when the regionMelanie1-8/+13
was entered by hand to determine whether or not to honor the landing point
2011-01-27Change the way landing points are honoredMelanie1-6/+13
2011-01-27Make it workMelanie1-4/+6
2011-01-27Fix build breakMelanie1-0/+1
2011-01-27Add a TeleportFlags member to SP so we can tell how we got there.Melanie2-0/+14
2011-01-27Also set Godlike flag. Might be usefulMelanie1-0/+2
2011-01-27Add TeleportFlags.ViaRegionID to the flags sent on login when the regionMelanie1-8/+13
was entered by hand to determine whether or not to honor the landing point
2011-01-27Clear user account cache before checking flags on login. This will make AVMelanie1-0/+3
and other bannable flags work in this case.
2011-01-27Add an interface for a region's user account cacheMelanie4-1/+16
2011-01-27Fix merge artifactsMelanie1-3/+3
2011-01-27Make bans work for teleport. Now teleport will complete block if the userMelanie4-57/+56
is not allowed on the estate. If the user is allowed on no parcel, the teleport will also be blocked. If the user is allowed on a parcel, but not the desired one, the user will be shifted to the closest allowed location.
2011-01-26Mostly revert the last commit with the aim of searching for a better solutionTom7-35/+5
2011-01-26Add a "useCached" parameter to GetUserAccount. Add a function to Scene to ↵Tom8-32/+55
get the user flags. It has to be here due to access restrictions :/
2011-01-26Add userFlags check to isBanned. This checks bans against DenyAnonymous and ↵Tom5-10/+78
DenyMinors. Note that the ban doesn't actually work yet due to some stuff mel's working on .
2011-01-26Remove the RestorePresences functions (which don't seem to be doingMic Bowman2-69/+12
anything) and clean up the code in AddNewClient (so Appearance only gets assigned once, not three times).
2011-01-26Add some comments on ILandObject.StartPoint and EndPointJustin Clark-Casey (justincc)1-0/+10
2011-01-26Implement command "land show". This shows all the parcels on the currently ↵Justin Clark-Casey (justincc)5-19/+126
selected region/s This is useful for diagnostics. The command is "land show" rather than "show land" because it's implemented as a module specific subcommand.
2011-01-26Revert my previous SHA1 commit in favour of a better implementationTom2-6/+10
2011-01-26Provide an SL compatible llMD5String function across all platformsTom2-5/+11
2011-01-26Make llSHA1Hash SL compatible when using characters like the euro symbol (€)Tom1-1/+3
2011-01-25Removed a few more spurious appearance saves. When an avatarMic Bowman3-18/+31
enters a region the attachments module tries to update the appearance with attachments that are already part of the appearance. Just added a check to only save if the attachments weren't there before.
2011-01-25Reproduce a corner case behavior for llListReplaceListMelanie1-6/+9