aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-08-09When an NPC is created, stop telling neighbouring regions to expect a child ↵Justin Clark-Casey (justincc)1-1/+5
agent
2011-08-06rename TestHelper => TestHelpers for consistencyJustin Clark-Casey (justincc)1-2/+2
2011-08-06rename test SceneSetupHelpers -> SceneHelpers for consistencyJustin Clark-Casey (justincc)1-5/+5
2011-07-23For default everyone permissions on library items, make notecards and ↵Justin Clark-Casey (justincc)1-8/+4
scripts non-modifiable (but still copyable, etc). Users should not be given the impression that they can modify these items. This still does not solve the issue where library items cannot be dragged into prims or user inventory any time after they are initially seen. Curiously, manually copying and pasting still appears to work. On the surface, this seems to have something to do with library item caching on the client, since deleting the cache allows drag to work again once Not sure what the exact problem is.
2011-07-23Remove manually permissions settings on all current library items so that ↵Justin Clark-Casey (justincc)2-1/+11
they use the defaults instead. Some items had completely wrong permissions - this is easier than correcting them all. The ability to set permissions in xml is retained since there are use cases for this (e.g. to create no-mod library scripts)
2011-07-23Revert "Don't load current/next/everyone/base permissions from the library ↵Justin Clark-Casey (justincc)2-11/+1
item xml files - always use PermissionMask.All instead (which was the existing default)." There actually are uses for this. I will correct the perms instead since some entries appear to be wrong. This reverts commit 667b54f5a2a04fa5a2859397868d270eab3913f1.
2011-07-23Don't load current/next/everyone/base permissions from the library item xml ↵Justin Clark-Casey (justincc)2-1/+11
files - always use PermissionMask.All instead (which was the existing default). Library items always need the same permissions, so it doesn't make sense to load them from the xml files. This just opens the door to permissions mistakes.
2011-07-16minor: remove mono compiler warningsJustin Clark-Casey (justincc)1-2/+5
2011-07-12Add a warning to URI config in GridCommon.ini.example not to add a slash to ↵Justin Clark-Casey (justincc)1-1/+0
the end. Tidy up GridCommon.ini.example
2011-07-08fix bug where opening a library script would failJustin Clark-Casey (justincc)1-2/+2
2011-07-08refactor: rename bool returning GetAgentInventoryItem() to ↵Justin Clark-Casey (justincc)1-1/+1
CanGetAgentInventoryItem() to improve code readability
2011-07-07Ensure that the max transfer distance is initialized correctly.Mic Bowman1-1/+7
2011-06-29Hack around with the NPC module to get osNpcCreate() partially working again.Justin Clark-Casey (justincc)1-1/+2
This now creates an avatar but appearance is always cloudy. Move doesn't work. Really, creating an NPC should only involve a ScenePresence rather than doing anything with IClientAPI, since an NPC has no viewer to communicate with!
2011-06-24Tell hypergridders when their teleports fail because of the 4096 limit ↵Justin Clark-Casey (justincc)2-11/+47
rather than just saying "destination not found" Instead of performing the 4096 check when the region is linked (and subsequently removing the link), leave the link in place and perform the check in the entity transfer module This allows us to explicitly tell the hypergridder why the teleport failed (region out of range). It also allows people on regions that are within range (on a large source grid) to teleport. The Check4096 config parameter in the [GridService] section is replaced by a max_distance paramter in a new [EntityTransfer] section in OpenSimDefaults.ini Since the parameter is in OpenSimDefaults.ini no action needs to be taken unless you want to increase this limit. It could also be decreased. The check is being made in the base entity transfer module, since I believe the viewer problem occurs both on extremely large grids and while hypergridding.
2011-06-103rd way of reseting the HG Map. This time, don't use the grid service; ↵Diva Canto1-25/+0
instead keep track of which map blocks each client has seen in the region, and reset exactly those when the client closes.
2011-06-10New method for resetting the map on HG: do it only once upon changing grids, ↵Diva Canto1-0/+26
and reset only exactly the map blocks that had regions in them. WARNING: this fetches all the regions from the Grid service, so there is a chance that this is a really bad idea in large grids. Pushing it for testing.
2011-06-09Change the name of the newest command to "show names" so that it doesn't ↵Diva Canto1-2/+2
conflict with the existing "show users"
2011-06-08Fixed "Unknown User" listed as creator/owner on prims created with the Build ↵Diva Canto1-8/+66
button by foreign visitors. Added command to the UserManagementModule to list all the known bindings between user UUIDs and their names: show user-names.
2011-06-05Narrow down the exception catching to exactly the exception of interest. ↵Diva Canto1-1/+1
This may decrease the time of processing prims with broken user data.
2011-06-03Added prefix HG to the name of the landmark item in inventory, as a soft ↵Diva Canto2-4/+11
reminder that the landmark belongs to a place in another grid. People can change the name, but that's their decision.
2011-06-03oopsDiva Canto1-1/+1
2011-06-03HG Landmarks now working.Diva Canto3-2/+82
2011-06-03HG Landmarks being created. WARNING: new config var under ↵Diva Canto2-2/+20
[HGInventoryAccessModule], Gatekeeper.
2011-06-03Moved CreateNewInventoryItem to the InventoryAccessModule in preparation for ↵Diva Canto1-1/+78
supporting HG landmarks.
2011-05-27HG lures working! Friends can offer friends HG teleports via the profile. ↵Diva Canto1-1/+1
WARNING: additional configuration for HG inis -- see *Common.ini.example
2011-05-26Commented a few extra debug messages.Diva Canto1-2/+2
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto2-7/+43
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-05-21Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)1-1/+0
OpenSim.Tests.Common instead
2011-05-21rename UserProfileTestUtils to UserAccountHelpers to be consistent with ↵Justin Clark-Casey (justincc)1-1/+1
other test helper names
2011-05-19HG Friends working to some extent: friendships offered and accepted ↵Diva Canto1-0/+2
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
2011-05-08Remove a spammy debug I left in. Disable TP cancel button at the pointMelanie1-1/+2
of no return.
2011-05-08Enable compressed (gzip) fatpack transfers.Melanie1-0/+1
2011-05-08Mantis #5472Diva Canto1-6/+15
2011-05-06Change command help text for "show capabilities" to "show caps", as this is ↵Justin Clark-Casey (justincc)1-2/+2
the actual command that has to be typed on the console. Thanks to makopoppo for the patch - http://opensimulator.org/mantis/view.php?id=5467
2011-05-04Put the previous state back in the attachments in case the agent transfer fails.Diva Canto1-0/+4
2011-05-04Fixes mantis #5461.Diva Canto1-1/+2
2011-05-02Changed the defaults, so that it behaves exactly is it has been behaving (no ↵Diva Canto1-0/+2
WebFetch cap by default).
2011-05-01Broke down Caps.cs into a generic Caps object that simply ↵Diva Canto1-30/+20
registers/unregisters capabilities and a specific bunch of capability implementations in Linden space called BunchOfCaps. Renamed a few methods that were misnomers. Compiles but doesn't work.
2011-05-01Move CapabilitiesModule back to CoreModules. This one belongs there.Diva Canto1-0/+257
2011-04-30First stab at cleaning up Caps. Compiles. Untested.Diva Canto2-1118/+0
2011-04-29Remove the scripts of the attachments in the departing region and recreate ↵Diva Canto1-2/+10
them if fail.
2011-04-28Fatpack message on agent transfers: 1 message only (UpdateAgent) containing ↵Diva Canto2-29/+37
the agent and all attachments. Preserves backwards compatibility -- older sims get passed attachments one by one. Meaning that I finally introduced versioning in the simulation service.
2011-04-18refactor: split out the code which actually copies a particular bundle to ↵Justin Clark-Casey (justincc)1-106/+115
inventory
2011-04-18refactor: rename DeleteToInventory() to CopyToInventory()Justin Clark-Casey (justincc)1-1/+1
DeleteToInventory() is misleading - it is the caller that decides whether to delete or not
2011-04-18Fix bug where objects were being coalesced in the wrong positions.Justin Clark-Casey (justincc)1-2/+2
This addresses http://opensimulator.org/mantis/view.php?id=5441 The bug was due to a pre-existing mistake in creating the inventory stored position
2011-04-18Provide a configuration setting to control whether multiple taken objects ↵Justin Clark-Casey (justincc)2-15/+47
are coalesced to inventory This is the CoalesceMultipleObjectsToInventory setting in [Inventory] in OpenSimDefaults.ini Default is true.
2011-04-15Fixes mantis #5431 -- coalesced objects in HG-enabled regions. Needs more ↵Diva Canto2-25/+12
testing to make sure HG inventory isn't broken by this (it shouldn't).
2011-04-15refactor: separate out code that adds permissionsJustin Clark-Casey (justincc)1-42/+59
2011-04-15minor: remove a small amount of code duplicationJustin Clark-Casey (justincc)1-4/+3
2011-04-15refactor: split out some rez code into a separate CreateItemForObject() methodJustin Clark-Casey (justincc)1-143/+159