aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update svn properties, formatting cleanup.Jeff Ames2008-09-231-7/+7
|
* Update the permissions system to handle scripts and notecards the wayMelanie Thielker2008-09-231-9/+23
| | | | | | it was meant to. No functional changes, just better code
* Remove the ugly-as-sin "interop" hack script perms fudging inMelanie Thielker2008-09-221-18/+0
| | | | | | object inventory
* Create CanEditObjectInventory to preserve the abilityMelanie Thielker2008-09-222-26/+29
| | | | | | | to have different permissions on inventory and object edits. This may be needed by the viewer on public grids
* cleanups in inventory REST code. also, disables digest authenticationsDr Scofield2008-09-221-4/+26
| | | | | | | | | | | for inventory REST calls for the time being, as firefox, curl, and also python's urllib2 cannot authenticate using digest auth. fix permission checking for prim inventory to be the same as for normal edit ops.
* Change the scirpt engine loading mechanism. Script engines are nowMelanie Thielker2008-09-216-20/+32
| | | | | | | | | ordinary region modules and are able to coexist in one instance. See http://opensimulator.org/wiki/ScriptEngines for details. There were changes to OpenSim.ini.example, please note DefaultScriptEngine. Also see the User docs and FAQ on the Wiki. Default is DotNetEngine.
* Fix another reason for #2218Homer Horwitz2008-09-211-3/+8
|
* * Fix http://opensimulator.org/mantis/view.php?id=2189Justin Clarke Casey2008-09-211-1/+12
| | | | | | * Allow a grid mode region simulator to properly shutdown even if the grid service is offline
* Don't attach attachements to child agents. This coincidentially fixes a raceHomer Horwitz2008-09-211-0/+3
| | | | | | condition that was the reason for mantis #2218.
* The viewer only stores a screenshot on "Set home to here" if the alert thatHomer Horwitz2008-09-211-1/+2
| | | | | | follows show the text "Home position set.". Changed the message accordingly.
* Completely revert the notecard uploading changes I made, since theyMelanie Thielker2008-09-211-3/+4
| | | | | | appear to break script saves in prims for some.
* Partially implement notecard saves in task inventory. Still makes theMelanie Thielker2008-09-201-3/+3
| | | | | | notecard go read-only, but changes are saved.
* * Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey2008-09-191-3/+3
| | | | | | | | | startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon
* * Added null exception handler where we couldn't locate a user data record ↵Teravus Ovares2008-09-191-1/+8
| | | | | | | | in the cache for the user * More OGP tweaks to make it play nice in an error condition. * Still Experimental.
* * Updates the SQLite region database to support the same properties that the ↵Teravus Ovares2008-09-181-1/+11
| | | | | | | MySQL version does for the table, prims. * If this causes any unit tests to fail, the tests need to be updated.
* adds support to delete a region completely and offers thatDr Scofield2008-09-181-4/+3
| | | | | | | | | | functionality via the console command "delete-region" and also via RemoteAdminPlugin. minor typo fix.
* Kan-Ed fix series.Melanie Thielker2008-09-181-0/+8
| | | | | | | | Correct a condition where a prim is linked before it has been persisted for the first time and is then persisted through it's former SOG with a bad offset position.
* Mantis #2213Melanie Thielker2008-09-181-1/+1
| | | | | | | Thank you, nlin, for a patch that prevents physical prims from being created twice when rezzed from a script.
* Kan-Ed fix series. Fix llTakeControls to behave as documented.Melanie Thielker2008-09-173-4/+7
| | | | | | | | | XEngine fixes: prevent queue overruns, prevent spamming when no key is down. Release controls when conflicting permissions are requested or permissions are refused later. Release when prim or script are deleted. Fixes Scene script instance deletion semantics.
* * minor: oops, remove a warning I just inserted myself - naughty boyJustin Clarke Casey2008-09-161-1/+1
|
* * If an individual scene object throws an exception while storing, deal with ↵Justin Clarke Casey2008-09-162-23/+33
| | | | | | | | this locally rather than letting it propogate up the stack * This will allow other scene objects to persist and stop the exception taking down the whole region server
* * refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey2008-09-151-2/+2
| | | | | | | | UpdateUserProfile * the methods were identical except that the Properties one did a check for the user profile beforehand. However, every caller was doing this already anyway.
* Thank you kindly, CMickeyb for a patch that:Charles Krinke2008-09-141-3/+8
| | | | | | | | | Moved intialization of appearance from the SendInitialData event handler into CompleteMovement handler. That ensures that m_appearance is initialized before the inventory is retrieved (so there is a place to check on attachments).
* Formatting cleanup.Jeff Ames2008-09-131-9/+16
|
* Update avatar-position while avatar is sitting and the prim is moved (#2159).Homer Horwitz2008-09-132-0/+16
| | | | | | | I decided to make ParentPosition a public property in ScenePresence, because that's exactly what happens (the parent position changes on prim move).
* Changed "show users" command to display only root agents, "show users full" toHomer Horwitz2008-09-121-3/+3
| | | | | | display root and child agents (mantis #2171).
* * Patch http://opensimulator.org/mantis/view.php?id=2172Justin Clarke Casey2008-09-122-13/+26
| | | | | | | | | * Patch attached that adds the check for uninitialized appearance when inventory items are received and processed. Also attempts to ensure that appearance is initialized even when the profile cache has not been built. * This will not fix the race condition, but should at least remove the unhandled exception that is being reported in Mantis 0002126. * Thanks cmickeyb
* * Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey2008-09-122-0/+17
| | | | | | | * Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
* * Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey2008-09-122-3/+14
| | | | | | | | | * This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
* * Move the ResetChildPrimPhysics() calls to after physics have been applied ↵Justin Clarke Casey2008-09-121-5/+5
| | | | | | | | | | to the parts rather than after each individual part * From looking at the code there shouldn't be any difference, and this appears to speed up prim loading and make a certain failure case (where prims seem to be going out of bounds on startup) less of a problem. * However, if I've been bad please revert this patch
* * minor: various doc and tidy up, logging increase to make it clearer which ↵Justin Clarke Casey2008-09-123-37/+80
| | | | prim is failing a border crossing
* Revert the two debug log statements from r6212 as described in Mantis 2126.Charles Krinke2008-09-101-14/+0
|
* Thank you kindly, CMickeyB for a patch that adds aCharles Krinke2008-09-101-0/+14
| | | | | | | | couple of debug statements for null items while we diagnose our interrmittent inventory issues. I looked at this and it seems helpful to others. We can back it later if desired.
* From: alan_webb@us.ibm.comSean Dague2008-09-091-1/+4
| | | | | | | Make CHANGED constants consistent with LSL, and consistent across the code base
* Preserve link numbers when items are taken into inventory and re-rezzed.Melanie Thielker2008-09-091-1/+6
|
* Update svn properties, formatting cleanup.Jeff Ames2008-09-094-10/+10
|
* Fix an inventory naming regressionMelanie Thielker2008-09-081-5/+2
|
* Remove casting nastiness in LSL_ApiMelanie Thielker2008-09-081-0/+4
|
* Correct state handling and state event masks. Prims will now showMelanie Thielker2008-09-081-1/+5
| | | | | | touch, pay, etc script states correctly.
* Fix component order on a quaternion for the sit target. This causedMelanie Thielker2008-09-081-1/+1
| | | | | | sit positions to be upside down until the script was reset.
* fix: warnings from libomvDr Scofield2008-09-082-0/+8
|
* Implement proper persistence of the following prim properties:Melanie Thielker2008-09-082-3/+14
| | | | | | | | | Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite.
* * Fixes linking using the new types.Teravus Ovares2008-09-071-1/+1
| | | | | quaternions are not communicative!
* * minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey2008-09-071-6/+2
| | | | | | | | process easier * documentation
* * This changes gridcomms types back to our home grown wholy controlled types. Teravus Ovares2008-09-061-5/+5
| | | | | | * These are different types then the OMV types because changing them causes just about all grid comms to break. If these were the libOMV types, then libOMV couldn't change them ever again after that.. or we'd have a breakage whenever they changed them. * This might introduce a map issue. Still checking it out.
* * Addresses the same issue as last commit on SceneObjectGroup border crossingsTeravus Ovares2008-09-061-0/+8
|
* * Fixes a few type changes that caused the XML Format to break.Teravus Ovares2008-09-062-1/+7
| | | | | | * Testers, please try rezzing your inventory on this revision and sending me feedback in mantis. * Users, it's not time to update yet. The dust still hasn't settled.
* Mantis #2133Melanie Thielker2008-09-061-1/+1
| | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-0624-1385/+1254
| | | | | | | * 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.
* * refactor: Make SOG itself responsible for checking whether it's already ↵Justin Clarke Casey2008-09-062-12/+10
| | | | been deleted on an update request from the regular sweep